/* ============================================================
   PRECISION DETAILING — Design System & Global Styles
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --green-primary: #2db84c;
  --green-light: #4edd6a;
  --green-dark: #1a8f35;
  --green-glow: rgba(45,184,76,0.25);
  --silver: #c0c0c0;
  --silver-light: #e0e0e0;
  --chrome: #8a8a8a;
  --bg-primary: #050505;
  --bg-secondary: #0a0a0a;
  --bg-card: #0f0f0f;
  --border: #1a1a1a;
  --border-green: rgba(45,184,76,0.15);
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #c0c0c0;
  --gradient-btn: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-light) 100%);
  --gradient-green-line: linear-gradient(90deg, var(--green-primary), var(--green-light));
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --header-height: 76px;
  --max-width: 1200px;
  --max-width-wide: 1440px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--green-primary); color: #000; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(45,184,76,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-primary); }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: var(--max-width-wide); margin: 0 auto; padding: 0 32px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }
.text-center { text-align: center; }
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
.section-heading-bar {
  width: 50px;
  height: 2px;
  background: var(--gradient-green-line);
  margin: 14px auto 0;
}
.green-text {
  background: linear-gradient(135deg, #1a6b2e 0%, #2db84c 50%, #1a6b2e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-green 4s linear infinite;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  height: var(--header-height);
  transition: all 0.35s ease;
}
.site-header.scrolled {
  background: rgba(5,5,5,0.97);
  border-bottom-color: var(--border);
}
.header-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 140px;
  position: relative;
}
.header-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

/* --- Primary Nav --- */
.primary-nav { display: flex; align-items: center; flex-shrink: 1; flex-wrap: nowrap; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  height: var(--header-height);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--text-primary); }
.nav-link .nav-arrow { font-size: 0.5em; margin-left: 1px; opacity: 0.4; transition: opacity 0.3s ease; }
.nav-item:hover .nav-arrow { opacity: 0.8; }

/* --- Dropdown --- */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: none;
  padding: 8px 0;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 32px;
  height: 2px;
  background: var(--gradient-green-line);
}
.nav-item:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 12px 24px;
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  transition: all 0.25s ease;
  border-left: 2px solid transparent;
}
.nav-dropdown a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
  border-left-color: var(--green-primary);
  padding-left: 28px;
}

/* --- Header CTA --- */
.header-cta {
  padding: 11px 26px;
  background: var(--gradient-btn);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.header-cta span { position: relative; z-index: 1; }
.header-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  animation: shimmer 4s ease infinite;
}
.header-cta:hover {
  box-shadow: 0 4px 24px var(--green-glow);
  transform: translateY(-1px);
}

/* --- Mobile Nav Toggle --- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-short { min-height: 75vh; padding-bottom: 40px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45,184,76,0.06) 0%, transparent 70%), var(--bg-primary);
}
.hero-bg .bg-orb-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,184,76,0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: drift 12s ease infinite;
}
.hero-bg .bg-orb-2 {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,184,76,0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: drift 15s ease infinite reverse;
}
.hero-bg .bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(45,184,76,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(45,184,76,0.015) 1px, transparent 1px);
  background-size: 100px 100px;
}
.hero-bg .bg-line-1 {
  position: absolute; top: 0; right: 20%; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(45,184,76,0.06) 40%, rgba(45,184,76,0.06) 60%, transparent 100%);
  transform: rotate(15deg); transform-origin: top;
}
.hero-bg .bg-line-2 {
  position: absolute; top: 0; right: 25%; width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(192,192,192,0.04) 40%, rgba(192,192,192,0.04) 60%, transparent 100%);
  transform: rotate(15deg); transform-origin: top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 28px;
  margin-top: 30px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8)) drop-shadow(0 0 20px rgba(0,0,0,0.4));
}
.hero-tag {
  display: inline-block;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.3rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--green-primary);
  margin-bottom: 12px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.1s forwards;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #1a6b2e 0%, #2db84c 50%, #1a6b2e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-green 4s linear infinite;
}
.hero h1 .subtitle {
  font-size: 0.45em;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}
.hero-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.75;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  max-width: 540px;
  margin: 0 auto 34px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.5s forwards;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease 0.7s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2.2s infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  background: var(--gradient-btn);
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--green-glow), 0 0 0 1px rgba(45,184,76,0.3);
}
.btn-outline {
  display: inline-block;
  padding: 14px 30px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(45,184,76,0.4);
  font-family: var(--font-heading);
  font-size: 0.83rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-outline:hover {
  background: rgba(45,184,76,0.08);
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(45,184,76,0.12);
}
.btn-small {
  padding: 10px 22px;
  font-size: 0.75rem;
}

/* ============================================================
   SERVICE CARDS (Homepage)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
}
.service-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 35px var(--green-glow);
}
.service-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.7rem;
}
.service-card:hover .service-card-bg { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 5%, rgba(5,5,5,0.85) 85%, rgba(5,5,5,0.95) 100%);
}
.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-green-line);
  transition: width 0.4s ease;
}
.service-card:hover .service-card-accent { width: 100%; }
.service-card-content {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.service-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.service-card-arrow {
  color: var(--green-primary);
  font-size: 1rem;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}
.service-card:hover .service-card-arrow { transform: translateX(5px); }

/* --- New Clean Service Cards --- */
.services-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  text-decoration: none;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gradient-green-line);
  transition: width 0.4s ease;
}
.svc-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(45,184,76,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.svc-card:hover::after { width: 100%; }
.svc-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45,184,76,0.15);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--green-primary);
  transition: all 0.3s ease;
}
.svc-card:hover .svc-card-icon {
  border-color: rgba(45,184,76,0.4);
  background: rgba(45,184,76,0.06);
}
.svc-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.svc-card p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.svc-card-arrow {
  color: var(--green-primary);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  opacity: 0.5;
}
.svc-card:hover .svc-card-arrow { transform: translateX(5px); opacity: 1; }

