/* ============================================================
   Fair Mile Auto Services — Premium Production Stylesheet
   Design System: Modern, Trustworthy, Premium Automotive
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --navy-900: #0f1d2e;
  --navy-800: #182C45;
  --navy-700: #1e3a5f;
  --navy-600: #254a75;
  --blue-500: #0095DA;
  --blue-400: #33b3e8;
  --blue-300: #7dd3fc;
  --teal-400: #00D4AA;
  --teal-300: #5eead4;
  --white: #FFFFFF;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --accent-gold: #f59e0b;
  --success: #10b981;
  --whatsapp: #25D366;

  /* Typography */
  --font-heading: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'SF Mono', Monaco, monospace;

  /* Fluid type scale using clamp() */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);

  /* Spacing scale (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container: min(1140px, 92vw);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-blue: 0 8px 30px -4px rgb(0 149 218 / 0.4);
  --shadow-inset: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index scale */
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-toast: 700;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--slate-700);
  background: var(--white);
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover { color: var(--navy-800); }

ul, ol { list-style: none; }

/* ---------- Utilities ---------- */
.container {
  width: var(--container);
  margin-inline: auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--teal-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 9999;
  padding: var(--space-3) var(--space-5);
  background: var(--navy-800);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: top var(--transition-fast);
}

.skip-link:focus { top: var(--space-4); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before { transform: translateX(100%); }

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy-800);
  box-shadow: var(--shadow-lg);
}

.btn-light:hover {
  background: var(--slate-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section-header--light .section-title { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: var(--space-4);
  position: relative;
}

.eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  margin-left: var(--space-2);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--slate-500);
  line-height: 1.7;
}

.section-header--light .section-lead { color: var(--slate-300); }

.section-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--blue-500);
  margin-top: var(--space-5);
  transition: gap var(--transition-base);
}

.section-link:hover { gap: var(--space-3); }

.section-link svg { width: 16px; height: 16px; }

/* ---------- Header ----------
   site-header uses display:contents so it doesn't become the containing
   block for .navbar's position:sticky — without this, sticky is bounded by
   site-header's own height (topbar + navbar) and the "stuck" navbar
   scrolls away as soon as that short box leaves the viewport. */
.site-header { display: contents; }

.topbar {
  background: var(--navy-900);
  color: var(--slate-300);
  font-size: var(--text-xs);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-2);
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--slate-300);
  transition: color var(--transition-fast);
}

.topbar-link:hover { color: var(--blue-400); }

.topbar-link svg { width: 14px; height: 14px; fill: var(--blue-500); }

.topbar-separator {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.1);
}

.topbar-social {
  display: flex;
  gap: var(--space-2);
}

.topbar-social a {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.topbar-social a:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  transform: translateY(-2px);
}

.topbar-social svg { width: 14px; height: 14px; fill: var(--white); }

/* Navbar */
.navbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  transition: all var(--transition-base);
}

.navbar.is-scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  gap: var(--space-6);
}

.logo img { height: 48px; width: auto; }

.nav-menu {
  display: flex;
  gap: var(--space-8);
}

.nav-menu a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--slate-700);
  position: relative;
  padding-block: var(--space-2);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-menu a:hover,
.nav-menu a.active { color: var(--navy-800); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}

.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.is-active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.is-active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 50%, #0a1420 100%);
  color: var(--white);
  padding: var(--space-24) 0 var(--space-20);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--blue-500), transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--teal-400), transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -7s;
  opacity: 0.25;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: 40%;
  right: 30%;
  animation-delay: -14s;
  opacity: 0.15;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: var(--space-6);
  width: fit-content;
}

.hero-badge svg { width: 14px; height: 14px; fill: var(--blue-400); }

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: var(--text-lg);
  color: var(--slate-300);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--space-8);
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--slate-300);
}

.hero-feature--highlight {
  background: linear-gradient(90deg, rgba(0,149,218,0.1), rgba(0,212,170,0.05));
  border: 1px solid rgba(0,149,218,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  color: var(--white);
}

.hero-feature--highlight strong {
  color: var(--blue-300);
  font-weight: 600;
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 14px; height: 14px; fill: var(--white); }

.feature-icon--dot {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}

.feature-icon--dot svg { width: 8px; height: 8px; fill: var(--blue-400); }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  display: inline-block;
}

.hero-image-wrapper img {
  max-width: 420px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  animation: heroImageFloat 6s ease-in-out infinite;
}

@keyframes heroImageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: cardFloat 5s ease-in-out infinite;
}

.hero-float-card--top {
  top: 5%;
  right: -5%;
  animation-delay: 0s;
}

.hero-float-card--bottom {
  bottom: 15%;
  left: -10%;
  animation-delay: -2s;
}

