/* ============================================
   VANS TYRES - Premium Automotive Website
   Mobile-First | Apollo Tyres Dealer | Khed
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --apollo-purple: #5A2D91;
  --apollo-purple-light: #7B4DB5;
  --apollo-purple-dark: #3D1D63;
  --apollo-purple-glow: rgba(90, 45, 145, 0.3);
  --apollo-purple-subtle: rgba(90, 45, 145, 0.08);

  --white: #FFFFFF;
  --off-white: #F8F7FC;
  --soft-silver: #E8E6EF;
  --light-gray: #F0EEF5;
  --medium-gray: #9B97A8;
  --dark-charcoal: #1A1625;
  --charcoal: #2D2640;
  --deep-dark: #0D0A14;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-purple: 0 8px 32px rgba(90, 45, 145, 0.25);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.3s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);
  --transition-slower: 0.8s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--dark-charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--deep-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(90, 45, 145, 0.2);
  border-top-color: var(--apollo-purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}

.preloader-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.1em;
  opacity: 0.8;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--apollo-purple);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--apollo-purple);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-charcoal);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--medium-gray);
  line-height: 1.7;
  max-width: 600px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Glassmorphism ---------- */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.glass-light {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(13, 10, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-brand {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--apollo-purple-light);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
  padding: 0.35rem 0.65rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.lang-btn.active {
  background: var(--apollo-purple);
  color: var(--white);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--apollo-purple);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--apollo-purple-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 10;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(13, 10, 20, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.4s; }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 10, 20, 0.97) 0%,
    rgba(13, 10, 20, 0.80) 25%,
    rgba(13, 10, 20, 0.60) 50%,
    rgba(13, 10, 20, 0.55) 75%,
    rgba(13, 10, 20, 0.50) 100%
  );
  z-index: -1;
}

.hero-content {
  width: 100%;
  padding-top: 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(90, 45, 145, 0.25);
  border: 1px solid rgba(90, 45, 145, 0.4);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--apollo-purple-light), #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-dealer {
  font-size: var(--text-base);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  flex: 1;
  min-width: fit-content;
}

.hero-stat-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-stat-info {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--apollo-purple);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(90, 45, 145, 0.4);
}

.btn-primary:hover {
  background: var(--apollo-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(90, 45, 145, 0.5);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--apollo-purple-subtle), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.about-content {
  max-width: 720px;
}

.about-text {
  font-size: var(--text-base);
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.about-highlight:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  background: var(--apollo-purple-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-highlight-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark-charcoal);
}

/* ========================================
   FOUNDER SECTION
   ======================================== */
.founder {
  background: var(--deep-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.founder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(90, 45, 145, 0.15), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.founder-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.founder-image-wrapper {
  position: relative;
}

.founder-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-width: 400px;
  margin: 0 auto;
}

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

.founder-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 10, 20, 0.4), transparent 50%);
  pointer-events: none;
}

.founder-image-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  text-align: center;
}

.founder-image-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.founder-image-role {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* Founder Story Content */
.founder-story .section-label {
  color: var(--apollo-purple-light);
}

.founder-story .section-label::before {
  background: var(--apollo-purple-light);
}

.founder-story .section-title {
  color: var(--white);
  font-size: var(--text-3xl);
}

.founder-story-intro {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.founder-story-text {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.founder-story-text strong {
  color: var(--white);
  font-weight: 600;
}

.founder-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}

.founder-principle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.founder-principle:hover {
  background: rgba(90, 45, 145, 0.15);
  border-color: rgba(90, 45, 145, 0.3);
}

.founder-principle-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--apollo-purple), var(--apollo-purple-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.founder-principle-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}

.founder-quote {
  position: relative;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(90, 45, 145, 0.15), rgba(90, 45, 145, 0.05));
  border-left: 3px solid var(--apollo-purple);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.founder-quote-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.founder-quote-author {
  font-size: var(--text-sm);
  color: var(--apollo-purple-light);
  font-weight: 600;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  background: var(--white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--apollo-purple), var(--apollo-purple-light));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  border-radius: var(--radius-lg);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-purple);
  border-color: var(--apollo-purple);
}

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

.service-card-content {
  position: relative;
  z-index: 1;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--apollo-purple-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-card-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--dark-charcoal);
  transition: color 0.4s var(--ease-out);
}

.service-card:hover .service-card-title {
  color: var(--white);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-us {
  background: var(--off-white);
  position: relative;
}

.why-us-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-us-header .section-subtitle {
  margin: 0 auto;
}

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

.why-us-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--soft-silver);
  transition: all 0.4s var(--ease-out);
  text-align: center;
}

.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--apollo-purple);
}

.why-us-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--apollo-purple), var(--apollo-purple-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  color: var(--white);
}

.why-us-card-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--dark-charcoal);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
  background: var(--deep-dark);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header .section-label {
  color: var(--apollo-purple-light);
}

