/* ═══════════════════════════════════════════════
   SURAJ RADIATOR ENTERPRISE — Corporate Light Theme
   Clean · Professional · Simple & Soft
═══════════════════════════════════════════════ */

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── Variables ── */
:root {
  --orange:       #f59e0b;
  --orange-dark:  #d97706;
  --orange-light: #fbbf24;
  --navy:         #0f2340;
  --navy-2:       #162d4a;
  --navy-3:       #1e3a5f;
  --navy-4:       #2d5070;
  --slate:        #64748b;
  --slate-2:      #94a3b8;
  --slate-3:      #cbd5e1;
  --white:        #ffffff;
  --bg-light:     #f8fafc;
  --bg-soft:      #f0f5ff;
  --border:       rgba(15,35,64,0.08);
  --border-light: #e2e8f0;
  --green:        #22c55e;
  --wa-green:     #25d366;
  --radius:       1rem;
  --radius-sm:    0.75rem;
  --radius-xs:    0.5rem;
  --shadow:       0 2px 16px rgba(15,35,64,0.07);
  --shadow-md:    0 4px 24px rgba(15,35,64,0.1);
  --shadow-lg:    0 8px 40px rgba(15,35,64,0.14);
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: #1e293b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { color: var(--orange); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; }
address { font-style: normal; }

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Header — White Corporate ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 12px rgba(15,35,64,0.06);
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
  background: var(--navy);
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.top-pill {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--orange-light);
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 600;
}
.top-bar-right { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.top-bar-right a { color: var(--slate-3); font-size: 0.78rem; transition: color var(--transition); }
.top-bar-right a:hover { color: var(--orange-light); }
.top-call { color: var(--orange-light) !important; font-weight: 700 !important; }

/* Nav */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img { width: 42px; height: 42px; border-radius: 10px; }
.logo-text {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 0.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xs);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: #475569;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--bg-light); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 0.52rem 1.2rem !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 2px 12px rgba(245,158,11,0.3) !important;
}
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,158,11,0.4) !important; }
.nav-admin-link { font-size: .78rem !important; color: #94a3b8 !important; padding: .35rem .6rem !important; border-radius: .35rem !important; opacity: .7; letter-spacing: .01em; }
.nav-admin-link:hover { opacity: 1; color: var(--navy) !important; background: #f1f5f9 !important; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); color: var(--navy); box-shadow: 0 6px 24px rgba(245,158,11,0.35); }
.btn-glow { box-shadow: 0 4px 20px rgba(245,158,11,0.35); }
.btn-glow:hover { box-shadow: 0 8px 32px rgba(245,158,11,0.55); }

.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.08);
  color: var(--orange-dark);
  border: 1.5px solid rgba(245,158,11,0.35);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: background var(--transition), border-color var(--transition);
}
.btn-review:hover { background: rgba(245,158,11,0.15); border-color: var(--orange); color: var(--orange-dark); }

.btn-corporate {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(30,58,95,0.07);
  border: 1.5px solid rgba(30,58,95,0.2);
  color: var(--navy-3);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}
.btn-corporate:hover { background: rgba(30,58,95,0.12); border-color: var(--navy-3); color: var(--navy); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--slate);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  transition: color var(--transition);
}
.btn-ghost:hover { color: var(--navy); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--navy-2);
  border: 2px solid var(--border-light);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--orange); background: rgba(245,158,11,0.04); color: var(--orange-dark); box-shadow: 0 2px 12px rgba(245,158,11,0.15); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }

.btn-wa-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wa-green);
  color: white;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-wa-cta:hover { background: #128c7e; transform: translateY(-2px); color: white; box-shadow: 0 6px 24px rgba(37,211,102,0.3); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  transition: color var(--transition);
  text-decoration: none;
}
.btn-ghost-light:hover { color: white; }

.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,0.08);
  color: var(--orange-dark);
  border: 1px solid rgba(245,158,11,0.25);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-sm:hover { background: rgba(245,158,11,0.18); color: var(--orange-dark); }

.btn-text {
  background: none;
  color: var(--slate);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  transition: color var(--transition);
}
.btn-text:hover { color: var(--navy-2); }
.full-width { width: 100%; justify-content: center; }

