
:root {
  --blue-deep: #0A2463;
  --blue-mid: #1a3d8a;
  --blue-bright: #2563EB;
  --blue-light: #E8F0FE;
  --gold: #F59E0B;
  --gold-dark: #D97706;
  --water: #38BDF8;
  --water-light: #E0F7FF;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --text-primary: #0F1B35;
  --text-secondary: #374151;
  --text-muted: #6B7280;
  --shadow-sm: 0 1px 3px rgba(10,36,99,0.08), 0 1px 2px rgba(10,36,99,0.04);
  --shadow-md: 0 4px 16px rgba(10,36,99,0.1), 0 2px 6px rgba(10,36,99,0.06);
  --shadow-lg: 0 20px 40px rgba(10,36,99,0.14), 0 8px 16px rgba(10,36,99,0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Tiro Devanagari Hindi', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── UTILITIES ─────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--blue-deep);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 50px; text-decoration: none;
  border: none; cursor: pointer; transition: all .25s;
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(245,158,11,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 50px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer; transition: all .25s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-bright); background: var(--blue-light);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 4vw, 38px);
  color: var(--text-primary); line-height: 1.25; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 580px; line-height: 1.75; }

/* ── NAVBAR ────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,36,99,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all .3s;
}
nav.scrolled { background: rgba(10,36,99,1); box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--water), var(--blue-bright));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
}
.nav-logo-text {
  font-family: var(--font-display); font-weight: 800;
  font-size: 15px; color: white; line-height: 1.25;
  display: flex; flex-direction: column;
}
.nav-logo-text span { color: var(--water); font-size: 12px; font-weight: 600; opacity: .9; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 8px 14px; border-radius: 8px; transition: all .2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-cta {
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  background: var(--gold); color: var(--blue-deep);
  padding: 10px 22px; border-radius: 50px; text-decoration: none;
  transition: all .25s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.9); font-family: var(--font-display);
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: color .2s;
}
.nav-phone:hover { color: var(--water); }
.nav-phone i { color: var(--water); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.hamburger span {
  width: 24px; height: 2px; background: white;
  border-radius: 2px; transition: all .3s;
}
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--blue-deep); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px 20px;
}
.mobile-menu a {
  font-family: var(--font-display); font-weight: 500; font-size: 16px;
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu-cta {
  margin-top: 14px;
  background: var(--gold) !important; color: var(--blue-deep) !important;
  text-align: center; border-radius: 50px; font-weight: 700 !important;
  border-bottom: none !important;
}

/* ── HERO ───────────────────────── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #061838 0%, #0A2463 45%, #1241a0 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 66px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(56,189,248,0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(37,99,235,0.2) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 80px 0 70px; position: relative; z-index: 1; width: 100%;
}
.hero-left {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(56,189,248,0.15); border: 1px solid rgba(56,189,248,0.3);
  color: var(--water); font-family: var(--font-display); font-weight: 600;
  font-size: 13px; letter-spacing: .06em; padding: 7px 16px;
  border-radius: 50px; margin-bottom: 22px;
}
.hero-badge i { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes fadeIn { 0%{opacity:0} 100%{opacity:1} }
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 5vw, 52px); color: white;
  line-height: 1.18; margin-bottom: 18px;
}
.hero-title .accent { color: var(--water); position: relative; }
.hero-title .gold { color: var(--gold); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); backdrop-filter: blur(8px);
}
.hero-trust-stat { text-align: center; }
.hero-trust-num { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--gold); }
.hero-trust-label { font-family: var(--font-display); font-size: 11px; color: rgba(255,255,255,0.6); }
.hero-trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* Owner Card */
.hero-right { display: flex; justify-content: center; align-items: center; }
.owner-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  padding: 20px;
  max-width: 360px; width: 100%;
  position: relative;
}
.owner-card::before {
  content: ''; position: absolute;
  top: -50px; right: -50px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(56,189,248,0.15), transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* Photo row — horizontal layout */
.owner-photo-row {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 14px 16px;
  margin-bottom: 16px; position: relative;
}
.owner-photo-circle {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.3), rgba(37,99,235,0.4));
  border: 2px solid rgba(56,189,248,0.4);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.owner-photo-circle i { font-size: 36px; color: var(--water); }