.gallery-header .section-label::before {
  background: var(--apollo-purple-light);
}

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

.gallery-header .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 auto;
}

.gallery-masonry {
  columns: 2;
  column-gap: 0.75rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}

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

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 10, 20, 0.7), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews {
  background: var(--white);
  position: relative;
}

.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-header .section-subtitle {
  margin: 0 auto;
}

.reviews-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--apollo-purple), var(--apollo-purple-light));
  border-radius: var(--radius-xl);
  color: var(--white);
}

.reviews-overall-score {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: 1;
}

.reviews-overall-stars {
  font-size: var(--text-xl);
  letter-spacing: 0.1em;
}

.reviews-overall-count {
  font-size: var(--text-sm);
  opacity: 0.8;
}

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  margin-top: 0.5rem;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--soft-silver);
  transition: all var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--apollo-purple-light);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--apollo-purple), var(--apollo-purple-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
}

.review-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--dark-charcoal);
}

.review-date {
  font-size: var(--text-xs);
  color: var(--medium-gray);
}

.review-stars {
  font-size: var(--text-sm);
  color: #FBBF24;
}

.review-text {
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  background: var(--off-white);
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header .section-subtitle {
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--soft-silver);
  transition: all var(--transition-base);
  cursor: pointer;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--apollo-purple);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--apollo-purple), var(--apollo-purple-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-info {
  flex: 1;
}

.contact-card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--medium-gray);
  margin-bottom: 0.15rem;
}

.contact-card-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark-charcoal);
}

.contact-card-arrow {
  color: var(--medium-gray);
  font-size: var(--text-lg);
  transition: transform var(--transition-base);
}

.contact-card:hover .contact-card-arrow {
  transform: translateX(4px);
  color: var(--apollo-purple);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  aspect-ratio: 16 / 10;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--deep-dark);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-brand {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
}

.footer-logo-sub {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background: var(--apollo-purple);
  border-color: var(--apollo-purple);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul li a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-column ul li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-apollo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(90, 45, 145, 0.2);
  border: 1px solid rgba(90, 45, 145, 0.3);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--apollo-purple-light);
  margin-top: 1rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 1.25rem;
  z-index: 300;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: floatBounce 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

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

/* ========================================
   STICKY MOBILE BOTTOM NAV
   ======================================== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 350;
  display: flex;
  background: rgba(13, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
}

.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-xs);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav a:active {
  color: var(--white);
}

.mobile-bottom-nav .nav-icon {
  font-size: 1.25rem;
}

.mobile-bottom-nav .nav-call {
  background: var(--apollo-purple);
  color: var(--white);
  border-radius: var(--radius-md);
  margin: -0.25rem 0.25rem;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ========================================
   RESPONSIVE - TABLET (min-width: 640px)
   ======================================== */
@media (min-width: 640px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 5rem 0;
  }

  .section-title {
    font-size: var(--text-4xl);
  }

  .hero {
    align-items: center;
    padding-bottom: 0;
  }

  .hero-stats {
    flex-wrap: nowrap;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .gallery-masonry {
    columns: 3;
    column-gap: 1rem;
  }

  .gallery-item {
    margin-bottom: 1rem;
  }

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

  .contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

/* ========================================
   RESPONSIVE - DESKTOP (min-width: 1024px)
   ======================================== */
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }

  .section {
    padding: 7rem 0;
  }

  .section-title {
    font-size: var(--text-5xl);
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-content {
    max-width: 700px;
    padding-top: 0;
  }

  .hero-ctas .btn {
    padding: 1rem 2rem;
    font-size: var(--text-base);
  }

  /* Founder split layout */
  .founder-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }

  .founder-image-wrapper {
    flex: 0 0 380px;
    position: sticky;
    top: 120px;
  }

  .founder-story {
    flex: 1;
  }

  .founder-story .section-title {
    font-size: var(--text-4xl);
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  .mobile-bottom-nav {
    display: none;
  }

  .floating-whatsapp {
    bottom: 2rem;
    right: 2rem;
    width: 64px;
    height: 64px;
    font-size: 1.8rem;
  }
}

/* ========================================
   RESPONSIVE - LARGE DESKTOP (min-width: 1280px)
   ======================================== */
@media (min-width: 1280px) {
  .section {
    padding: 8rem 0;
  }

  .hero-title {
    font-size: var(--text-6xl);
  }

  .founder {
    padding: 8rem 0;
  }

  .founder-image-wrapper {
    flex: 0 0 440px;
  }

  .gallery-masonry {
    columns: 4;
    column-gap: 1.25rem;
  }
}

/* ---------- Stagger delay utility for children ---------- */
.stagger-children > * {
  transition-delay: calc(var(--i, 0) * 0.08s);
}

/* ---------- Print ---------- */
@media print {
  .navbar, .mobile-bottom-nav, .floating-whatsapp, .preloader, .lightbox {
    display: none !important;
  }
  .hero { min-height: auto; }
  body { color: #000; }
}