/* ============================================================
   INSTAGRAM / POST GRID
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.post-placeholder {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.post-placeholder:hover { border-color: var(--green-dark); transform: scale(1.02); }
.post-ig-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  color: var(--text-secondary);
}
.post-placeholder:hover .post-ig-icon { opacity: 0.5; color: var(--green-primary); }

/* ============================================================
   TRUST / BENEFIT CARDS
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trust-card {
  text-align: center;
  padding: 44px 28px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-green-line);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.trust-card:hover {
  border-color: rgba(45,184,76,0.3);
  transform: translateY(-4px);
}
.trust-card:hover::before { opacity: 1; }
.trust-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: transparent;
  border: 1px solid rgba(45,184,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  position: relative;
}
.trust-icon::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at center, rgba(45,184,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.trust-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.trust-card p {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* 4-column benefit grid */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-image {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0a1a0e 0%, #060d08 50%, #0e1a10 100%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.78rem;
  position: relative;
  overflow: hidden;
}
.split-image .accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
}
.split-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.15;
}
.split-text p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ============================================================
   BRAND BAR
   ============================================================ */
.brand-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-item {
  padding: 12px 32px;
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--chrome);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  cursor: default;
}
.brand-item:hover {
  border-color: rgba(45,184,76,0.3);
  color: var(--silver-light);
  box-shadow: 0 0 20px rgba(45,184,76,0.06);
}

/* Brand Logos */
.brand-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  opacity: 0.5;
  filter: grayscale(100%) brightness(2);
  transition: all 0.4s ease;
  cursor: pointer;
}
.brand-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}
.brand-logo-item img {
  height: 100%;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-green-line);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.package-card:hover {
  border-color: rgba(45,184,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.package-card:hover::before { opacity: 1; }
.package-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.package-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green-primary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.package-turnaround {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.package-list {
  margin-bottom: 28px;
}
.package-list li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #fff;
  padding: 6px 0 6px 20px;
  position: relative;
  line-height: 1.5;
}
.package-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--green-primary);
  background: transparent;
}
.package-list li::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 13px;
  width: 4px;
  height: 4px;
  background: var(--green-primary);
}
.package-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Alternating package row layout */
.package-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
.package-row-reverse { direction: rtl; }
.package-row-reverse > * { direction: ltr; }
.package-diagram {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #0a1a0e, #060d08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-align: center;
  padding: 20px;
}

/* Package cards grid */
.packages-grid { display: grid; gap: 24px; }
.packages-grid-2 { grid-template-columns: repeat(2, 1fr); }
.packages-grid-3 { grid-template-columns: repeat(3, 1fr); }
.packages-grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ============================================================
   PRICING TABLE (Detailing)
   ============================================================ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.pricing-table th, .pricing-table td {
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.pricing-table th {
  color: var(--green-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}
.pricing-table td { color: #fff; }
.pricing-table tr:last-child td { border-bottom: none; }

/* ============================================================
   TINT SELECTOR
   ============================================================ */
.tint-selector {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.tint-btn {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
  cursor: pointer;
}
.tint-btn:hover { border-color: var(--green-primary); color: var(--green-primary); }
.tint-btn.active {
  background: var(--gradient-btn);
  color: #000;
  border-color: var(--green-primary);
}
.tint-preview {
  max-width: 600px;
  margin: 0 auto 48px;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  transition: background 0.4s ease;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--green-primary); }
.faq-toggle {
  font-size: 1.3rem;
  color: var(--green-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-section { max-width: 800px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group-full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: all 0.25s ease;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(45,184,76,0.5);
  box-shadow: 0 0 0 3px rgba(45,184,76,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; }
.form-file-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.85rem;
}
.form-file-input::file-selector-button {
  padding: 6px 16px;
  background: var(--gradient-btn);
  color: #000;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  margin-right: 12px;
}

/* Checkbox group */
.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green-primary);
}

/* Radio group */
.radio-group { display: flex; gap: 24px; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
}
.radio-label input[type="radio"] {
  accent-color: var(--green-primary);
}

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrapper {
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-primary);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee-icon {
  display: flex;
  align-items: center;
  color: var(--green-primary);
  opacity: 0.7;
}
.marquee-icon svg {
  display: block;
}
.marquee-divider {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.08);
  margin-left: 16px;
}
.marquee-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--green-primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green-glow);
}