/* ── HERO — Clean Corporate ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f0f5ff 55%, #e8f0fe 100%);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,35,64,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,35,64,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb-1 { width: 550px; height: 550px; background: rgba(245,158,11,0.1); top: -180px; right: -120px; }
.orb-2 { width: 380px; height: 380px; background: rgba(99,130,220,0.08); bottom: -80px; left: -80px; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--orange-dark);
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.badge-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { color: var(--slate); font-size: 1.05rem; max-width: 520px; margin-bottom: 2rem; line-height: 1.75; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.stat-pill { display: flex; flex-direction: column; }
.stat-pill strong { font-size: 1.9rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-pill span { font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1; display: inline; }
.stat-pill small { font-size: 0.73rem; color: var(--slate); font-weight: 500; margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border-light); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-card-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(15,35,64,0.06);
  position: relative;
}
.hero-card-main img { width: 100%; height: 440px; object-fit: cover; }
.hero-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,20,40,0.95) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
}
.response-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  backdrop-filter: blur(10px);
}
.resp-icon { font-size: 1.8rem; }
.response-badge strong { display: block; color: var(--orange-light); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.response-badge p { color: white; font-size: 1.05rem; font-weight: 800; margin: 0.15rem 0 0; }
.response-badge small { color: rgba(255,255,255,0.65); font-size: 0.76rem; }

.hero-float-cards { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.float-card {
  flex: 1;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}
.float-card span { font-size: 1.75rem; }
.float-card strong { display: block; color: var(--navy); font-size: 1.1rem; font-weight: 800; }
.float-card small { color: var(--slate); font-size: 0.75rem; }

/* ── STATS COUNTER SECTION ── */
.stats-section {
  background: var(--navy);
  padding: 3.5rem 2rem;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item { padding: 1.5rem 1rem; }
.stat-item .stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item .stat-label {
  font-size: 0.88rem;
  color: var(--slate-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-item .stat-sub {
  font-size: 0.78rem;
  color: var(--slate-2);
  margin-top: 0.25rem;
}

/* ── WHY STRIP ── */
.why-strip {
  background: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 2rem;
}
.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.why-inner::-webkit-scrollbar { display: none; }
.why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  flex-shrink: 0;
}
.why-icon {
  width: 44px; height: 44px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-dark);
  flex-shrink: 0;
}
.why-item div { display: flex; flex-direction: column; gap: 0.1rem; }
.why-item strong { color: var(--navy); font-size: 0.93rem; font-weight: 700; line-height: 1.2; }
.why-item span { color: var(--slate); font-size: 0.74rem; }
.why-divider { width: 1px; height: 40px; background: var(--border-light); flex-shrink: 0; }

/* ── HOW IT WORKS ── */
.hiw-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 2rem;
  margin-bottom: 3rem;
}
.hiw-step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.hiw-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.hiw-icon-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  border: 2px solid rgba(245,158,11,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.hiw-step:hover .hiw-icon-ring {
  background: rgba(245,158,11,0.22);
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(245,158,11,0.1);
}
.hiw-step h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.hiw-step p { font-size: 0.85rem; color: var(--slate-2); line-height: 1.65; }
.hiw-arrow {
  color: var(--orange);
  font-size: 1.4rem;
  padding: 0 0.5rem;
  align-self: center;
  margin-top: -2rem;
  opacity: 0.5;
  flex-shrink: 0;
}
.hiw-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 2rem;
}

/* ── FLOATING ACTION BUTTONS ── */
.fab-wrap {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 1200;
}
.fab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 32px rgba(0,0,0,0.25); }
.fab svg { flex-shrink: 0; }
.fab-call { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: var(--navy); }
.fab-wa { background: linear-gradient(135deg, #25d366, #128c5e); color: #fff; }
.fab-label { letter-spacing: 0.02em; }
@media (max-width: 480px) {
  .fab-wrap { bottom: 1.25rem; right: 1rem; gap: 0.65rem; }
  .fab { padding: 0.7rem 1rem; font-size: 0.82rem; }
  .fab-label { display: none; }
  .fab { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: white;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
  overflow: hidden;
}
.trust-label {
  text-align: center;
  color: var(--slate);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.trust-ticker { overflow: hidden; }
.trust-track {
  display: flex;
  gap: 2.5rem;
  animation: ticker 55s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.trust-track span {
  color: var(--slate);
  font-size: 0.88rem;
  font-weight: 600;
  flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.dark-section {
  background: var(--navy);
  max-width: none;
  margin: 0;
  padding: 5rem 0;
}
.dark-section > * { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 2rem; padding-right: 2rem; }
.dark-section .section-label, .dark-section .section-title, .dark-section .section-sub { max-width: 1280px; }

.alt-section {
  background: var(--bg-light);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.section-label::before { content: ''; display: block; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-label.light { color: var(--orange-light); }
.section-label.light::before { background: var(--orange-light); }

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.section-title.light { color: white; }
.section-sub { color: var(--slate); max-width: 600px; font-size: 1rem; margin-bottom: 3rem; line-height: 1.75; }
.section-sub.light { color: var(--slate-2); }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ── FILMSTRIP ── */
.filmstrip-section {
  background: var(--bg-light);
  padding: 2rem 0 2.5rem;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}
.filmstrip-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
}
.fs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--orange-dark);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.fs-sub { font-size: 0.75rem; color: var(--slate); }
.filmstrip-wrap {
  overflow: hidden;
  cursor: grab;
  position: relative;
}
.filmstrip-wrap::before,
.filmstrip-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.filmstrip-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-light), transparent); }
.filmstrip-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg-light), transparent); }