.owner-photo-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.owner-photo-meta { flex: 1; }
.owner-photo-meta .owner-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 16px; color: white; line-height: 1.2; margin-bottom: 3px;
}
.owner-photo-meta .owner-subtitle {
  font-family: var(--font-display); font-size: 12px;
  color: var(--water); line-height: 1.4; margin-bottom: 8px;
}
.owner-verified {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold); color: var(--blue-deep);
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  padding: 3px 9px; border-radius: 50px;
}

/* Rating strip inside card */
.owner-rating-strip {
  display: flex; align-items: center; justify-content: space-between;
  background: white; border-radius: 12px;
  padding: 10px 16px; margin-bottom: 14px;
}
.owner-rating-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.owner-rating-text {
  font-family: var(--font-display); font-size: 13px;
  color: var(--text-secondary);
}
.owner-rating-text strong { color: var(--text-primary); font-weight: 800; }
.owner-rating-google {
  width: 22px; height: 22px; border-radius: 50%;
  background: white; border: 1.5px solid #E5E7EB;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #4285F4;
}

/* Tags */
.owner-exp { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.owner-exp-tag {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 5px 12px;
  font-family: var(--font-display); font-size: 11px; color: rgba(255,255,255,0.85);
}
.owner-exp-tag i { color: var(--gold); font-size: 11px; }

/* CTA buttons */
.owner-contact-row { display: flex; gap: 10px; }
.owner-whatsapp, .owner-call {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 10px; border-radius: 12px; font-family: var(--font-display);
  font-weight: 700; font-size: 13px; text-decoration: none; transition: all .2s;
}
.owner-whatsapp { background: #25D366; color: white; }
.owner-whatsapp:hover { background: #20b859; transform: translateY(-2px); }
.owner-call { background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.2); }
.owner-call:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }


/* Owner hero photo — big portrait in card */
.owner-card {
  max-width: 400px !important;
  padding: 16px !important;
}
.owner-hero-photo-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, rgba(10,36,99,0.1), rgba(10,36,99,0.5));
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.owner-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.owner-hero-photo-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* remove old float badge */
.hero-float-badge { display: none; }



/* ── STATS SECTION PERFECT ALIGN FIX ─────────────────── */
#stats-bar {
  overflow: hidden;
}

.stats-inner {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 30px 20px !important;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: none !important;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  line-height: 1;
  margin-bottom: 18px;
}

.stat-label {
  line-height: 1.6;
  max-width: 120px;
}

