/* ============================================================
   VanGo Transport — styles.css
   Design: Néo-Utilitarisme Dynamique
   Colors: #0B1F3A (navy) + #F4631E (orange) + #fff
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; width: 100%; max-width: 100%; overflow-x: hidden; }
body { font-family: 'Nunito Sans', sans-serif; color: #0B1F3A; overflow-x: hidden; width: 100%; max-width: 100%; position: relative; background: #fff; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === VARIABLES === */
:root {
  --navy: #0B1F3A;
  --navy-dark: #060f1e;
  --orange: #F4631E;
  --orange-dark: #d4521a;
  --light-gray: #f5f7fa;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.01em; }

/* === CONTAINER === */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; overflow-x: clip; }
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* === UTILITIES === */
.orange { color: var(--orange); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.625rem 1.25rem; border-radius: 0.375rem;
  transition: all 0.2s ease; cursor: pointer; border: none; font-size: 0.875rem;
}
.btn svg { width: 1.125rem; height: 1.125rem; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: scale(1.03); box-shadow: 0 8px 20px rgba(244,99,30,0.3); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #162d52; transform: translateY(-1px); }

.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* === SECTION LABELS === */
.section-label {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem;
  color: var(--orange); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; font-family: 'Nunito Sans', sans-serif;
}
.section-label.center { justify-content: center; }
.label-bar { display: block; width: 2.5rem; height: 4px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }

.section-title { font-weight: 900; line-height: 1; font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
.section-title.dark  { color: var(--navy); }
.section-title.white { color: #fff; }

.section-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem; }
@media (min-width: 1024px) { .section-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

.section-header-center { text-align: center; margin-bottom: 3.5rem; }

.section-desc { color: #6b7280; font-size: 1rem; line-height: 1.7; max-width: 28rem; font-family: 'Nunito Sans', sans-serif; }
.section-desc.center { margin: 0 auto; }

/* === SCROLL REVEAL === */
.reveal       { opacity: 0; transform: translateY(30px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 31, 58, 0.97); backdrop-filter: blur(4px);
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav-inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .nav-inner { height: 5rem; } }
.nav-inner > * { min-width: 0; }

.nav-logo { display: flex; align-items: center; gap: 0.5rem; }
.brand-logo { display: block; width: auto; height: 2.75rem; }
.brand-logo-footer { height: 4.4rem; }
.nav-logo:hover .brand-logo { opacity: 0.92; }
@media (max-width: 420px) {
  .brand-logo { height: 2.25rem; }
  .brand-logo-footer { height: 3.5rem; }
}

.nav-links { display: none; gap: 2rem; align-items: center; }
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: max-content;
  }
}
.nav-links a { color: rgba(255,255,255,0.8); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-family: 'Nunito Sans', sans-serif; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--orange); }

.nav-cta { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .nav-cta { display: flex; } }

.hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; padding: 0;
  color: #fff; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.hamburger:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger-box {
  position: relative;
  width: 1.25rem; height: 1rem;
  display: block;
}
.hamburger-line {
  position: absolute; left: 0;
  width: 100%; height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition: top 0.28s cubic-bezier(.4,0,.2,1), transform 0.28s cubic-bezier(.4,0,.2,1), opacity 0.2s ease, width 0.28s cubic-bezier(.4,0,.2,1);
}
.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: calc(50% - 1px); width: 82%; }
.hamburger-line:nth-child(3) { top: calc(100% - 2px); }

.hamburger.open .hamburger-line:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open .hamburger-line:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { max-height: 26rem; opacity: 1; }

.mobile-menu-inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.25rem; }
@media (max-width: 420px) { .mobile-menu-inner { padding: 0.875rem; } }