.filmstrip-track {
  display: flex;
  gap: 1rem;
  padding: 0 1rem;
  animation: filmRoll 30s linear infinite;
  width: max-content;
  will-change: transform;
}
.filmstrip-wrap:hover .filmstrip-track { animation-play-state: paused; }
@keyframes filmRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.fs-slide {
  width: 300px; height: 195px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fs-slide:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(0,0,0,0.2); z-index: 1; }
.fs-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,20,40,0.88) 0%, transparent 100%);
  padding: 1.5rem 1rem 0.75rem;
}
.fs-overlay span { color: white; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; }

/* ── BLOG CAROUSEL ── */
.blog-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  position: relative;
}
.bc-viewport { flex: 1; overflow: hidden; border-radius: var(--radius); }
.bc-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.bc-card {
  flex: 0 0 calc(33.333% - 0.84rem);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.bc-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.bc-card-img { width: 100%; height: 175px; object-fit: cover; display: block; }
.bc-card-img-placeholder {
  width: 100%; height: 175px;
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(30,58,95,0.15));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.bc-card-body { padding: 1.25rem; }
.bc-card-date { font-size: 0.73rem; color: var(--slate-2); margin-bottom: 0.4rem; }
.bc-card-title { font-size: 0.98rem; font-weight: 700; color: white; margin-bottom: 0.5rem; line-height: 1.35; }
.bc-card-summary { font-size: 0.84rem; color: var(--slate-2); line-height: 1.65; }
.bc-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  z-index: 2;
}
.bc-arrow:hover { background: var(--orange); border-color: var(--orange); }
.bc-arrow:disabled { opacity: 0.25; cursor: not-allowed; }
.bc-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; padding: 0 2rem; }
.bc-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; cursor: pointer; transition: background var(--transition), width var(--transition); padding: 0; }
.bc-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ── Glass Card ── */
.glass-card {
  background: white;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

/* ── About Grid ── */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.about-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.acard-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.about-card h3 { font-size: 1.02rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.about-card p { color: var(--slate); font-size: 0.88rem; line-height: 1.7; }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.25rem;
  padding: 0 2rem;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { border-color: rgba(245,158,11,0.28); background: rgba(245,158,11,0.05); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.svc-num { font-size: 0.7rem; font-weight: 700; color: var(--slate-2); letter-spacing: 0.1em; margin-bottom: 0.75rem; opacity: 0.6; }
.svc-icon { font-size: 1.9rem; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 0.93rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.84rem; color: var(--slate-2); line-height: 1.65; }

/* ── Gallery Preview ── */
.gallery-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1rem; }
.gallery-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow-lg); }
.gallery-card img { width: 100%; height: 185px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card .card-body { padding: 0.85rem 1rem; }
.gallery-card h3 { margin: 0 0 0.25rem; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.gallery-card p { margin: 0; color: var(--slate); font-size: 0.8rem; }

/* ── Blog Preview ── */
.blog-preview-grid { display: grid; gap: 1rem; padding: 0 2rem; }
.blog-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
  transition: border-color var(--transition), background var(--transition);
}
.blog-card:hover { border-color: rgba(245,158,11,0.22); background: rgba(245,158,11,0.03); }
.blog-card h3 { font-size: 0.98rem; font-weight: 700; color: white; margin-bottom: 0.35rem; }
.blog-card p { font-size: 0.85rem; color: var(--slate-2); }
.blog-card img { width: 100px; height: 72px; object-fit: cover; border-radius: var(--radius-xs); flex-shrink: 0; }

/* ── Reviews / Testimonials ── */
.reviews-cta-bar {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--slate);
}
.review-link { color: var(--orange-dark); font-weight: 600; }
.review-link:hover { color: var(--orange); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.tcard {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.featured-tcard { background: var(--navy-2); border-color: rgba(245,158,11,0.25); }
.tcard-stars { font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.tcard p { font-size: 0.9rem; line-height: 1.7; color: var(--slate); margin-bottom: 1.25rem; font-style: italic; }
.featured-tcard p { color: var(--slate-2); }
.tcard footer { display: flex; flex-direction: column; gap: 0.2rem; }
.tcard strong { font-size: 0.88rem; color: var(--navy); font-weight: 700; }
.featured-tcard strong { color: white; }
.tcard cite { font-size: 0.78rem; color: var(--orange-dark); font-style: normal; }

/* ── FAQ ── */
.faq-grid { display: grid; gap: 0.75rem; padding: 0 2rem; }
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(245,158,11,0.28); }
.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.93rem;
  transition: color var(--transition);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--orange); font-weight: 300; transition: transform var(--transition); flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.25rem; color: var(--slate-2); font-size: 0.88rem; line-height: 1.75; }