@media (max-width: 768px) {

  .stats-inner {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stat-item {
    min-height: 160px;
    padding: 24px 16px !important;
    border-right: 1px solid rgba(255,255,255,0.12) !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  }

  .stat-item:nth-child(2n) {
    border-right: none !important;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none !important;
  }

  .stat-num {
    font-size: 28px !important;
  }

  .stat-label {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {

  .stat-item {
    min-height: 145px;
    padding: 20px 12px !important;
  }

  .stat-num {
    font-size: 24px !important;
  }

  .stat-label {
    font-size: 12px !important;
  }
}


/* ── STATS BAR ──────────────────── */
#stats-bar {
  background: var(--blue-deep); padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-inner { display: flex; justify-content: space-evenly; align-items: center; }
.stat-item {
  text-align: center; padding: 10px 60px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; padding-right: 0; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 32px; color: var(--gold); }
.stat-label { font-family: var(--font-display); font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }

/* ── ABOUT ──────────────────────── */
#about { padding: 90px 0; background: var(--off-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-col { position: relative; }
.about-main-img {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, var(--blue-light), rgba(56,189,248,0.2));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; border: 2px solid var(--blue-light);
}
.about-main-img i { font-size: 60px; color: var(--blue-bright); opacity: 0.6; }
.about-main-img p { font-family: var(--font-display); color: var(--text-muted); font-size: 14px; text-align: center; padding: 0 20px; }
.about-badge-card {
  position: absolute; bottom: -20px; right: -20px;
  background: white; border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.about-badge-card .num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--blue-deep); }
.about-badge-card .lbl { font-family: var(--font-display); font-size: 12px; color: var(--text-muted); }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 14px;
  background: white; border-radius: var(--radius-md);
  padding: 16px; border: 1px solid var(--gray-100);
  transition: all .2s; box-shadow: var(--shadow-sm);
}
.about-feat:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.about-feat-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; font-size: 18px; color: var(--blue-bright);
}
.about-feat-text h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-primary); margin-bottom: 3px; }
.about-feat-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── SERVICES ───────────────────── */
#services { padding: 90px 0; background: white; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.service-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 32px 26px;
  box-shadow: var(--shadow-sm); transition: all .3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--water));
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}
.ic-blue { background: var(--blue-light); color: var(--blue-bright); }
.ic-water { background: var(--water-light); color: #0EA5E9; }
.ic-gold { background: #FEF3C7; color: var(--gold-dark); }
.service-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--text-primary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 13px; color: var(--text-secondary);
}
.service-list li i { color: var(--blue-bright); font-size: 13px; }

/* ── PROCESS ─────────────────────── */
#process { padding: 90px 0; background: var(--blue-deep); }
#process .section-label { background: rgba(56,189,248,0.15); color: var(--water); border: 1px solid rgba(56,189,248,0.3); }
#process .section-title { color: white; }
#process .section-sub { color: rgba(255,255,255,0.65); }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, transparent, rgba(56,189,248,0.4), rgba(56,189,248,0.4), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--water));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 22px; color: white;
  margin: 0 auto 18px; box-shadow: 0 0 0 6px rgba(56,189,248,0.12);
}
.process-step h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: white; margin-bottom: 6px; }
.process-step p { font-family: var(--font-display); font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ── VIDEO SLIDESHOW ─────────────── */
#videos { padding: 90px 0; background: var(--gray-50); }
.video-slider-wrap { position: relative; margin-top: 50px; overflow: hidden; border-radius: var(--radius-xl); }
.video-slider { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.video-slide {
  min-width: 100%; position: relative;
  background: var(--blue-deep); border-radius: var(--radius-xl);
  overflow: hidden;
}
.video-thumb {
  width: 100%; aspect-ratio: 16/7; display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0A2463, #1a3d8a);
  position: relative; overflow: hidden; cursor: pointer;
}
.video-thumb-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,36,99,0.85), rgba(26,61,138,0.7));
}
.video-icon-content { position: relative; z-index: 2; text-align: center; color: white; }
.video-icon-content i { font-size: 56px; color: white; opacity: 0.9; margin-bottom: 14px; display: block; }
.video-play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--blue-deep); margin: 0 auto 16px;
  box-shadow: 0 0 0 12px rgba(245,158,11,0.2); cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.video-play-btn:hover { transform: scale(1.08); box-shadow: 0 0 0 16px rgba(245,158,11,0.25); }
.video-slide-caption {
  padding: 22px 28px;
  background: white; border-top: 1px solid var(--gray-100);
}
.video-slide-caption h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text-primary); margin-bottom: 5px; }
.video-slide-caption p { font-family: var(--font-display); font-size: 13px; color: var(--text-muted); }
.video-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: white; border: none; width: 44px; height: 44px;
  border-radius: 50%; box-shadow: var(--shadow-md); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--text-primary); transition: all .2s; z-index: 10;
}
.video-nav:hover { background: var(--blue-deep); color: white; }
.video-nav.prev { left: 16px; }
.video-nav.next { right: 16px; }
.video-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.video-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); cursor: pointer; transition: all .2s; }
.video-dot.active { background: var(--blue-bright); width: 24px; border-radius: 4px; }