/* ============================================================
   FOOTER
   ============================================================ */
/* --- Footer Accent Line --- */
.footer-accent-line {
  height: 2px;
  background: var(--gradient-green-line);
}

.site-footer {
  background: #060806;
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-grid-3 {
  grid-template-columns: 1.8fr 1fr 1.2fr;
}
.footer-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-brand {
  position: relative;
}
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.8;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
}
.footer-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: #fff;
  padding: 5px 0;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 0;
}
.footer-col a:hover {
  color: var(--green-primary);
  padding-left: 6px;
}
/* --- Contact Items --- */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #fff;
}
.footer-contact-item svg {
  color: var(--green-primary);
  flex-shrink: 0;
  opacity: 0.7;
}
.footer-contact-item a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0;
}
.footer-contact-item a:hover { color: var(--green-primary); padding-left: 0; }
/* --- Hours Table --- */
.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-hour-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-family: var(--font-body);
  font-size: 0.76rem;
}
.footer-hour-row span:first-child { color: var(--text-muted); }
.footer-hour-row span:last-child { color: var(--text-secondary); font-weight: 500; }
/* --- Social Icons --- */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-social a:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: rgba(45,184,76,0.06);
  transform: translateY(-2px);
}
/* --- Bottom Bar --- */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.65rem;
}
.footer-bottom-links a:hover { color: var(--green-primary); }

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  width: 100%;
  height: 60px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.section-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0.3;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 2px;
  background: var(--gradient-green-line);
  opacity: 0.15;
}

/* ============================================================
   FEATURE IMAGE SECTION
   ============================================================ */