/* ── Locations ── */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.location-card {
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.loc-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.loc-badge {
  display: inline-block;
  background: rgba(245,158,11,0.1);
  color: var(--orange-dark);
  border: 1px solid rgba(245,158,11,0.25);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.loc-badge.secondary { background: rgba(14,165,233,0.1); color: #0369a1; border-color: rgba(14,165,233,0.25); }
.location-card h3 { font-size: 1.18rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.location-card address { color: var(--slate); font-size: 0.87rem; line-height: 1.8; margin-bottom: 1.25rem; }
.loc-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.contact-card { background: var(--navy) !important; border: 1px solid rgba(245,158,11,0.15) !important; }
.contact-card h3 { color: white; }
.contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact-list li a { color: var(--slate-2); font-size: 0.9rem; transition: color var(--transition); }
.contact-list li a:hover { color: var(--orange-light); }
.gst-tag { font-size: 0.75rem; color: var(--slate); background: var(--bg-light); padding: 0.4rem 0.8rem; border-radius: var(--radius-xs); display: inline-block; border: 1px solid var(--border-light); }

/* ── CTA Section ── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 50%, #0a1628 100%);
  overflow: hidden;
}
.cta-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.o1 { width: 500px; height: 500px; background: rgba(245,158,11,0.1); top: -200px; right: -100px; }
.o2 { width: 350px; height: 350px; background: rgba(99,130,220,0.07); bottom: -100px; left: -50px; }
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.cta-icon-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.cta-inner h2 { font-size: clamp(1.75rem, 3.8vw, 2.6rem); font-weight: 900; color: white; margin-bottom: 1rem; }
.cta-inner > p { color: var(--slate-2); font-size: 1rem; margin-bottom: 2.5rem; line-height: 1.75; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 1rem; }
.cta-note { color: var(--slate-2); font-size: 0.8rem; }

/* ── Footer ── */
.site-footer { background: #050c18; border-top: 1px solid rgba(245,158,11,0.1); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; text-decoration: none; }
.footer-logo img { width: 44px; height: 44px; border-radius: 10px; }
.footer-logo span { font-size: 1rem; font-weight: 800; color: white; line-height: 1.25; }
.footer-logo small { font-size: 0.68rem; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 400; }
.footer-brand p { color: var(--slate); font-size: 0.85rem; line-height: 1.7; margin-bottom: 0.75rem; }
.gst-footer { font-size: 0.73rem; color: var(--slate); }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-2);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-socials a:hover { background: var(--orange); color: var(--navy); border-color: var(--orange); }
.footer-col h4 { color: white; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col li { color: var(--slate); font-size: 0.85rem; }
.footer-col a { color: var(--slate); transition: color var(--transition); }
.footer-col a:hover { color: var(--orange-light); }
.footer-contact { margin-bottom: 1.5rem; }
.footer-address { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-address strong { color: var(--slate-3); font-size: 0.78rem; }
.footer-address address { color: var(--slate); font-size: 0.8rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--slate);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.back-top { color: var(--slate); transition: color var(--transition); }
.back-top:hover { color: var(--orange-light); }

/* ── Modal ── */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: flex-start;
  background: rgba(5,12,24,0.8);
  padding: 1rem;
  padding-top: max(1rem, env(safe-area-inset-top));
  z-index: 500;
  backdrop-filter: blur(8px);
  overflow-y: auto;
}
.modal.open { display: flex; }
.modal-content {
  max-width: 480px;
  width: 100%;
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  margin: auto;
  animation: modalSlide 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
@keyframes modalSlide { from{opacity:0;transform:translateY(24px) scale(0.96)} to{opacity:1;transform:none} }
.close-modal {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  border: none;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--slate);
  transition: background var(--transition);
  line-height: 1;
}
.close-modal:hover { background: var(--border-light); color: var(--navy); }
.modal-header-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.modal-header-logo img { width: 36px; height: 36px; border-radius: 8px; }
.modal-header-logo span { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.modal-content h2 { font-size: 1.28rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.modal-subtitle { color: var(--slate); font-size: 0.85rem; margin-bottom: 1.5rem; line-height: 1.65; }

/* Form */
form { display: grid; gap: 0.85rem; }
label { font-weight: 600; font-size: 0.83rem; color: var(--navy); }
.req { color: #ef4444; }
input, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  background: var(--bg-light);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
  background: white;
}
textarea { resize: vertical; }
.field-note { font-size: 0.76rem; color: var(--slate); margin-top: -0.4rem; }
.optional-tag { font-size: 0.7rem; color: var(--slate-2); font-weight: 400; margin-left: 0.3rem; }

/* Upload Drop Zone */
.upload-drop-zone {
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.upload-drop-zone.drag-over, .upload-drop-zone:hover { border-color: var(--orange); background: rgba(245,158,11,0.04); }
.udz-inner { pointer-events: none; }
.udz-icon { font-size: 2rem; margin-bottom: .4rem; }
.udz-title { margin: 0 0 .2rem; font-weight: 700; color: var(--navy); font-size: .9rem; }
.udz-sub { margin: 0 0 .9rem; color: var(--slate); font-size: .76rem; line-height: 1.5; }
.udz-btn {
  pointer-events: all;
  display: inline-block;
  background: var(--orange);
  color: var(--navy);
  font-weight: 700;
  font-size: .8rem;
  padding: .5rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity .15s;
}
.udz-btn:hover { opacity: .85; }
.upload-file-list { display: grid; gap: .4rem; margin-top: .6rem; }
.upload-file-row {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .75rem;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: .4rem;
  font-size: .82rem;
}
.uf-icon { font-size: 1rem; flex-shrink: 0; }
.uf-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--navy); font-weight: 500; }
.uf-size { color: var(--slate-2); font-size: .73rem; flex-shrink: 0; white-space: nowrap; }
.uf-remove { background: none; border: none; cursor: pointer; color: var(--slate-2); font-size: .85rem; padding: .1rem .3rem; border-radius: .25rem; flex-shrink: 0; }
.uf-remove:hover { background: #fee2e2; color: #dc2626; }
.upload-counter { font-size: .76rem; color: #475569; margin-top: .3rem; font-weight: 500; }

.otp-how {
  display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap;
  margin-top: 1rem; font-size: 0.73rem; color: var(--slate);
  background: var(--bg-light); padding: 0.7rem 0.9rem;
  border-radius: var(--radius-xs);
}
.otp-how strong { color: var(--navy); margin-right: 0.25rem; }
.otp-how span { background: white; border: 1px solid var(--border-light); padding: 0.2rem 0.5rem; border-radius: 4px; font-weight: 500; }
.otp-sent-visual { text-align: center; padding: 1.5rem 0; margin-bottom: 1.25rem; }
.otp-envelope { font-size: 3rem; margin-bottom: 0.5rem; animation: bounce 1s ease; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.otp-sent-visual p { color: var(--slate); font-size: 0.9rem; margin-bottom: 0.25rem; }
.otp-sent-visual strong { color: var(--navy); font-size: 1rem; }
.otp-input { font-size: 2rem; text-align: center; letter-spacing: 0.5em; font-weight: 800; color: var(--navy); padding: 1rem; }
.success-step { text-align: center; padding: 1rem 0; }
.success-anim { font-size: 4rem; margin-bottom: 1.25rem; animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn { from{transform:scale(0)} to{transform:scale(1)} }
.success-step h2 { color: var(--navy); margin-bottom: 0.75rem; }
.success-step p { color: var(--slate); font-size: 0.9rem; line-height: 1.65; margin-bottom: 0.5rem; }
.success-urgent a { color: var(--orange-dark); font-weight: 600; }
.modal-note { font-size: 0.73rem; color: var(--slate-2); text-align: center; margin: 1rem 0 0; }

/* ── Google Reviews ── */
.google-rating-bar {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  background: white; border: 1.5px solid var(--border-light);
  border-radius: var(--radius); padding: 1.25rem 1.75rem;
  margin-bottom: 2rem; box-shadow: var(--shadow);
}
.grb-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.google-logo { height: 22px; width: auto; }
.grb-score { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.grb-number { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.grb-stars { display: flex; gap: 2px; }
.grb-count { font-size: 0.8rem; color: var(--slate); }
.grb-write-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: white; color: var(--navy);
  border: 1.5px solid var(--border-light);
  padding: 0.65rem 1.25rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.grb-write-btn:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(245,158,11,0.15); color: var(--navy); }
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.gr-card {
  background: white; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.gr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gr-card-featured { border-color: rgba(245,158,11,0.35); box-shadow: 0 4px 24px rgba(245,158,11,0.1); }
.gr-card-header, .gr-avatar-row { display: flex; align-items: center; gap: 0.75rem; }
.gr-google-logo { height: 16px; width: auto; margin-left: auto; opacity: 0.7; }
.gr-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.gr-info { display: flex; flex-direction: column; }
.gr-info strong { font-size: 0.9rem; color: var(--navy); font-weight: 700; }
.gr-date { font-size: 0.73rem; color: var(--slate); }
.gr-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 1px; }
.gr-card p { font-size: 0.87rem; color: var(--slate); line-height: 1.68; margin: 0; flex: 1; }
.gr-service-tag {
  display: inline-block;
  background: #f0f9ff; color: #0369a1;
  border: 1px solid #bae6fd;
  font-size: 0.7rem; font-weight: 600;
  padding: 0.2rem 0.65rem; border-radius: 999px; align-self: flex-start;
}
.gr-add-card {
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  border-color: rgba(245,158,11,0.25);
  align-items: center; text-align: center; justify-content: center;
}
.gr-add-icon { font-size: 2.5rem; }
.gr-add-card h3 { color: var(--navy); font-size: 1rem; margin: 0; }
.gr-add-card p { text-align: center; }
.google-map-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border-light);
}
.map-header {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.25rem; background: white;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.87rem; font-weight: 600; color: var(--navy);
}

/* ── OTP modal branded header (inside padded modal-content) ── */
.otp-modal-content { overflow: hidden; }
.otp-modal-header {
  display: flex; align-items: center; gap: 0.75rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  margin: -2rem -2rem 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem 1.5rem 0 0;
}
.otp-modal-header img { border-radius: 10px; background: white; padding: 3px; flex-shrink: 0; }
.otp-modal-header strong { display: block; font-size: 0.9rem; font-weight: 800; color: white; }
.otp-modal-header span { font-size: 0.72rem; color: #93c5fd; letter-spacing: 0.04em; }

/* ── Phone popup brand bar (no padding on parent) ── */
.popup-brand-bar {
  display: flex; align-items: center; gap: 0.75rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  margin: 0 0 1.5rem;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem 1.5rem 0 0;
}
.popup-brand-bar img { border-radius: 10px; background: white; padding: 3px; flex-shrink: 0; }
.popup-brand-bar strong { display: block; font-size: 0.9rem; font-weight: 800; color: white; }
.popup-brand-bar span { font-size: 0.72rem; color: #93c5fd; letter-spacing: 0.04em; }

/* OTP step indicators */
.otp-steps-bar {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 1.5rem;
}
.otp-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 3px; flex-shrink: 0;
}
.otp-step-dot span {
  width: 30px; height: 30px; border-radius: 50%;
  background: #e2e8f0; color: #94a3b8;
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.otp-step-dot small { font-size: 0.65rem; color: #94a3b8; font-weight: 600; white-space: nowrap; }
.otp-step-dot.active span { background: var(--orange); color: var(--navy); }
.otp-step-dot.active small { color: var(--orange-dark); }
.otp-step-dot.done span { background: #16a34a; color: white; }
.otp-step-dot.done small { color: #16a34a; }
.otp-step-line {
  flex: 1; height: 2px; background: #e2e8f0; margin: 0 6px; margin-bottom: 14px;
  transition: background 0.2s;
}
.otp-step-line.active { background: var(--orange); }

/* Quick popup redesign */
.phone-popup-content { max-width: 460px; padding: 0; overflow: hidden; padding-bottom: 0.5rem; }
.popup-hero-text { padding: 0 2rem; margin-bottom: 1.25rem; }
.popup-hero-text h2 { font-size: 1.4rem; font-weight: 900; color: var(--navy); margin: 0 0 0.25rem; }
.popup-hero-text p { font-size: 0.87rem; color: var(--slate); margin: 0; }
.popup-hero-text strong { color: var(--orange-dark); }

/* popup form fields wrapper */
.popup-field { padding: 0 2rem; margin-bottom: 0.85rem; display: grid; gap: 0.4rem; }
.popup-field label { font-weight: 600; font-size: 0.83rem; color: var(--navy); }
.phone-popup-content form { gap: 0; }
.phone-popup-content .phone-input-row { margin: 0; }

/* input with icon */
.input-icon-wrap { position: relative; }
.input-icon {
  position: absolute; left: 0.9rem; top: 50%; transform: translateY(-50%);
  color: #94a3b8; pointer-events: none;
}
.input-icon-wrap input { padding-left: 2.5rem; }

/* Phone input row */
.phone-input-row {
  display: flex; align-items: center;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.phone-input-row:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,158,11,0.12); background: white; }
.phone-flag {
  padding: 0 0.9rem; font-size: 0.87rem; font-weight: 700; color: var(--navy);
  background: #f1f5f9; border-right: 1.5px solid var(--border-light);
  height: 100%; display: flex; align-items: center; white-space: nowrap; flex-shrink: 0;
  letter-spacing: 0.02em;
}
.phone-input-row input {
  border: none; background: transparent; padding: 0.9rem 1rem;
  width: 100%; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.06em;
}
.phone-input-row input:focus { outline: none; box-shadow: none; background: transparent; }

select {
  width: 100%; padding: 0.85rem 1rem;
  border-radius: var(--radius-sm); border: 1.5px solid var(--border-light);
  background: var(--bg-light); font-size: 0.93rem; color: var(--navy);
  cursor: pointer; transition: border-color var(--transition); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,158,11,0.12); }

/* Popup CTA button */
.btn-popup-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: calc(100% - 4rem); margin: 1rem 2rem 0;
  background: linear-gradient(135deg, var(--orange) 0%, #f97316 100%);
  color: var(--navy); font-weight: 800; font-size: 1rem;
  padding: 1rem 1.5rem; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 6px 24px rgba(245,158,11,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-popup-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,158,11,0.45); }
.btn-popup-submit:active { transform: none; }
.btn-popup-submit:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

.phone-popup-footer {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
  margin: 1.25rem 2rem; padding-top: 1rem; border-top: 1px solid var(--border-light);
}
.phone-popup-footer span { font-size: 0.72rem; color: var(--slate); font-weight: 600; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 5.5rem; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--navy); color: white;
  padding: 0.85rem 1.75rem; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 600; white-space: normal; text-align: center;
  max-width: calc(100vw - 2rem); width: max-content;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.error { background: #dc2626; }
.toast.success { background: #16a34a; }

/* ── Page Shell (blog / gallery) ── */
.page-shell { max-width: 1280px; margin: 0 auto; padding: 2.5rem 2rem 5rem; }

/* ── Page Header Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  padding: 0;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 3rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.page-hero-content { flex: 1; min-width: 280px; }
.page-hero nav { font-size: 0.82rem; margin-bottom: 0.75rem; }
.page-hero nav a { color: var(--orange-light); text-decoration: none; }
.page-hero nav span { color: rgba(255,255,255,0.5); margin: 0 0.4rem; }
.page-hero nav em { color: rgba(255,255,255,0.75); font-style: normal; }
.page-hero h1 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.page-hero p { color: var(--slate-2); font-size: 0.95rem; line-height: 1.7; max-width: 560px; }
.page-hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── Blog List Page ── */
.blog-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2rem; padding: 1.25rem;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--border-light);
}
.blog-filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  border: 1.5px solid var(--border-light);
  background: transparent; color: var(--slate);
  cursor: pointer; transition: all var(--transition);
}
.blog-filter-btn:hover, .blog-filter-btn.active {
  background: var(--orange); color: var(--navy);
  border-color: var(--orange); box-shadow: 0 2px 12px rgba(245,158,11,0.25);
}

.blog-list-page { display: grid; gap: 1.5rem; }
.blog-full-card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  display: grid; grid-template-columns: 280px 1fr;
  border: 1px solid var(--border-light);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
}
.blog-full-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-full-card img { width: 280px; height: 100%; min-height: 200px; object-fit: cover; }
.blog-body { padding: 1.75rem; }
.blog-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.78rem; color: var(--slate); margin-bottom: 0.6rem; flex-wrap: wrap;
}
.blog-cat-tag {
  background: rgba(245,158,11,0.1); color: var(--orange-dark);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 0.15rem 0.6rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600;
}
.blog-read-time { color: var(--slate-2); font-size: 0.75rem; }
.blog-body h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.35; }
.blog-body p { color: var(--slate); font-size: 0.88rem; line-height: 1.7; margin-bottom: 0.75rem; }
.blog-read-more { color: var(--orange-dark); font-size: 0.85rem; font-weight: 600; }
.blog-empty {
  background: white; border-radius: var(--radius);
  padding: 3rem 2rem; text-align: center;
  color: var(--slate); box-shadow: var(--shadow);
}

/* Blog knowledge section */
.blog-knowledge {
  background: white; border-radius: var(--radius);
  padding: 2.5rem; margin-top: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--border-light);
}
.blog-knowledge h2 { color: var(--navy); font-size: 1.4rem; font-weight: 800; margin-bottom: 0.75rem; }
.blog-knowledge > p { color: var(--slate); margin-bottom: 1.25rem; }
.blog-topics {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem; margin-bottom: 2rem;
}
.blog-topic-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--bg-light); border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-size: 0.87rem; color: var(--slate);
  transition: border-color var(--transition), background var(--transition);
}
.blog-topic-item:hover { border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.04); }
.blog-topic-item::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* Newsletter section */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245,158,11,0.12), transparent 60%);
}
.newsletter-section h2 { color: white; font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; position: relative; }
.newsletter-section p { color: var(--slate-2); margin-bottom: 1.5rem; position: relative; font-size: 0.93rem; }
.newsletter-form {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; position: relative;
}
.newsletter-input {
  padding: 0.875rem 1.25rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.93rem;
  width: 280px; max-width: 100%;
  transition: border-color var(--transition), background var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-input:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.12); }