/* ── REVIEWS ─────────────────────── */
#reviews { padding: 90px 0; background: white; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.review-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 28px 24px;
  box-shadow: var(--shadow-sm); transition: all .25s; position: relative;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px; color: white;
}
.av-blue { background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid)); }
.av-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.av-teal { background: linear-gradient(135deg, #0EA5E9, #0284C7); }
.av-green { background: linear-gradient(135deg, #10B981, #059669); }
.av-red { background: linear-gradient(135deg, #EF4444, #DC2626); }
.av-purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.review-meta h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-primary); }
.review-meta p { font-family: var(--font-display); font-size: 12px; color: var(--text-muted); }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.google-badge {
  position: absolute; top: 18px; right: 18px;
  display: flex; align-items: center; gap: 5px;
}
.google-badge img { width: 16px; height: 16px; }
.google-badge span { font-family: var(--font-display); font-size: 11px; color: var(--text-muted); }
.reviews-summary {
  margin-top: 40px; background: var(--blue-light); border-radius: var(--radius-lg);
  padding: 28px 32px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
}
.reviews-overall { text-align: center; }
.reviews-overall .big-num { font-family: var(--font-display); font-weight: 800; font-size: 48px; color: var(--blue-deep); }
.reviews-overall .big-stars { color: var(--gold); font-size: 20px; }
.reviews-overall p { font-family: var(--font-display); font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.reviews-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.rbar-row { display: flex; align-items: center; gap: 10px; }
.rbar-label { font-family: var(--font-display); font-size: 12px; color: var(--text-muted); width: 14px; text-align: right; }
.rbar-track { flex: 1; height: 7px; background: rgba(10,36,99,0.1); border-radius: 4px; overflow: hidden; }
.rbar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.rbar-count { font-family: var(--font-display); font-size: 12px; color: var(--text-muted); width: 20px; }
.reviews-cta { text-align: center; min-width: 180px; }
.google-review-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; border: 1.5px solid var(--gray-200);
  border-radius: 50px; padding: 12px 22px; text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--text-primary); transition: all .2s; box-shadow: var(--shadow-sm);
}
.google-review-btn:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.google-g {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  background: white; border: 1.5px solid var(--gray-200);
  color: #4285F4;
}

/* ── WHY CHOOSE ─────────────────── */
#why { padding: 90px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 50px; }
.why-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-sm); display: flex; gap: 18px; align-items: flex-start;
  transition: all .25s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.why-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text-primary); margin-bottom: 6px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── GALLERY: OUR WORK ────────────── */
#gallery {
  padding: 90px 0;
  background: var(--off-white);
}

.gallery-collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
  align-items: start;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  aspect-ratio: 1 / 1;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

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

/* Remove broken manual spans */
.gallery-large,
.gallery-medium,
.gallery-small {
  grid-column: auto !important;
  grid-row: auto !important;
}

.gallery-item:nth-child(n) {
  grid-column: auto !important;
  grid-row: auto !important;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,36,99,0.05) 0%,
    rgba(10,36,99,0.78) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity .3s ease;
}

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

.overlay-content {
  color: white;
  width: 100%;
}

.overlay-content i {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--water);
}

.overlay-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.overlay-content p {
  font-size: 13px;
  line-height: 1.5;
  opacity: .92;
}