.feature-vehicle {
  width: 100%;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(45,184,76,0.03) 0%, transparent 70%),
              linear-gradient(135deg, #050805 0%, #050505 40%, #080f0a 70%, #050505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-vehicle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0.3;
}
.feature-vehicle span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-green-line);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.blog-card:hover {
  border-color: rgba(45,184,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.blog-card:hover::before { opacity: 1; }
.blog-card-image {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, #0a1a0e, #060d08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-family: var(--font-body);
}
.blog-card-body { padding: 24px; }
.blog-card-date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.blog-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card-body p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.blog-card-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-card-link:hover { text-decoration: underline; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-green-line);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.gallery-item:hover {
  border-color: rgba(45,184,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.gallery-item:hover::before { opacity: 1; }
.gallery-image {
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #0a1a0e, #060d08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
}
.gallery-caption {
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-embed {
  max-width: 900px;
  margin: 0 auto;
  min-height: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

/* CTA Banner */
.cta-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.cta-banner .hero-buttons { justify-content: center; }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  width: 100%;
  min-height: 300px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes drift {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.15); }
}
@keyframes shimmer {
  0% { left: -60%; }
  30% { left: 120%; }
  100% { left: 120%; }
}
@keyframes shimmer-green {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}


/* ============================================================
   ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .mobile-toggle { display: flex; }
  .primary-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    background: #080808;
    padding: 24px 32px 32px;
    overflow-y: auto;
    z-index: 9999;
    gap: 0;
  }
  .primary-nav.mobile-open .nav-item { width: 100%; }
  .primary-nav.mobile-open .nav-link {
    height: auto;
    padding: 16px 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.1em;
  }
  .primary-nav.mobile-open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-top: none;
    padding: 0 0 12px 16px;
    background: transparent;
    backdrop-filter: none;
    min-width: auto;
  }
  .primary-nav.mobile-open .nav-dropdown::before { display: none; }
  .primary-nav.mobile-open .nav-dropdown a {
    padding: 10px 0;
    font-size: 0.78rem;
    color: var(--text-secondary);
    border-left: none;
    border-bottom: none;
  }
  .primary-nav.mobile-open .nav-dropdown a:hover {
    padding-left: 8px;
    border-left: 2px solid var(--green-primary);
  }
  .header-cta { display: none; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .services-grid-clean { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-reverse { direction: ltr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .packages-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .package-row { grid-template-columns: 1fr; }
  .package-row-reverse { direction: ltr; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .container, .container-wide { padding: 0 20px; }
  .section { padding: 52px 0; }
  .services-grid, .services-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .services-grid-clean { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .brand-bar { gap: 12px; }
  .brand-item { padding: 8px 16px; font-size: 0.7rem; letter-spacing: 0.1em; }
  .brand-logos { grid-template-columns: 1fr; gap: 32px; max-width: 200px; }
  .brand-logo-item { height: 48px; }
  .packages-grid-2, .packages-grid-3, .packages-grid-5 { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 0.85rem;
  }
  .hero-desc { font-size: 0.88rem; padding: 0 8px; }
  .hero-tag { font-size: 1rem; }
  .section-heading { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .split-text h2 { font-size: clamp(1.3rem, 5vw, 1.6rem); }
  .split-image { aspect-ratio: 3/4; }
  .feature-vehicle { }
  .service-card { min-height: 160px; }
  .service-card-content h3 { font-size: 0.9rem; }
  .package-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .package-buttons .btn-primary,
  .package-buttons .btn-outline {
    width: 100%;
    text-align: center;
  }
  .pricing-table { font-size: 0.82rem; }
  .pricing-table th, .pricing-table td { padding: 10px 12px; }
  .footer-brand img { height: 48px; }
  .footer-heading { font-size: 0.72rem; margin-bottom: 12px; }
  .footer-bottom { font-size: 0.65rem; padding: 18px 0; }
  .footer-phone { font-size: 1rem; }
  .trust-icon { width: 52px; height: 52px; }
  .trust-icon svg { width: 22px; height: 22px; }
  .trust-card h4 { font-size: 0.95rem; }
  .trust-card p { font-size: 0.82rem; }
  .package-card { padding: 28px 20px; }
  .package-card h3 { font-size: 1.1rem; }
  .package-price { font-size: 1.6rem; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 16px; }
  .section { padding: 40px 0; }
  .hero { min-height: 100svh; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.5rem); }
  .hero-tag { font-size: 0.9rem; padding: 6px 14px; letter-spacing: 0.15em; }
  .hero-desc { font-size: 0.82rem; }
  .services-grid, .services-grid-4 { grid-template-columns: 1fr !important; gap: 12px; }
  .services-grid-clean { grid-template-columns: 1fr; }
  .svc-card { padding: 28px 20px 24px; }
  .svc-card-icon { width: 60px; height: 60px; }
  .svc-card-icon svg { width: 28px; height: 28px; }
  .service-card { min-height: 140px; }
  .post-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .post-placeholder { aspect-ratio: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .brand-bar { gap: 8px; }
  .brand-item { padding: 6px 12px; font-size: 0.62rem; }
  .brand-logos { grid-template-columns: 1fr; gap: 28px; max-width: 180px; }
  .brand-logo-item { height: 40px; }
  .package-card { padding: 24px 16px; }
  .pricing-table { font-size: 0.78rem; }
  .pricing-table th, .pricing-table td { padding: 8px 10px; }
  .primary-nav.mobile-open { padding: 20px 20px 28px; }
  .primary-nav.mobile-open .nav-link { font-size: 0.82rem; padding: 14px 0; }
}

/* Force all map elements below mobile nav overlay */
.leaflet-control-container,
.leaflet-control-zoom,
.leaflet-top,
.leaflet-bottom,
.leaflet-pane { z-index: 500 !important; }
#map { position: relative; z-index: 1; }

/* ── Areas Served ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.area-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.area-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(45, 184, 76, 0.08);
}
.area-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.area-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.area-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.area-card-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-primary);
  background: rgba(45, 184, 76, 0.08);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 10px !important;
}
.area-card-featured {
  border-color: var(--green-primary);
  background: linear-gradient(135deg, rgba(45, 184, 76, 0.04), var(--bg-secondary));
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .area-card-featured {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 24px;
    align-items: start;
  }
  .area-card-featured .area-card-icon { grid-row: 1 / 4; align-self: center; font-size: 40px; }
  .area-card-featured h3 { grid-column: 2; }
  .area-card-featured .area-card-tag { grid-column: 2; }
  .area-card-featured p:last-child { grid-column: 2; }
}

/* Additional areas tags */
.additional-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.area-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.area-tag:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: rgba(45, 184, 76, 0.05);
}

@media (max-width: 599px) {
  .areas-grid { grid-template-columns: 1fr; }
  .area-card-featured { grid-column: auto; }
}