/* ── Gallery Page ── */
/* Filter bar */
.gallery-filters {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2rem; padding: 1.25rem;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--border-light);
  align-items: center;
}
.gallery-filter-label { font-size: 0.8rem; font-weight: 600; color: var(--slate); margin-right: 0.25rem; }
.gallery-filter-btn {
  padding: 0.42rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem; font-weight: 600;
  border: 1.5px solid var(--border-light);
  background: transparent; color: var(--slate);
  cursor: pointer; transition: all var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--orange); color: var(--navy);
  border-color: var(--orange); box-shadow: 0 2px 10px rgba(245,158,11,0.25);
}

/* Gallery masonry grid */
.gallery-grid-page {
  columns: 4; column-gap: 1rem;
}
.gallery-grid-page .gallery-card {
  break-inside: avoid;
  margin-bottom: 1rem;
}
.gallery-grid-page .gallery-card img { height: auto; min-height: 140px; }

.gallery-nav { text-align: center; margin-top: 2rem; }

/* Gallery stats bar */
.gallery-stats-bar {
  display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center;
  padding: 1rem 1.5rem;
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  justify-content: space-between;
}
.gallery-stat-item { display: flex; flex-direction: column; gap: 0.1rem; }
.gallery-stat-item strong { font-size: 1.3rem; font-weight: 900; color: var(--navy); }
.gallery-stat-item span { font-size: 0.73rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 500; }