.hero-float-card--right {
  top: 45%;
  right: -15%;
  animation-delay: -4s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card-icon svg { width: 20px; height: 20px; fill: var(--white); }

.float-card-content {
  display: flex;
  flex-direction: column;
}

.float-card-content strong {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
}

.float-card-content span {
  font-size: var(--text-xs);
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  color: var(--slate-400);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--blue-400);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--blue-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--slate-400);
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* ---------- About ---------- */
.about {
  background: var(--slate-50);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,149,218,0.05), transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: var(--space-6);
  left: calc(-1 * var(--space-6));
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.exp-num {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-1);
  opacity: 0.9;
}

.about-pattern {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: repeating-linear-gradient(
    45deg,
    var(--blue-500),
    var(--blue-500) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0.2;
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.about-body p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--slate-600);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, rgba(0,149,218,0.08), rgba(0,212,170,0.04));
  border: 1px solid rgba(0,149,218,0.15);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-xs);
  color: var(--navy-800);
}

.trust-badge svg { width: 14px; height: 14px; fill: var(--blue-500); }

.ceo-signature {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: fit-content;
}

.ceo-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
}

.ceo-info {
  display: flex;
  flex-direction: column;
}

.ceo-info strong {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy-800);
}

.ceo-info span {
  font-size: var(--text-sm);
  color: var(--slate-500);
}

/* Progress Bars */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.progress-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-sm);
  color: var(--slate-700);
}

.progress-value {
  font-weight: 700;
  color: var(--blue-500);
}

.progress-track {
  height: 8px;
  background: var(--slate-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
}

/* ---------- Services ---------- */
.services {
  padding: var(--space-24) 0;
  background: var(--white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-2);
  transition: all var(--transition-slow);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: -1;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.service-card-inner {
  background: var(--white);
  border-radius: calc(var(--radius-xl) - 2px);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card-photo { height: 140px; overflow: hidden; flex-shrink: 0; }

.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-photo img { transform: scale(1.08); }

.service-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(0,149,218,0.1), rgba(0,212,170,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -44px;
  margin-bottom: var(--space-5);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  transform: scale(1.1) rotate(-5deg);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--blue-500);
  transition: fill var(--transition-base);
}

.service-card:hover .service-icon svg { fill: var(--white); }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-3);
}

.service-sub {
  font-weight: 400;
  color: var(--slate-500);
  font-size: 0.85em;
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--blue-500);
  transition: gap var(--transition-base);
}

.service-link svg { width: 16px; height: 16px; }

.service-link:hover { gap: var(--space-3); color: var(--navy-800); }

/* ---------- Why Choose Us ---------- */
.why {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,149,218,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,212,170,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-2);
  transition: all var(--transition-slow);
}

.why-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,149,218,0.3);
  transform: translateY(-8px);
}

.why-card-inner {
  padding: var(--space-8) var(--space-6);
  height: 100%;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  box-shadow: 0 10px 30px -5px rgba(0,149,218,0.4);
  transition: transform var(--transition-bounce);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.why-card p {
  font-size: var(--text-sm);
  color: var(--slate-400);
  line-height: 1.7;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: var(--space-24) 0;
  background: var(--slate-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6) var(--space-4) var(--space-4);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--tall { grid-row: span 2; }

.gallery-item--wide { grid-column: span 2; }

/* ---------- Brands ---------- */
.brands {
  padding: var(--space-24) 0;
  background: var(--white);
  overflow: hidden;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.brands-track {
  display: flex;
  gap: var(--space-8);
  width: max-content;
  animation: brandScroll 40s linear infinite;
}

.brands-marquee:hover .brands-track { animation-play-state: paused; }

@keyframes brandScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-logo {
  flex-shrink: 0;
  width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  filter: grayscale(100%);
  opacity: 0.7;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-500);
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brands-note {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--slate-400);
  margin-top: var(--space-8);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
  padding: var(--space-20) 0;
  overflow: hidden;
  text-align: center;
}

.cta-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-content p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--space-24) 0;
  background: var(--slate-50);
  overflow: hidden;
}

.rating-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.rating-stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-size: var(--text-lg);
}

.testimonials-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  margin-bottom: var(--space-8);
}

.testimonials-track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: testimonialScroll 50s linear infinite;
}

.testimonials-marquee:hover .testimonials-track { animation-play-state: paused; }

@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testi-card {
  flex-shrink: 0;
  width: 380px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-base);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testi-rating {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.testi-rating svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

.testi-card blockquote {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--slate-700);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--avatar-bg, linear-gradient(135deg, var(--blue-500), var(--teal-400)));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  flex-shrink: 0;
}

.testi-meta {
  display: flex;
  flex-direction: column;
}

.testi-meta strong {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy-800);
}

.testi-meta span {
  font-size: var(--text-sm);
  color: var(--slate-500);
}