.mobile-link {
  display: block; padding: 0.625rem 0; color: rgba(255,255,255,0.8);
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; font-family: 'Nunito Sans', sans-serif;
  transition: color 0.2s ease; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-link:hover { color: var(--orange); }
.mobile-menu-inner .btn { margin-top: 0.75rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex;
  flex-direction: column; justify-content: flex-end; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  margin-bottom: -4rem; padding-bottom: 7rem;
}
.hero-bg { position: absolute; inset: 0; background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663525110471/X2Er8UQyGuWPYjEFqdHuSU/hero-van-iAS8zk2xKMFTCMz7n8BUsy.webp'); background-size: cover; background-position: center; }
.hero-overlay-v { position: absolute; inset: 0; background: linear-gradient(to top, #0B1F3A, rgba(11,31,58,0.6) 50%, rgba(11,31,58,0.2)); }
.hero-overlay-h { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,31,58,0.8), transparent 60%); }
.hero-accent-line { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); }

.hero-content { position: relative; padding-bottom: 4rem; }
@media (min-width: 1024px) { .hero-content { padding-bottom: 6rem; } }

.hero-text { max-width: 48rem; }

.hero-label {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
  color: var(--orange); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; font-family: 'Nunito Sans', sans-serif;
  opacity: 0; transform: translateY(8px);
  animation: fadeUp 0.7s ease forwards 0.1s;
}
.label-line { display: block; width: 2rem; height: 1px; background: var(--orange); }

.hero-heading {
  color: #fff; font-weight: 900; line-height: 1; margin-bottom: 1.5rem;
  font-size: clamp(3.5rem, 8vw, 7rem);
  opacity: 0; transform: translateY(10px);
  animation: fadeUp 0.7s ease forwards 0.2s;
}
.hero-subtitle {
  color: rgba(255,255,255,0.75); font-size: 1.125rem; line-height: 1.7;
  max-width: 36rem; margin-bottom: 2rem; font-family: 'Nunito Sans', sans-serif;
  opacity: 0; transform: translateY(8px);
  animation: fadeUp 0.7s ease forwards 0.35s;
}
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(8px);
  animation: fadeUp 0.7s ease forwards 0.5s;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  opacity: 0; transform: translateY(8px);
  animation: fadeUp 0.7s ease forwards 0.65s;
}
.hero-badge { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 500; font-family: 'Nunito Sans', sans-serif; }
.hero-badge svg { width: 1rem; height: 1rem; color: var(--orange); }

.scroll-indicator {
  position: absolute; bottom: 3rem; right: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeIn 0.7s ease forwards 0.9s;
}
@media (min-width: 1024px) { .scroll-indicator { right: 4rem; } }
.scroll-indicator span {
  color: rgba(255,255,255,0.4); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.2em; writing-mode: vertical-rl; font-family: 'Nunito Sans', sans-serif;
}
.scroll-line { width: 1px; height: 3rem; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { background: var(--navy); padding: 4rem 0; position: relative; z-index: 10; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; padding: 1.5rem; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:nth-child(2) { border-right: none; }
.stat-item:last-child  { border-right: none; }
@media (min-width: 1024px) {
  .stat-item:nth-child(2) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child   { border-right: none; }
}

.stat-number { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; line-height: 1; margin-bottom: 0.5rem; }
.stat-label  { color: rgba(255,255,255,0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; font-family: 'Nunito Sans', sans-serif; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 6rem 0; background: var(--light-gray); position: relative; z-index: 8; }
@media (min-width: 1024px) { .services-section { padding: 9rem 0; } }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto auto; }
  .service-card.featured { grid-row: span 2; }
}

.service-card { border-radius: 0.75rem; overflow: hidden; cursor: pointer; }

.service-img-wrap { position: relative; overflow: hidden; height: 14rem; }
.service-img-wrap.featured-img { height: 100%; min-height: 26rem; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.1); }

.service-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #0B1F3A, rgba(11,31,58,0.4), transparent); }

.service-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
@media (min-width: 1024px) { .service-content { padding: 2rem; } }