/* Admin */
.admin-shell { max-width: 860px; }
.admin-card, .admin-block { background: white; border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.admin-actions { display: flex; justify-content: flex-end; margin-bottom: 1rem; }
.admin-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; padding: 0.3rem 0.9rem; border-radius: 999px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,12,24,0.96);
  display: none; justify-content: center; align-items: center;
  padding: 1.5rem; z-index: 700; backdrop-filter: blur(16px);
}
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 1000px; width: 100%; text-align: center; }
.lightbox img { max-height: 78vh; border-radius: var(--radius-sm); width: auto; margin: 0 auto; box-shadow: var(--shadow-lg); }
.close-lightbox {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; width: 44px; height: 44px;
  font-size: 1.5rem; color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.close-lightbox:hover { background: rgba(255,255,255,0.18); }
.lightbox-caption { margin-top: 1rem; color: var(--slate-2); font-size: 0.9rem; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: flex; justify-content: space-between; width: calc(100% - 3rem);
  left: 1.5rem; pointer-events: none;
}
.lightbox-prev, .lightbox-next {
  pointer-events: all;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; width: 48px; height: 48px;
  color: white; cursor: pointer; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--orange); border-color: var(--orange); }

/* ── Utility ── */
.hidden { display: none !important; }
.loading-msg { color: var(--slate); font-size: 0.93rem; padding: 1rem 0; }
.loading-msg.light { color: var(--slate-2); }
.whatsapp-float { display: none; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-page { columns: 3; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; min-height: unset; }
  .hero { min-height: unset; }
  .hero-copy h1 { font-size: 2.35rem; }
  .hero-card-main img { height: 320px; }
  .blog-full-card { grid-template-columns: 1fr; }
  .blog-full-card img { width: 100%; height: 200px; }
  .bc-card { flex: 0 0 calc(50% - 0.625rem); }
  .gallery-grid-page { columns: 2; }
}
@media (max-width: 760px) {
  .main-nav { padding: 0.8rem 1rem; }
  .top-bar { padding: 0.38rem 1rem; }
  .top-bar-left .top-pill:not(:first-child) { display: none; }
  .top-bar-right a:not(.top-call) { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; display: none;
    padding: 1rem; border-bottom: 1px solid var(--border-light);
    z-index: 99; gap: 0.25rem;
    box-shadow: 0 8px 32px rgba(15,35,64,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 1rem; font-size: 1rem; border-radius: var(--radius-xs); color: var(--navy); }
  .nav-cta { display: block !important; text-align: center !important; margin-top: 0.5rem; color: var(--navy) !important; }
  .section-wrap { padding: 3rem 1.25rem; }
  .dark-section { padding: 3rem 0; }
  .dark-section .services-grid, .dark-section .blog-preview-grid, .dark-section .faq-grid { padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 2.5rem 1.25rem; }
  .hero-stats { gap: 1rem; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a, .hero-actions button, .cta-actions a, .cta-actions button { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; padding: 2rem 1.25rem; gap: 1.5rem; }
  .footer-bottom { padding: 1rem 1.25rem; flex-direction: column; text-align: center; }
  .page-shell { padding: 1.5rem 1.25rem 3rem; }
  .trust-bar { padding: 1rem 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-page { columns: 2; }
  .blog-filters, .gallery-filters { padding: 1rem; }
  .blog-topics { grid-template-columns: 1fr; }

  .modal { padding: 0; align-items: flex-end; }
  .modal-content {
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 1.5rem 1.25rem 2rem;
    max-height: 92dvh; overflow-y: auto;
    margin: 0; width: 100%; max-width: 100%;
  }
  .otp-input { font-size: 1.6rem; letter-spacing: 0.35em; }
  .phone-popup-content { max-width: 100%; }
  .google-rating-bar { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .grb-write-btn { width: 100%; justify-content: center; }
  .why-strip { padding: 1.25rem 1rem; }
  .why-inner { gap: 0; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.25rem; }
  .why-item { padding: 0.6rem 1rem; flex-shrink: 0; }
  .why-divider { display: none; }
  .hiw-grid { flex-direction: column; align-items: center; padding: 0; gap: 0; }
  .hiw-step { max-width: 100%; min-width: unset; width: 100%; padding: 1.25rem 0.5rem; }
  .hiw-arrow { display: none; }
  .hiw-cta { flex-direction: column; padding: 0; }
  .hiw-cta a, .hiw-cta button { width: 100%; justify-content: center; text-align: center; }
  .fs-slide { width: 230px; height: 155px; }
  .filmstrip-label { flex-direction: column; align-items: flex-start; gap: 0.4rem; padding: 0 1.25rem 1rem; }
  .blog-carousel-wrap { padding: 0 0.5rem; gap: 0.5rem; }
  .bc-card { flex: 0 0 calc(100% - 0px); }
  .bc-arrow { width: 38px; height: 38px; }
  .bc-dots { padding: 0 1rem; }
  .page-hero-inner { padding: 2rem 1.25rem; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-input { width: 100%; }
  .gallery-stats-bar { gap: 1rem; }
}
@media (max-width: 480px) {
  .gallery-grid-page { columns: 1; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