.testi-source {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--slate-500);
}

.testi-source a { text-decoration: underline; }

/* ---------- Location ---------- */
.location {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  padding: var(--space-24) 0 0;
  position: relative;
  overflow: hidden;
}

.location::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-500), transparent);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.location-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,149,218,0.3);
  transform: translateY(-4px);
}

.location-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 10px 30px -5px rgba(0,149,218,0.4);
}

.location-icon svg { width: 24px; height: 24px; fill: var(--white); }

.location-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.location-card p {
  font-size: var(--text-sm);
  color: var(--slate-400);
  margin-bottom: var(--space-4);
}

.location-action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--blue-400);
  margin-top: auto;
  transition: gap var(--transition-base);
}

.location-action svg { width: 14px; height: 14px; }

.location-card:hover .location-action { gap: var(--space-3); }

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--slate-300);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-list li:last-child { border-bottom: none; }

.location-map-full {
  position: relative;
}

.location-map-full iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(30%) contrast(1.1);
}

.map-embed-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-5);
  background: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--navy-800);
  transition: all var(--transition-base);
}

.map-embed-link:hover {
  background: var(--slate-50);
  color: var(--blue-500);
}

.map-embed-link svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.site-footer { position: relative; }

.footer-top {
  background: var(--slate-100);
  padding: var(--space-12) 0;
  border-top: 4px solid var(--blue-500);
}

.footer-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.footer-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.footer-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -4px rgba(0,149,218,0.4);
}

.footer-icon svg { width: 22px; height: 22px; fill: var(--white); }

.footer-contact-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-1);
}

.footer-contact-card p {
  font-size: var(--text-sm);
  color: var(--slate-600);
}

.footer-contact-card a { color: var(--slate-600); }
.footer-contact-card a:hover { color: var(--blue-500); }

.footer-main {
  background: linear-gradient(180deg, var(--navy-900), #070d14);
  color: var(--slate-400);
  padding: var(--space-16) 0 0;
}

.footer-main > .container:not(.footer-bottom) {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
}

.footer-brand .logo img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-5);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--slate-500);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  transform: translateY(-3px);
}

.footer-social svg { width: 16px; height: 16px; fill: var(--white); }

.footer-nav h2,
.footer-hours h2 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav ul { display: flex; flex-direction: column; gap: var(--space-3); }

.footer-nav a {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--slate-400);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--blue-400);
  transform: translateX(4px);
}

.footer-nav a svg { width: 12px; height: 12px; fill: var(--blue-500); }

.footer-hours ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--slate-400);
  padding-bottom: var(--space-3);
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.footer-hours li:last-child { border-bottom: none; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
}

.footer-badge:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--slate-600);
}

.footer-bottom a { color: var(--blue-500); }

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.back-to-top svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: var(--space-6);
  bottom: var(--space-6);
  z-index: var(--z-fixed);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(37,211,102,0.5);
  transition: all var(--transition-base);
}

.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  opacity: 0.3;
  animation: whatsappPulse 2s ease-out infinite;
  z-index: -1;
}

.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--white); }

.whatsapp-fab:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px -5px rgba(37,211,102,0.6);
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---------- Scroll Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="0.1"] { transition-delay: 0.1s; }
[data-reveal-delay="0.2"] { transition-delay: 0.2s; }
[data-reveal-delay="0.3"] { transition-delay: 0.3s; }

/* ---------- Toast ---------- */
.toast-container {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.toast {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-2xl);
  border-left: 4px solid var(--blue-500);
  font-size: var(--text-sm);
  color: var(--slate-700);
  animation: toastIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 360px;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; margin-bottom: var(--space-10); }
  .hero-title br { display: none; }
  .hero-lead { margin-inline: auto; }
  .hero-features { align-items: center; }
  .hero-cta { justify-content: center; }
  .hero-image-wrapper img { max-width: 320px; }
  .hero-float-card--right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .about-media { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main > .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-info li span:last-child { display: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-4) var(--space-6);
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--slate-200);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: var(--space-3) 0; border-bottom: 1px solid var(--slate-100); }
  .nav-toggle { display: flex; }
  .hero { padding: var(--space-16) 0 var(--space-12); min-height: auto; }
  .hero-title { font-size: var(--text-3xl); }
  .hero-float-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item--large,
  .gallery-item--tall,
  .gallery-item--wide { grid-column: span 1; grid-row: span 1; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-top .container { grid-template-columns: 1fr; }
  .footer-main > .container { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-4); text-align: center; }
  .whatsapp-fab { right: var(--space-4); bottom: var(--space-4); width: 52px; height: 52px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: var(--text-2xl); }
  .section-title { font-size: var(--text-2xl); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .testi-card { width: 300px; padding: var(--space-6); }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Subpage components (About / Services / Contact)
   ============================================================ */

/* ---------- Page Banner ---------- */
.page-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 60%, #0a1420 100%);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-16);
  overflow: hidden;
  text-align: center;
}