@media (max-width: 768px) {
  .gallery-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 520px) {
  .gallery-collage {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .overlay-content h3 { font-size: 13px; }
  .overlay-content p { font-size: 11px; }
  .overlay-content i { font-size: 18px; }
}

/* ── CONTACT ─────────────────────── */
#contact { padding: 90px 0; background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 50px; }
.contact-info { }
.contact-info-card {
  background: var(--blue-deep); border-radius: var(--radius-xl);
  padding: 36px; color: white;
}
.contact-info-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: white; margin-bottom: 8px; }
.contact-info-card p { font-family: var(--font-display); font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(56,189,248,0.15); border: 1px solid rgba(56,189,248,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--water);
}
.contact-item-text span { font-family: var(--font-display); font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 2px; }
.contact-item-text a, .contact-item-text p {
  font-family: var(--font-display); font-weight: 600; font-size: 16px; color: white;
  text-decoration: none;
}
.contact-item-text a:hover { color: var(--water); }
.contact-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: white; border-radius: 50px;
  padding: 14px 24px; font-family: var(--font-display); font-weight: 700; font-size: 15px;
  text-decoration: none; margin-top: 24px; transition: all .2s;
}
.contact-wa-btn:hover { background: #20b859; transform: translateY(-2px); }

/* Contact Form */
.contact-form-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl); padding: 36px; box-shadow: var(--shadow-md);
}
.contact-form-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--text-primary); margin-bottom: 6px; }
.contact-form-card p { font-family: var(--font-display); font-size: 14px; color: var(--text-muted); margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-group label { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px;
  color: var(--text-primary); transition: all .2s; outline: none; background: var(--gray-50);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue-bright); background: white;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%; padding: 15px; background: var(--blue-deep); color: white;
  border: none; border-radius: 50px; font-family: var(--font-display);
  font-weight: 700; font-size: 16px; cursor: pointer; transition: all .25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,0.3); }

