@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #f6c445;
  --primary-dark: #d69e11;
  --dark: #0f1720;
  --dark-soft: #18222e;
  --text: #243040;
  --muted: #64748b;
  --light: #f8fafc;
  --white: #ffffff;
  --border: rgba(15, 23, 32, 0.08);
  --shadow: 0 18px 45px rgba(15, 23, 32, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1200px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 720px;
}

.section-title span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-dark);
}

.section-title h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--dark);
}

.section-title p {
  color: var(--muted);
  font-size: 1rem;
}

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  font-size: 0.92rem;
}

.topbar-inner,
.navbar-inner,
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-info,
.topbar-links,
.nav-links,
.contact-list,
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: block;
}

.topbar a:hover,
.nav-links a:hover,
.footer-links a:hover,
.social-links a:hover {
  color: var(--primary);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.brand-logo-holder {
  width: 150px;
  max-width: 100%;
  height: 72px;
  display: block;
  overflow: hidden;
}

.brand-logo,
.brand-logo-holder img {
  width: 100%;
  height: 100%;
  max-height: 72px;
  object-fit: contain;
}

.brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #ffd86f);
  color: var(--dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow);
}

.brand-text strong {
  display: block;
  font-size: 1.2rem;
  color: var(--dark);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--white);
  border: 0;
  border-radius: 16px;
  width: 54px;
  height: 54px;
  cursor: pointer;
  box-shadow: var(--shadow);
  font-size: 1.2rem;
}

.btn,
.btn-outline,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(246, 196, 69, 0.35);
}

.btn:hover {
  background: #ffd159;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-light {
  border-color: var(--border);
  color: var(--dark);
  background: var(--white);
}

.btn-light:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0c141d 0%, #172535 55%, #1c2f45 100%);
  color: var(--white);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(246, 196, 69, 0.12);
  filter: blur(20px);
}

.hero::before {
  width: 320px;
  height: 320px;
  top: -110px;
  right: -70px;
}

.hero::after {
  width: 260px;
  height: 260px;
  bottom: -90px;
  left: -60px;
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 42px;
  padding: 60px 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 22px;
  font-size: 0.92rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  margin-bottom: 28px;
}

.hero-actions,
.hero-metrics,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-metrics {
  margin-top: 34px;
}

.metric-card,
.info-card,
.service-card,
.feature-card,
.review-card,
.contact-card,
.blog-card,
.page-card,
.fleet-card,
.pricing-card,
.stats-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.metric-card {
  min-width: 170px;
  padding: 18px 20px;
  color: var(--dark);
}

.metric-card strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.hero-slider {
  position: relative;
  z-index: 2;
}

.slider-shell {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.24);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 14, 0.12) 0%, rgba(7, 10, 14, 0.72) 100%);
}

.slide-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(10, 16, 24, 0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
}