.page-banner--photo { background-size: cover; background-position: center; }

.page-banner--about {
  background-image: linear-gradient(135deg, rgba(15,29,46,0.93), rgba(10,20,32,0.9)), url('../images/WhatsApp-Image-2025-10-15-at-10.31.30-AM-1024x768.jpeg');
}

.page-banner--services {
  background-image: linear-gradient(135deg, rgba(15,29,46,0.93), rgba(10,20,32,0.9)), url('../images/shutterstock_1676772124.jpg');
}

.page-banner--contact {
  background-image: linear-gradient(135deg, rgba(15,29,46,0.93), rgba(10,20,32,0.9)), url('../images/WhatsApp-Image-2025-10-15-at-10.31.25-AM-1024x768.jpeg');
}

.page-banner-bg-shapes {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background:
    radial-gradient(420px circle at 85% 20%, rgba(0,149,218,0.35), transparent 60%),
    radial-gradient(360px circle at 10% 100%, rgba(0,212,170,0.2), transparent 60%);
  pointer-events: none;
}

.page-banner .container { position: relative; z-index: 1; }
.page-banner .hero-badge { margin: 0 auto var(--space-5); }

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.page-banner .banner-lead {
  font-size: var(--text-lg);
  color: var(--slate-300);
  max-width: 560px;
  margin: 0 auto var(--space-5);
  line-height: 1.7;
}

.page-banner .crumb {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.page-banner .crumb a { color: var(--slate-300); }
.page-banner .crumb a:hover { color: var(--blue-400); }

/* ---------- About page stat row ---------- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
}

.about-stat {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.about-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.about-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
}

.about-stat-icon svg { width: 22px; height: 22px; fill: var(--white); }
.about-stat-num { font-family: var(--font-heading); font-size: var(--text-2xl); font-weight: 700; color: var(--navy-800); }
.about-stat-label { font-size: var(--text-sm); color: var(--slate-500); margin-top: var(--space-1); }

/* ---------- Founder Spotlight ---------- */
.founder { background: var(--white); padding: var(--space-20) 0; }

.founder-card {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  background: linear-gradient(135deg, var(--slate-50), var(--white));
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}

.founder-avatar-lg {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--blue-500), var(--teal-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-3xl);
  flex-shrink: 0;
  box-shadow: 0 16px 32px -8px rgba(0,149,218,0.4);
}

.founder-copy h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: var(--space-3);
}

.founder-copy p { font-size: var(--text-base); line-height: 1.8; color: var(--slate-600); margin-bottom: var(--space-5); }

.founder-rating { display: flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; font-size: var(--text-sm); color: var(--slate-600); }
.founder-rating .rating-stars { color: var(--accent-gold); letter-spacing: 2px; font-size: var(--text-base); }
.founder-rating a { text-decoration: underline; }

/* ---------- Contact Page ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-lg);
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: var(--space-6);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
.form-field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate-600);
}

.form-field input, .form-field select, .form-field textarea {
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--slate-700);
  background: var(--slate-50);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}

.form-field textarea { resize: vertical; }

.contact-info-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  color: var(--slate-300);
}

.contact-info-card h2 {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-card ul { list-style: none; padding: 0; margin: 0 0 var(--space-6); }
.contact-info-card li { display: flex; gap: var(--space-4); margin-bottom: var(--space-4); align-items: flex-start; }
.contact-info-card li svg { width: 20px; height: 20px; fill: var(--blue-400); flex-shrink: 0; margin-top: 2px; }
.contact-info-card h4 { font-family: var(--font-heading); font-size: var(--text-sm); font-weight: 600; color: var(--white); margin-bottom: 2px; }
.contact-info-card p { font-size: var(--text-sm); color: var(--slate-400); margin: 0; }
.contact-info-card a { color: var(--slate-300); }
.contact-info-card a:hover { color: var(--blue-400); }

.map-embed { margin-top: var(--space-6); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-embed iframe { display: block; width: 100%; height: 220px; border: 0; filter: grayscale(30%) contrast(1.1); }

/* ---------- Subpage Responsive ---------- */
@media (max-width: 1024px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-banner h1 { font-size: var(--text-3xl); }
  .founder-card { flex-direction: column; text-align: center; padding: var(--space-8) var(--space-6); }
  .about-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: var(--space-6); }
}

/* ---------- Print ---------- */
@media print {
  .hero-ambient, .hero-scroll, .whatsapp-fab, .back-to-top,
  .brands-marquee, .testimonials-marquee, .hero-float-card { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  body { color: #000; background: #fff; }
  a { text-decoration: underline; color: #000; }
  .navbar { position: static; box-shadow: none; }
}