/* ── FOOTER ──────────────────────── */
footer {
  background: var(--text-primary); color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-family: var(--font-display); font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--water); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 15px; text-decoration: none; transition: all .2s;
}
.social-btn:hover { background: var(--blue-bright); color: white; border-color: var(--blue-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-family: var(--font-display); font-size: 13px; }

/* ── FLOATING CTA ───────────────── */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px; border-radius: 50px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all .25s; box-shadow: var(--shadow-lg);
}
.float-wa { background: #25D366; color: white; }
.float-wa:hover { background: #20b859; transform: translateY(-2px); }
.float-call { background: var(--blue-deep); color: white; }
.float-call:hover { background: var(--blue-bright); transform: translateY(-2px); }

/* ── ANIMATIONS ─────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── RESPONSIVE ─────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 50px 0 60px; }
  .hero-right { order: -1; }
  .owner-card { max-width: 100%; }
  .owner-photo-row { padding: 12px 14px; }
  .owner-photo-circle { width: 60px; height: 60px; }
  .owner-photo-circle i { font-size: 28px; }
  .owner-photo-meta .owner-name { font-size: 14px; }
  .owner-photo-meta .owner-subtitle { font-size: 11px; }
  .hero-title { font-size: 26px; }
  .hero-trust { flex-wrap: wrap; gap: 10px; justify-content: center; }
  .hero-trust-divider { display: none; }

  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-card { right: 10px; bottom: -15px; }

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; text-align: center; gap: 24px; }
  .reviews-bars { width: 100%; }

  .why-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { text-align: center; justify-content: center; }

  .float-cta { bottom: 16px; right: 16px; }
  .float-btn { padding: 11px 16px; font-size: 13px; }

  .video-nav { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE HERO FIXES ─────────────────── */
@media (max-width: 768px) {

  html, body {
    width: 100%;
    overflow-x: hidden !important;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  #hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 24px 0 40px !important;
  }

  .hero-left,
  .hero-right {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-right {
    order: -1;
    justify-content: center;
  }

  .owner-card {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto;
    padding: 14px !important;
  }

  .owner-hero-photo-wrap {
    aspect-ratio: 3 / 4 !important;
    border-radius: 18px;
    overflow: hidden;
  }

  .owner-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .hero-title {
    font-size: 34px !important;
    line-height: 1.2 !important;
  }

  .hero-desc {
    font-size: 15px !important;
    line-height: 1.8;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
  }

  .hero-trust-divider {
    display: none !important;
  }

  .hero-trust-stat {
    width: 100%;
  }

  .float-cta {
    right: 12px !important;
    bottom: 12px !important;
  }

  .float-btn {
    padding: 10px 14px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 480px) {

  .hero-title {
    font-size: 30px !important;
  }

  .owner-card {
    max-width: 100% !important;
  }

  .owner-rating-strip {
    padding: 10px 12px;
    gap: 8px;
  }

  .owner-contact-row {
    flex-direction: column;
  }

  .stats-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
}

/* ── PREMIUM GALLERY LIGHTBOX ─────────────────── */

.gallery-lightbox,
.lightbox,
.image-popup,
.gallery-popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: fadeIn .35s ease;
}

/* IMAGE */
.gallery-lightbox img,
.lightbox img,
.image-popup img,
.gallery-popup img {
  width: auto !important;
  height: auto !important;
  max-width: 68vw !important;
  max-height: 88vh !important;
  object-fit: contain !important;
  border-radius: 26px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
}

/* CLOSE BUTTON */
.lightbox-close,
.gallery-close,
.popup-close {
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;

  width: 72px !important;
  height: 72px !important;

  border-radius: 22px !important;

  background: rgba(0,0,0,0.45) !important;
  backdrop-filter: blur(14px);

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: white !important;
  font-size: 42px !important;

  cursor: pointer;
  z-index: 999999 !important;

  transition: all .25s ease;
}

.lightbox-close:hover,
.gallery-close:hover,
.popup-close:hover {
  transform: scale(1.06);
  background: rgba(255,255,255,0.12) !important;
}

/* ARROWS */
.lightbox-prev,
.lightbox-next,
.gallery-prev,
.gallery-next {
  position: fixed !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  width: 86px !important;
  height: 86px !important;

  border-radius: 24px !important;

  background: rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(14px);

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: white !important;
  font-size: 46px !important;

  cursor: pointer;
  z-index: 999999 !important;

  transition: all .25s ease;
}

.lightbox-prev,
.gallery-prev {
  left: 28px !important;
}

.lightbox-next,
.gallery-next {
  right: 28px !important;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.gallery-prev:hover,
.gallery-next:hover {
  background: rgba(255,255,255,0.16) !important;
  transform: translateY(-50%) scale(1.05);
}

/* COUNTER */
.lightbox-counter,
.gallery-counter {
  position: fixed !important;
  bottom: 24px !important;
  left: 50% !important;
  transform: translateX(-50%);

  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);

  color: white;
  padding: 12px 24px;

  border-radius: 50px;

  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;

  z-index: 999999;
}

/* MOBILE */
@media (max-width: 768px) {

  .gallery-lightbox img,
  .lightbox img,
  .image-popup img,
  .gallery-popup img {
    max-width: 82vw !important;
    max-height: 80vh !important;
    border-radius: 20px;
  }

  .lightbox-prev,
  .lightbox-next,
  .gallery-prev,
  .gallery-next {
    width: 62px !important;
    height: 62px !important;
    font-size: 34px !important;
    border-radius: 18px !important;
  }

  .lightbox-prev,
  .gallery-prev {
    left: 8px !important;
  }

  .lightbox-next,
  .gallery-next {
    right: 8px !important;
  }

  .lightbox-close,
  .gallery-close,
  .popup-close {
    width: 56px !important;
    height: 56px !important;
    font-size: 32px !important;
    top: 8px !important;
    right: 8px !important;
    border-radius: 18px !important;
  }
}
/* VIDEO FILE STYLING */

.custom-video{
  width:100%;
  max-height:520px;
  height:auto;
  display:block;
  background:#000;
  object-fit:contain;
  border-radius:24px 24px 0 0;
}

.video-slide{
  overflow:hidden;
  border-radius:24px;
  background:#fff;
}

.video-slide video{
  width:100%;
  height:auto;
  display:block;
}

@media(max-width:768px){

  .custom-video{
    max-height:260px;
    border-radius:18px 18px 0 0;
  }

}