.slide-content h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.slider-controls {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.slider-dots,
.slider-buttons {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.slider-dot,
.slider-button {
  border: 0;
  cursor: pointer;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.slider-dot.active {
  width: 30px;
  border-radius: 999px;
  background: var(--primary);
}

.slider-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.service-card,
.feature-card,
.review-card,
.contact-card,
.blog-card,
.page-card,
.fleet-card,
.pricing-card,
.stats-card {
  padding: 26px;
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(246, 196, 69, 0.18), rgba(246, 196, 69, 0.34));
  color: var(--dark);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.info-card h3,
.service-card h3,
.feature-card h3,
.review-card h3,
.blog-card h3,
.page-card h3,
.fleet-card h3,
.pricing-card h3,
.contact-card h3 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.info-card p,
.service-card p,
.feature-card p,
.review-card p,
.blog-card p,
.page-card p,
.contact-card p,
.fleet-card p,
.pricing-card p {
  color: var(--muted);
}

.dark-section {
  background: var(--dark);
  color: var(--white);
}

.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .service-card h3,
.dark-section .service-card p,
.dark-section .feature-card h3,
.dark-section .feature-card p,
.dark-section .pricing-card h3,
.dark-section .pricing-card p,
.dark-section .page-card h3,
.dark-section .page-card p {
  color: var(--white);
}

.dark-section .service-card,
.dark-section .feature-card,
.dark-section .pricing-card,
.dark-section .page-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: 28px;
  min-height: 520px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: var(--white);
  color: var(--dark);
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
}

.check-list li::before {
  content: '✓';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(246, 196, 69, 0.25);
  color: var(--dark);
  flex-shrink: 0;
  font-weight: 700;
}

.stats-strip {
  margin-top: -54px;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.stats-card {
  padding: 28px;
}

.stats-card strong {
  font-size: 2rem;
  display: block;
  color: var(--dark);
}

.stats-card span {
  color: var(--muted);
}

.image-card {
  overflow: hidden;
  border-radius: 26px;
  min-height: 270px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card {
  position: relative;
}

.review-card .stars {
  color: #f59e0b;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.review-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.cta-banner {
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), #ffd86f);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.cta-banner h3 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.contact-section {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  background: var(--white);
  color: var(--text);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 4px rgba(246, 196, 69, 0.18);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.map-frame {
  width: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 26px;
}

.page-hero {
  padding: 88px 0 48px;
  background: linear-gradient(135deg, #101923, #182736);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.76);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid img {
  border-radius: 22px;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.pricing-card .price {
  display: block;
  margin: 18px 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(246, 196, 69, 0.17), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(59, 130, 246, 0.12), transparent 30%),
    linear-gradient(135deg, #070c12 0%, #0f1720 54%, #101b28 100%);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 82px;
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 76%);
}

footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(180px, 0.7fr) minmax(280px, 1fr);
  gap: 34px;
  padding-bottom: 42px;
}

.footer-grid > div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.footer-grid > div:first-child {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

footer .brand {
  display: inline-flex;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

footer .brand-logo-holder {
  width: 128px;
  height: 64px;
}

footer .brand-logo-holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer h4 {
  position: relative;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-size: 1.05rem;
}

footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
}

footer p,
footer li,
footer a {
  color: rgba(255, 255, 255, 0.76);
}

footer p {
  max-width: 360px;
}

.footer-links a,
footer li a {
  transition: var(--transition);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-links a::before {
  content: '›';
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 196, 69, 0.12);
  color: var(--primary);
  font-weight: 800;
}

.footer-links a:hover,
footer li a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

footer li + li,
.footer-links li + li {
  margin-top: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.74);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .footer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .stats-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-logo,
  .brand-logo-holder {
    width: 120px;
    height: 58px;
  }

  .brand-logo,
  .brand-logo-holder img {
    max-height: 58px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 22px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-actions .btn {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .contact-grid,
  .footer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .stats-grid,
  .gallery-grid,
  .input-row {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-grid > div {
    padding: 22px;
  }

  .hero {
    padding-top: 12px;
  }

  .slider-shell {
    min-height: 420px;
  }

  .cta-banner,
  .footer-bottom,
  .topbar-inner,
  .navbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-inner {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .brand-badge {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand-logo,
  .brand-logo-holder {
    width: 96px;
    height: 46px;
  }

  .brand-logo,
  .brand-logo-holder img {
    max-height: 46px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .hero-metrics,
  .cta-actions,
  .topbar-links,
  .topbar-info,
  .social-links,
  .contact-list {
    flex-direction: column;
    align-items: stretch;
  }

  .metric-card,
  .stats-card,
  .info-card,
  .service-card,
  .feature-card,
  .review-card,
  .contact-card,
  .blog-card,
  .page-card,
  .fleet-card,
  .pricing-card {
    padding: 22px;
  }

  .slide-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }

  .cta-banner {
    padding: 28px;
  }

  footer {
    padding-top: 54px;
  }

  footer .brand-logo-holder {
    width: 112px;
    height: 54px;
  }
}