.service-title-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.service-icon { width: 2.5rem; height: 2.5rem; background: var(--orange); border-radius: 0.25rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.service-content h3 { color: #fff; font-weight: 700; font-size: 1.5rem; }
@media (min-width: 1024px) { .service-content h3 { font-size: 1.875rem; } }
.service-content p { color: rgba(255,255,255,0.75); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; font-family: 'Nunito Sans', sans-serif; }

.service-learn-more { display: flex; align-items: center; gap: 0.5rem; color: var(--orange); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Nunito Sans', sans-serif; opacity: 0; transition: opacity 0.3s ease; }
.service-card:hover .service-learn-more { opacity: 1; }
.service-learn-more svg { width: 1rem; height: 1rem; transition: transform 0.2s ease; }
.service-card:hover .service-learn-more svg { transform: translateX(3px); }

/* ============================================================
   FLEET
   ============================================================ */
.fleet-section {
  background: var(--navy); padding: 7rem 0; position: relative; z-index: 9;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin-top: -3rem; margin-bottom: -3rem;
}

.fleet-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; align-items: center; } }

.fleet-desc { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 28rem; font-family: 'Nunito Sans', sans-serif; }

.fleet-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.fleet-feature { display: flex; align-items: flex-start; gap: 0.75rem; }

.feature-icon { width: 2.5rem; height: 2.5rem; background: rgba(244,99,30,0.15); border: 1px solid rgba(244,99,30,0.3); border-radius: 0.375rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s ease; }
.fleet-feature:hover .feature-icon { background: var(--orange); }
.feature-icon svg { width: 1.25rem; height: 1.25rem; color: var(--orange); transition: color 0.3s ease; }
.fleet-feature:hover .feature-icon svg { color: #fff; }

.feature-label { color: #fff; font-weight: 700; font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif; }
.feature-desc  { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-family: 'Nunito Sans', sans-serif; }

.fleet-images { position: relative; padding-bottom: 2.5rem; }

.fleet-img-main { border-radius: 0.75rem; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.fleet-img-main img { width: 100%; height: 18rem; object-fit: cover; }
@media (min-width: 1024px) { .fleet-img-main img { height: 24rem; } }

.fleet-img-secondary { position: absolute; bottom: 0; left: -1.5rem; width: 12rem; border-radius: 0.75rem; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.5); border: 4px solid var(--navy); }
@media (min-width: 1024px) { .fleet-img-secondary { width: 16rem; } }
.fleet-img-secondary img { width: 100%; height: 8rem; object-fit: cover; }
@media (min-width: 1024px) { .fleet-img-secondary img { height: 11rem; } }

.fleet-badge { position: absolute; top: -1rem; right: -1rem; background: var(--orange); color: #fff; border-radius: 0.75rem; padding: 1rem; box-shadow: 0 10px 30px rgba(244,99,30,0.4); }
.fleet-badge-num   { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.875rem; line-height: 1; }
.fleet-badge-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); font-family: 'Nunito Sans', sans-serif; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { padding: 7rem 0 6rem; background: #fff; position: relative; z-index: 7; }
@media (min-width: 1024px) { .pricing-section { padding: 9rem 0 7rem; } }

.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card { border-radius: 1rem; overflow: hidden; background: var(--light-gray); border: 1px solid #e5e7eb; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.pricing-card.highlighted { background: var(--navy); border-color: var(--navy); box-shadow: 0 25px 50px rgba(11,31,58,0.3); transform: scale(1.03); }
.pricing-card.highlighted:hover { transform: scale(1.03) translateY(-8px); }

.pricing-popular { background: var(--orange); color: #fff; text-align: center; padding: 0.5rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-family: 'Nunito Sans', sans-serif; }

.pricing-inner { padding: 2rem; }

.pricing-name { font-weight: 900; font-size: 1.5rem; margin-bottom: 0.25rem; color: var(--navy); }
.highlighted .pricing-name { color: #fff; }

.pricing-desc { font-size: 0.875rem; color: #6b7280; margin-bottom: 1.5rem; font-family: 'Nunito Sans', sans-serif; }
.highlighted .pricing-desc { color: rgba(255,255,255,0.6); }

.pricing-price { display: flex; align-items: flex-end; gap: 0.25rem; margin-bottom: 2rem; }
.price-amount { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 3.5rem; line-height: 1; color: var(--navy); }
.highlighted .price-amount { color: #fff; }
.price-unit { font-size: 0.875rem; color: #9ca3af; margin-bottom: 0.5rem; font-family: 'Nunito Sans', sans-serif; }
.highlighted .price-unit { color: rgba(255,255,255,0.5); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: #4b5563; font-family: 'Nunito Sans', sans-serif; }
.highlighted .pricing-features li { color: rgba(255,255,255,0.8); }

.check-icon { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: rgba(244,99,30,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon.orange-check { background: var(--orange); }
.check-icon svg { width: 0.75rem; height: 0.75rem; color: var(--orange); }
.check-icon.orange-check svg { color: #fff; }

.pricing-note { text-align: center; color: #9ca3af; font-size: 0.875rem; margin-top: 2rem; font-family: 'Nunito Sans', sans-serif; }

.link-orange { color: var(--orange); font-weight: 600; cursor: pointer; font-family: 'Nunito Sans', sans-serif; font-size: 0.875rem; }
.link-orange:hover { text-decoration: underline; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 6rem 0; background: var(--light-gray); position: relative; z-index: 6; }
@media (min-width: 1024px) { .about-section { padding: 9rem 0; } }

.about-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; align-items: center; } }

.about-image-wrap { position: relative; order: 2; }
@media (min-width: 1024px) { .about-image-wrap { order: 1; } }

.about-img-main { border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.about-img-main img { width: 100%; height: 20rem; object-fit: cover; }
@media (min-width: 1024px) { .about-img-main img { height: 30rem; } }

.about-deco-orange { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 8rem; height: 8rem; background: var(--orange); border-radius: 1rem; opacity: 0.15; z-index: -1; }
.about-deco-border { position: absolute; top: -1.5rem; left: -1.5rem; width: 6rem; height: 6rem; border: 4px solid var(--navy); border-radius: 1rem; z-index: -1; }

.about-badge { position: absolute; top: 1.5rem; right: -1rem; background: var(--navy); color: #fff; border-radius: 0.75rem; padding: 1rem 1.25rem; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.about-badge-num   { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.5rem; line-height: 1; color: var(--orange); }
.about-badge-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); font-family: 'Nunito Sans', sans-serif; }

.about-text { order: 1; }
@media (min-width: 1024px) { .about-text { order: 2; } }

.about-para { color: #4b5563; line-height: 1.7; margin-bottom: 1rem; font-family: 'Nunito Sans', sans-serif; }

.about-values { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }

.value-item { display: flex; align-items: flex-start; gap: 1rem; }

.value-icon { width: 2.75rem; height: 2.75rem; background: rgba(244,99,30,0.1); border: 1px solid rgba(244,99,30,0.2); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s ease; }
.value-item:hover .value-icon { background: var(--orange); }
.value-icon svg { width: 1.25rem; height: 1.25rem; color: var(--orange); transition: color 0.3s ease; }
.value-item:hover .value-icon svg { color: #fff; }

.value-title { color: var(--navy); font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; font-family: 'Nunito Sans', sans-serif; }
.value-desc  { color: #6b7280; font-size: 0.875rem; line-height: 1.6; font-family: 'Nunito Sans', sans-serif; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--navy); padding: 7rem 0; position: relative; z-index: 7;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin-top: -3rem; margin-bottom: -3rem;
}

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 1rem; padding: 1.75rem; transition: background 0.3s ease; }
.testimonial-card:hover { background: rgba(255,255,255,0.1); }

.quote-icon { width: 2rem; height: 2rem; color: var(--orange); opacity: 0.6; margin-bottom: 1rem; }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars svg { width: 1rem; height: 1rem; color: var(--orange); fill: var(--orange); }

.testimonial-text { color: rgba(255,255,255,0.75); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; font-family: 'Nunito Sans', sans-serif; }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 2.5rem; height: 2.5rem; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.875rem; font-weight: 700; font-family: 'Barlow Condensed', sans-serif; flex-shrink: 0; }
.author-name { color: #fff; font-weight: 700; font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif; }
.author-role { color: rgba(255,255,255,0.5); font-size: 0.75rem; font-family: 'Nunito Sans', sans-serif; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 7rem 0 6rem; background: #fff; position: relative; z-index: 5; }
@media (min-width: 1024px) { .contact-section { padding: 9rem 0 7rem; } }

.contact-grid { display: grid; gap: 3rem; margin-top: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; gap: 4rem; } }

/* Form */
.form-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--navy); font-family: 'Nunito Sans', sans-serif; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.625rem 0.875rem;
  border: 1px solid #e5e7eb; border-radius: 0.375rem;
  font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif;
  color: var(--navy); background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,99,30,0.1); }
.form-group textarea { resize: none; }

.form-toast { padding: 0.75rem 1rem; border-radius: 0.375rem; font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif; display: none; }
.form-toast.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.form-toast.success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* Form Success */
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.form-success.visible { display: flex; }
.success-icon { width: 4rem; height: 4rem; color: var(--orange); margin-bottom: 1rem; }
.form-success h3 { color: var(--navy); font-weight: 900; font-size: 1.875rem; margin-bottom: 0.5rem; }
.form-success p  { color: #6b7280; max-width: 22rem; font-family: 'Nunito Sans', sans-serif; font-size: 0.875rem; margin-bottom: 1.5rem; }

/* Contact Info */
.contact-info-box { background: var(--navy); border-radius: 1rem; padding: 2rem; }
.contact-info-title { color: #fff; font-weight: 900; font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-info-sub   { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 2rem; font-family: 'Nunito Sans', sans-serif; }

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item  { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon { width: 2.5rem; height: 2.5rem; background: rgba(244,99,30,0.15); border: 1px solid rgba(244,99,30,0.3); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 1.25rem; height: 1.25rem; color: var(--orange); }
.contact-item-label { color: rgba(255,255,255,0.5); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.125rem; font-family: 'Nunito Sans', sans-serif; }
.contact-item-value { color: #fff; font-weight: 600; font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif; }

.contact-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 2rem 0; }

.urgent-cta { background: rgba(244,99,30,0.1); border: 1px solid rgba(244,99,30,0.2); border-radius: 0.75rem; padding: 1.25rem; }
.urgent-title { color: #fff; font-weight: 700; font-size: 0.875rem; margin-bottom: 0.25rem; font-family: 'Nunito Sans', sans-serif; }
.urgent-sub   { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-bottom: 0.75rem; font-family: 'Nunito Sans', sans-serif; }
.urgent-link  { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--orange); font-weight: 700; font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif; transition: gap 0.2s ease; }
.urgent-link:hover { gap: 0.75rem; }
.urgent-link svg { width: 1rem; height: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); color: #fff; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 0 5rem; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: minmax(0, 1.5fr) minmax(220px, .9fr) minmax(220px, .9fr); padding: 5rem 0 6rem; }
  .footer-grid > :nth-child(2),
  .footer-grid > :nth-child(3) { justify-self: end; width: 100%; max-width: 240px; }
}

.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.footer-desc  { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; font-family: 'Nunito Sans', sans-serif; }

.social-links { display: flex; gap: 0.75rem; }
.social-link  { width: 2.25rem; height: 2.25rem; background: rgba(255,255,255,0.05); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; color: #fff; }
.social-link:hover { background: var(--orange); }
.social-link svg { width: 1rem; height: 1rem; }

.footer-heading { color: #fff; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.25rem; font-family: 'Nunito Sans', sans-serif; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--orange); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.5); font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif; }
.footer-contact-icon { width: 1rem; height: 1rem; color: var(--orange); flex-shrink: 0; margin-top: 0.125rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1.25rem 0; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.footer-meta { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; text-align: center; }
@media (min-width: 640px) { .footer-meta { align-items: flex-start; text-align: left; } }
.footer-bottom-inner p { color: rgba(255,255,255,0.3); font-size: 0.75rem; font-family: 'Nunito Sans', sans-serif; }
.footer-crafted,
.footer-crafted a { color: rgba(255,255,255,0.42); font-size: 0.75rem; font-family: 'Nunito Sans', sans-serif; transition: color 0.2s ease; }
.footer-crafted a:hover { color: var(--orange); }

.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.75rem; font-family: 'Nunito Sans', sans-serif; transition: color 0.2s ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown > a svg { width: 0.8rem; height: 0.8rem; transition: transform 0.2s ease; }
.nav-dropdown:hover > a { color: var(--orange); }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 0.75rem); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 195px; background: var(--navy);
  border-top: 2px solid var(--orange); border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 0.625rem;
  padding: 0.7rem 1rem;
  color: rgba(255,255,255,0.75); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Nunito Sans', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.07); transition: all 0.2s;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active { color: var(--orange); background: rgba(255,255,255,0.04); }
.nav-dropdown-menu a svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

/* Mobile dropdown sub-links */
.mobile-dropdown-label {
  display: block; padding: 0.5rem 0;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; font-family: 'Nunito Sans', sans-serif;
  color: rgba(255,255,255,0.4); margin-top: 0.25rem;
}
.mobile-sub {
  padding-left: 1rem !important;
  font-size: 0.875rem !important;
  color: rgba(255,255,255,0.65) !important;
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
}
.mobile-sub:hover { color: var(--orange) !important; }
.mobile-sub svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

/* ============================================================
   PRICE CARD (delivery form flow)
   ============================================================ */
.price-card {
  background: #fff; border-radius: 1rem; padding: 2rem;
  text-align: center; border: 2px solid rgba(244,99,30,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.price-card-icon { margin-bottom: 0.75rem; }
.price-card-icon svg { width: 2.75rem; height: 2.75rem; color: var(--orange); }
.price-card-label { color: #6b7280; font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif; margin-bottom: 0.875rem; }
.price-range {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 3.25rem; color: var(--navy); line-height: 1; margin-bottom: 0.25rem;
}
.price-disclaimer {
  color: #9ca3af; font-size: 0.75rem; font-family: 'Nunito Sans', sans-serif;
  padding-top: 0.875rem; border-top: 1px solid #f0f0f0; margin: 0.875rem 0 1.5rem;
}
.price-question-label {
  color: var(--navy); font-weight: 700; font-size: 0.9375rem;
  font-family: 'Nunito Sans', sans-serif; margin-bottom: 0.875rem;
}
.price-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.contact-follow {
  margin-top: 1.75rem; padding-top: 1.75rem;
  border-top: 1px solid #e5e7eb;
}
.contact-follow h4 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 1.25rem;
}
.price-declined {
  padding: 1.5rem; text-align: center;
  color: #6b7280; font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem;
  line-height: 1.7;
}
.price-declined strong { color: var(--navy); }

/* ============================================================
   SIMPLE FORM PAGE (services + properties)
   ============================================================ */
.sp-form-section { background: var(--light-gray); padding: 5rem 0 6rem; }
@media (min-width: 1024px) { .sp-form-section { padding: 6rem 0 7rem; } }

.sp-form-card {
  background: #fff; border-radius: 1.25rem; padding: 2rem;
  box-shadow: 0 4px 24px rgba(11,31,58,0.08);
  max-width: 680px; margin: 0 auto;
}
@media (min-width: 1024px) { .sp-form-card { padding: 2.5rem 3rem; } }

.sp-form-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; color: var(--navy); margin-bottom: 0.25rem; }
.sp-form-card > p { color: #6b7280; font-size: 0.875rem; font-family: 'Nunito Sans', sans-serif; margin-bottom: 2rem; }

.sp-success {
  display: none; flex-direction: column;
  align-items: center; text-align: center; padding: 3rem 1rem;
}
.sp-success.visible { display: flex; }
.sp-success svg { width: 3.5rem; height: 3.5rem; color: var(--orange); margin-bottom: 1rem; }
.sp-success h3 { color: var(--navy); font-weight: 900; font-size: 1.75rem; margin-bottom: 0.5rem; }
.sp-success p { color: #6b7280; font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem; margin-bottom: 1.5rem; }
