/* ================================================
   71 HAND CAR WASH — styles.css
   PART 1: Reset · Variables · Typography · Base
   ================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── ROOT VARIABLES ─────────────────────────────── */
:root {
  /* Brand Blues */
  --blue-900:  #1e3a8a;
  --blue-800:  #1e40af;
  --blue-700:  #1d4ed8;
  --blue-600:  #2563eb;
  --blue-500:  #3b82f6;
  --blue-400:  #60a5fa;
  --blue-300:  #93c5fd;
  --blue-200:  #bfdbfe;
  --blue-100:  #dbeafe;
  --blue-50:   #eff6ff;

  /* Accent Yellow / Gold */
  --gold-500:  #f59e0b;
  --gold-400:  #fbbf24;
  --gold-300:  #fcd34d;
  --gold-dark: #d97706;

  /* Neutrals */
  --gray-950:  #030712;
  --gray-900:  #0f172a;
  --gray-800:  #1e293b;
  --gray-700:  #334155;
  --gray-600:  #475569;
  --gray-500:  #64748b;
  --gray-400:  #94a3b8;
  --gray-300:  #cbd5e1;
  --gray-200:  #e2e8f0;
  --gray-100:  #f1f5f9;
  --gray-50:   #f8fafc;

  /* Surface */
  --white:     #ffffff;
  --offwhite:  #f0f9ff;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.10);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.30);
  --shadow-gold: 0 8px 32px rgba(245,158,11,0.40);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:   0.18s;
  --t-base:   0.28s;
  --t-slow:   0.45s;
  --t-slower: 0.65s;

  /* Layout */
  --container: 1200px;
  --gap:  2rem;
  --section-py: 6rem;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p {
  color: var(--gray-600);
  line-height: 1.7;
}

strong { font-weight: 600; color: var(--gray-800); }
em     { font-style: italic; }

/* ── CONTAINERS ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

/* ── SECTION BASE ───────────────────────────────── */
.section-white {
  padding: var(--section-py) 0;
  background: var(--white);
}

.section-offwhite {
  padding: var(--section-py) 0;
  background: var(--offwhite);
}

.section-blue {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 50%, var(--blue-600) 100%);
  position: relative;
  overflow: hidden;
}

/* ── SECTION HEADING ────────────────────────────── */
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.sec-head h2 {
  margin: 0.35rem 0 0.75rem;
}

.sec-head p {
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.sec-head.reveal h2,
.sec-head.reveal p {
  /* handled by reveal class */
}

/* ── EYEBROW LABEL ──────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
}

.eyebrow.light {
  color: var(--gold-300);
  background: rgba(255,255,255,0.12);
}

/* ── COLOR HELPERS ──────────────────────────────── */
h2.white  { color: var(--white); }
p.white-p { color: rgba(255,255,255,0.78); }

/* ── GLOBAL BUTTONS ─────────────────────────────── */

/* Gold / yellow primary */
.cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--gray-900);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease),
              filter var(--t-base) var(--ease);
  white-space: nowrap;
  animation: pulse-gold 3s ease infinite;
}

.cta-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(245,158,11,0.55);
  filter: brightness(1.06);
}

.cta-gold:active {
  transform: translateY(-1px) scale(0.99);
}

.cta-gold.sm {
  font-size: 0.88rem;
  padding: 0.7rem 1.6rem;
}

.cta-gold.lg {
  font-size: 1.05rem;
  padding: 1.05rem 2.5rem;
  width: 100%;
}

/* Ghost / outline on dark */
.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-spring);
  white-space: nowrap;
}

.cta-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.60);
  transform: translateY(-3px) scale(1.02);
}

/* Solid blue */
.cta-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-blue);
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease);
  white-space: nowrap;
}

.cta-blue:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(37,99,235,0.50);
}

/* Outline on dark bg */
.cta-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.38);
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-spring);
  white-space: nowrap;
  width: 100%;
}

.cta-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
}

.cta-outline.sm {
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
  width: auto;
}

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slower) var(--ease-out),
              transform var(--t-slower) var(--ease-out);
  transition-delay: var(--rd, 0s);
}

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

/* ── GLOBAL KEYFRAMES ───────────────────────────── */

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 8px 32px rgba(245,158,11,0.40); }
  50%       { box-shadow: 0 8px 48px rgba(245,158,11,0.70); }
}

@keyframes float-up {
  0%   { transform: translateY(0) scale(1);    opacity: 0.8; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-120vh) scale(0.6); opacity: 0; }
}

@keyframes sway {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(12px); }
}

@keyframes drop-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(var(--dy, -20px)); }
}

@keyframes micro-drift {
  0%   { transform: translate(0, 0)    scale(1);   opacity: 0.7; }
  50%  { transform: translate(8px, -12px) scale(1.1); opacity: 1; }
  100% { transform: translate(0, 0)    scale(1);   opacity: 0.7; }
}

@keyframes ring-expand {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0;   }
}

@keyframes ripple-grow {
  0%   { transform: scale(0.6); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes wave-drift {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gradient-shift {
  0%   { background-position: 0%   60%; }
  50%  { background-position: 100% 40%; }
  100% { background-position: 0%   60%; }
}

@keyframes rain-fall {
  0%   { transform: translateY(-20px); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(100vh);  opacity: 0; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CUSTOM SCROLLBAR ───────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--blue-50); }
::-webkit-scrollbar-thumb { background: var(--blue-400); border-radius: 3px; }

/* ── SELECTION ──────────────────────────────────── */
::selection {
  background: var(--blue-400);
  color: var(--white);
}

/* ── FOCUS RING ─────────────────────────────────── */
:focus-visible {
  outline: 2.5px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── TRUST BAR ──────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.1rem 0;
  position: relative;
  z-index: 2;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
}

.trust-item span:first-child {
  font-size: 1.2rem;
}

.trust-sep {
  width: 1px;
  height: 22px;
  background: var(--gray-200);
  display: none;
}

@media (min-width: 640px) { .trust-sep { display: block; } }

/* ── GOOGLE BADGE ───────────────────────────────── */
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.5rem auto 0;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 0.8rem 2rem;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.gb-stars {
  color: var(--gold-400);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.gb-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.gb-info strong {
  font-size: 0.95rem;
  color: var(--gray-900);
}

.gb-info span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ── UTILITY ─────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

@media (max-width: 639px) {
  :root { --section-py: 4rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}


/* ================================================
   PART 2: NAVBAR
   ================================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              padding var(--t-base) var(--ease);
  padding: 0;
}

/* Transparent state — over hero */
#navbar.nav-top {
  background: transparent;
  box-shadow: none;
}

/* Scrolled state — solid glass */
#navbar.nav-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.09),
              0 1px 0 rgba(0, 0, 0, 0.04);
}

/* ── Nav inner row ── */
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  gap: 1rem;
  transition: padding var(--t-base) var(--ease);
}

#navbar.nav-scrolled .nav-wrap {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

/* ── Brand logo ── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease);
  flex-shrink: 0;
}

.nav-brand:hover .brand-badge {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.60);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-main {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--t-base) var(--ease);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--t-base) var(--ease);
  letter-spacing: 0.02em;
}

#navbar.nav-scrolled .brand-main { color: var(--gray-900); }
#navbar.nav-scrolled .brand-sub  { color: var(--gray-500); }

/* ── Desktop nav links ── */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-links a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-spring);
  transform-origin: center;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.10);
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Scrolled state link colors */
#navbar.nav-scrolled .nav-links a {
  color: var(--gray-600);
}

#navbar.nav-scrolled .nav-links a:hover {
  color: var(--blue-600);
  background: var(--blue-50);
}

#navbar.nav-scrolled .nav-links a::after {
  background: var(--blue-500);
}

/* ── Call Now button ── */
.nav-call {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--gray-900);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.45);
  transition: transform var(--t-base) var(--ease-spring),
              box-shadow var(--t-base) var(--ease),
              filter var(--t-fast) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
  animation: pulse-gold 3s ease infinite;
}

.nav-call:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.60);
  filter: brightness(1.06);
}

@media (min-width: 640px) {
  .nav-call { display: inline-flex; }
}

/* ── Hamburger button ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  transition: background var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease);
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.50);
}

#navbar.nav-scrolled .hamburger {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

#navbar.nav-scrolled .hamburger:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-base) var(--ease),
              width var(--t-base) var(--ease);
  transform-origin: center;
}

#navbar.nav-scrolled .hamburger span {
  background: var(--gray-700);
}

/* Open state — X shape */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .hamburger { display: none; }
}

/* ── Mobile nav dropdown ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.2rem;
  animation: fade-in-up 0.22s var(--ease-out) both;
}

.mobile-nav.open {
  display: flex;
}

@media (min-width: 900px) {
  .mobile-nav { display: none !important; }
}

.mob-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.75rem 0.75rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              padding-left var(--t-fast) var(--ease);
}

.mob-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  padding-left: 1.1rem;
}

.mob-call,
.mob-sms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-full);
  margin-top: 0.75rem;
  transition: transform var(--t-base) var(--ease-spring),
              filter var(--t-fast) var(--ease);
}

.mob-call {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--gray-900);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.40);
}

.mob-sms {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  margin-top: 0.4rem;
}

.mob-call:hover {
  transform: scale(1.02);
  filter: brightness(1.07);
}

.mob-sms:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.02);
}


/* ================================================
   PART 3: HERO SECTION
   ================================================ */

/*
  STRATEGY (all sizes):
  #hero is always full-screen (100svh).
  .hero-art is absolute, fills entire hero.
  .hero-img covers the full area.
  Navbar is fixed — it floats over the top, no padding needed.
  .hero-body is absolute at the bottom, overlays the image.
  Gradient fades image into the text area — no dark gaps anywhere.
*/

#hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  background: #06112e;
  /* NO padding-top — navbar is fixed and floats over the image */
}

/* ── Animated gradient sky — fallback behind photo ── */
.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    -45deg,
    #0c2461,
    #1e40af,
    #1d4ed8,
    #2563eb,
    #0ea5e9,
    #0284c7
  );
  background-size: 400% 400%;
  animation: gradient-shift 12s ease infinite;
  /* sky only shows if hero.jpg fails to load */
}

/* ── Hero art: absolute full-bleed ── */
.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Image bg colour exactly matches the photo's deep blue edges */
  background: #0a1e6e;
}

/* Default (desktop): cover fills the viewport */
.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* Gradient: transparent at top (logo area), dark at bottom (text) */
.hero-tint {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(4, 10, 50, 0.96) 0%,
    rgba(4, 10, 50, 0.75) 22%,
    rgba(4, 10, 50, 0.20) 45%,
    transparent           62%
  );
}

/* ── Splash SVG art — hidden: artwork is baked into hero photo ── */
.splash-art {
  display: none;
}

.splash-art svg {
  width: 100%;
  height: 100%;
}

/* Splash body shape */
.sp-body {
  animation: sway 8s ease-in-out infinite;
}

/* Crown droplets — bob up/down */
.sp-drop {
  animation: drop-bob var(--dur, 3s) ease-in-out infinite;
  transform-origin: center bottom;
}

/* Side arms — gentle sway */
.sp-arm {
  animation: sway 10s ease-in-out infinite alternate;
}

/* Micro floating drops */
.sp-micro {
  animation: micro-drift var(--dur, 4s) ease-in-out infinite;
}

/* Ripple expand rings */
.sp-ring {
  animation: ring-expand var(--dur, 3s) ease-out infinite;
  animation-delay: var(--rdelay, 0s);
  transform-origin: center;
}

/* ── "71" watermark — hidden: logo already in hero photo ── */
.hero-mark {
  display: none;
}

/* keeping selector for reference */
.hero-mark-off {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  font-size: clamp(18rem, 40vw, 32rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.08);
  text-stroke: 2px rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.03) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  animation: sway 14s ease-in-out infinite;
}

/* ── Floating bubbles ── */
.bubbles {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.bub {
  position: absolute;
  bottom: -40px;
  left: var(--x, 50%);
  width:  var(--s, 14px);
  height: var(--s, 14px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    rgba(255,255,255,0.90),
    rgba(147,197,253,0.40) 60%,
    transparent
  );
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    inset 0 1px 2px rgba(255,255,255,0.70),
    0 2px 8px rgba(0,0,0,0.10);
  animation: float-up var(--dur, 8s) var(--ease-out) infinite;
  animation-delay: var(--d, 0s);
}

/* ── Rain drops ── */
.rain {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.raindrop {
  position: absolute;
  top: -20px;
  width: 1.5px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.0),
    rgba(255,255,255,0.55),
    rgba(255,255,255,0.0)
  );
  animation: rain-fall linear infinite;
  animation-duration: var(--rdur, 1.4s);
  animation-delay: var(--rdelay2, 0s);
}

/* ── Hero body — absolute, anchored to bottom, overlays image ── */
.hero-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.5rem 3rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  gap: 1.1rem;
}

/* Location pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
  animation: pulse-gold 2s ease infinite;
  flex-shrink: 0;
}

/* Main headline */
.hero-h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  text-shadow:
    0 2px 20px rgba(0,0,0,0.30),
    0 8px 40px rgba(0,0,0,0.20);
  margin: 0;
}

/* Tagline */
.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  max-width: 560px;
  line-height: 1.6;
  margin: 0;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-full);
  padding: 0.7rem 1.8rem;
  flex-wrap: wrap;
}

.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
}

.hs-item strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.20);
}

.hs-item span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hs-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.22);
}

/* CTA buttons row */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

/* ── Layered wave dividers at bottom ── */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 13;   /* above hero-body on mobile, above everything on desktop */
  height: 80px;
  pointer-events: none;
}

.hwave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hwave.back  { animation: wave-drift 18s linear infinite; width: 200%; }
.hwave.mid   { animation: wave-drift 13s linear infinite reverse; width: 200%; }
.hwave.front { bottom: 0; }

/* ── Glow spot behind hero text ── */
.hero-body::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  height: min(400px, 60vh);
  background: radial-gradient(
    ellipse at center,
    rgba(96, 165, 250, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
}

/* ================================================
   HERO RESPONSIVE BREAKPOINTS
   ================================================ */

/* ================================================
   HERO TRUST STRIP
   ================================================ */
/* .hero-trust removed from hero — feature now lives in Why section */
.hero-trust { display: none !important; }

.ht-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.1rem;
}

.ht-icon {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.ht-item strong {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.ht-item span {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.ht-item em {
  font-size: 0.55rem;
  font-style: normal;
  color: var(--gold-400);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

/* Tighten on very small phones */
@media (max-width: 374px) {
  .ht-icon    { font-size: 1.1rem; }
  .ht-item strong,
  .ht-item span { font-size: 0.52rem; }
  .ht-item em   { font-size: 0.48rem; }
  .hero-trust   { padding: 0.7rem 0.5rem; }
}

/* Hide trust strip on desktop — section has its own Why grid */
@media (min-width: 900px) {
  .hero-trust { display: none; }
}

/* ── Hero stat pill — match screenshot ─────────────────────── */
.hero-stats {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

/* Override previously defined stats (dedup) */
.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05rem;
}
.hs-item strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hs-item span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.hs-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.22);
}

/* ── CTA gold button — match screenshot thick pill ─────────── */
.cta-gold {
  background: linear-gradient(135deg, #f5c518, #e8a800);
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1rem 2rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.cta-ghost {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.30);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 999px;
}

/* ================================================
   HERO RESPONSIVE — mobile/tablet
   All sizes: #hero is full-screen, .hero-art absolute,
   .hero-body absolute at bottom overlaying the image.
   NO padding-top on #hero — navbar floats over it.
   ================================================ */

/* ================================================
   HERO RESPONSIVE
   Image: 1280×853 (3:2 ratio)
   At 390px wide → naturally 260px tall with height:auto
   Strategy: hero = full screen, image covers top portion,
   dark gradient covers bottom, text overlays bottom.
   ================================================ */

/* ── ALL mobile < 640px ── */
@media (max-width: 639px) {
  #hero {
    min-height: 100svh;
    min-height: 100vh;
    padding-top: 0;   /* navbar is fixed, no gap needed */
  }

  /* 3:2 image on a portrait phone:
     Use cover but position it to show the logo in the top-center.
     The image is wider than tall relative to phone aspect,
     so cover works perfectly — logo+SUV+splash all visible. */
  .hero-img {
    object-fit: cover;
    object-position: center 15%;  /* keeps logo in upper-center */
  }

  /* Stronger bottom gradient so text is always readable */
  .hero-tint {
    background: linear-gradient(
      to top,
      rgba(4, 10, 50, 0.98)  0%,
      rgba(4, 10, 50, 0.90) 20%,
      rgba(4, 10, 50, 0.55) 40%,
      rgba(4, 10, 50, 0.15) 58%,
      transparent            72%
    );
  }

  .hero-body {
    padding: 1rem 1.25rem 2.75rem;
    gap: 0.85rem;
    left: 0; right: 0;
    margin: 0;
    max-width: 100%;
    background: transparent;
  }

  .hero-pill    { font-size: 0.68rem; padding: 0.28rem 0.8rem; }
  .hero-h1      { font-size: clamp(1.6rem, 6.5vw, 2rem); line-height: 1.05; }
  .hero-tagline { font-size: 0.8rem; }

  .hero-stats {
    width: 100%;
    max-width: 340px;
    padding: 0.55rem 0.9rem;
    gap: 0.4rem;
  }
  .hs-item strong { font-size: 0.9rem; }
  .hs-item span   { font-size: 0.57rem; }
  .hs-div         { height: 20px; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    gap: 0.5rem;
  }
  .cta-gold, .cta-ghost {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-sky   { display: none; }
  .hero-waves { display: none; }
  .bubbles    { display: none; }
  .rain       { display: none; }
}

/* ── 375px ── */
@media (min-width: 375px) and (max-width: 429px) {
  .hero-img  { object-position: center 12%; }
  .hero-h1   { font-size: 1.85rem; }
  .hero-body { padding: 0.85rem 1.25rem 2.4rem; gap: 0.7rem; }
}

/* ── 430px (iPhone Pro Max) ── */
@media (min-width: 430px) and (max-width: 639px) {
  .hero-img  { object-position: center 10%; }
  .hero-h1   { font-size: 2.05rem; }
  .hero-body { padding: 0.9rem 1.4rem 2.6rem; gap: 0.75rem; }
  .bubbles   { display: block; }
}

/* ── Tablet 640px–899px ── */
@media (min-width: 640px) and (max-width: 899px) {
  #hero { min-height: 100vh; padding-top: 0; }

  .hero-img {
    object-fit: cover;
    object-position: center 20%;
  }

  .hero-tint {
    background: linear-gradient(
      to top,
      rgba(4,10,50,0.97)  0%,
      rgba(4,10,50,0.75) 30%,
      rgba(4,10,50,0.20) 55%,
      transparent        70%
    );
  }

  .hero-body {
    padding: 1.5rem 2rem 3.5rem;
    gap: 1rem;
    left: 50%; right: auto;
    transform: translateX(-50%);
    max-width: 620px;
    background: transparent;
  }

  .hero-h1      { font-size: 2.5rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-waves   { display: block; height: 65px; }
  .bubbles, .rain { display: block; }
  .hero-ctas  { flex-direction: row; gap: 0.85rem; }
  .cta-gold, .cta-ghost { width: auto; }
}

/* ── Desktop: 900px+ — full cinematic overlay mode ── */
@media (min-width: 900px) {

  #hero {
    min-height: 100vh;
    padding-top: 0;
  }

  /* Image becomes absolute full-bleed background */
  .hero-art {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    flex-shrink: unset;
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }

  /* Full-height gradient tint on desktop */
  .hero-tint {
    position: absolute;
    inset: 0;
    height: 100%;
    bottom: auto;
    background: linear-gradient(
      to top,
      rgba(3, 8, 30, 0.92)  0%,
      rgba(3, 8, 30, 0.65) 28%,
      rgba(3, 8, 30, 0.20) 58%,
      transparent           78%
    );
  }

  /* Text overlays image at bottom */
  .hero-body {
    position: relative;
    z-index: 12;
    flex: unset;
    background: none !important;
    padding: 2rem 2.5rem 7rem;
    gap: 1.4rem;
    max-width: 960px;
    justify-content: flex-end;
  }

  .hero-h1      { font-size: clamp(3rem, 4.5vw, 4.5rem); }
  .hero-tagline { font-size: 1.15rem; max-width: 600px; }
  .hero-waves   { display: block; height: 100px; }
  .bubbles, .rain { display: block; }

  .hero-ctas {
    flex-direction: row;
    gap: 1rem;
  }

  .cta-gold, .cta-ghost {
    width: auto;
  }
}


/* ================================================
   PART 4: TRUST BAR · SERVICES · WHY CHOOSE US
             ABOUT · TESTIMONIALS
   ================================================ */

/* ─── SERVICES GRID ───────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

/* 7 cards: last card on its own row — center it */
.svc-grid .svc-card:last-child {
  grid-column: 2 / 3;   /* center column of 3 */
}

@media (max-width: 899px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-grid .svc-card:last-child {
    grid-column: 1 / -1;  /* full width on tablet — centered via margin */
    max-width: calc(50% - 0.75rem);
    margin: 0 auto;
  }
}

@media (max-width: 559px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .svc-grid .svc-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }
}

.svc-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform  var(--t-base) var(--ease-spring),
    box-shadow var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-50) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  border-radius: inherit;
}

.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--blue-200);
  border-color: var(--blue-200);
}

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

/* Icon ring */
.svc-ring {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
  transition: transform var(--t-base) var(--ease-spring);
  position: relative;
  z-index: 1;
}

.svc-card:hover .svc-ring {
  transform: scale(1.12) rotate(-4deg);
}

.svc-ring.c-blue   { background: #dbeafe; }
.svc-ring.c-sky    { background: #e0f2fe; }
.svc-ring.c-indigo { background: #e0e7ff; }
.svc-ring.c-teal   { background: #ccfbf1; }
.svc-ring.c-cyan   { background: #cffafe; }
.svc-ring.c-emerald{ background: #d1fae5; }
.svc-ring.c-gold   { background: #fef3c7; }
.svc-ring.c-ocean  { background: #bfdbfe; }
.svc-ring.c-red    { background: #fee2e2; }

/* Service photo thumbnail */
.svc-thumb {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.svc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.svc-card:hover .svc-thumb img {
  transform: scale(1.06);
}

.svc-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.svc-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Popular badge */
.svc-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--blue-100);
  color: var(--blue-700);
  position: relative;
  z-index: 1;
}

.svc-tag.gold {
  background: var(--gold-300);
  color: #92400e;
}

/* ─── WHY CHOOSE US GRID ──────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 0;
}

.why-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition:
    transform  var(--t-base) var(--ease-spring),
    background var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease);
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.32);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
  display: block;
  transition: transform var(--t-base) var(--ease-spring);
}

.why-card:hover .why-icon {
  transform: scale(1.18) translateY(-3px);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.why-card p {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* ─── STATS ROW (inside Why/About) ───────────────── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform var(--t-base) var(--ease-spring),
              background var(--t-base) var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.18);
}

.sc-num {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sc-num span {
  font-size: 0.6em;
  color: var(--gold-300);
  font-weight: 700;
}

.sc-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── RIPPLE DECORATION (blue sections) ──────────── */
.ripple-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.rring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.10);
  animation: ripple-grow 6s ease-out infinite;
}

.section-blue .container,
.section-blue .sec-head,
.section-blue .why-grid,
.section-blue .about-grid,
.section-blue .stat-row,
.section-blue .contact-grid {
  position: relative;
  z-index: 1;
}

.rring.rr1 {
  width: 400px; height: 400px;
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.rring.rr2 {
  width: 600px; height: 600px;
  bottom: -200px; right: -150px;
  animation-delay: 2s;
}
.rring.rr3 {
  width: 300px; height: 300px;
  top: 40%; left: 50%;
  animation-delay: 4s;
}

/* ─── ABOUT / WHY SECTION LAYOUT ─────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.about-copy h2 {
  margin: 0.35rem 0 1.1rem;
}

.about-copy p {
  color: rgba(255,255,255,0.78);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.about-copy strong { color: var(--white); }

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--gold-300);
}

/* stat grid inside about */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ─── TESTIMONIALS ────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition:
    transform  var(--t-base) var(--ease-spring),
    box-shadow var(--t-base) var(--ease);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.rc-stars {
  color: var(--gold-400);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

.review-card p em {
  color: var(--blue-600);
  font-style: normal;
  font-weight: 600;
}

.rc-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.rc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(37,99,235,0.30);
}

.rc-author > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.rc-author strong {
  font-size: 0.88rem;
  color: var(--gray-800);
}

.rc-author span {
  font-size: 0.75rem;
  color: var(--gray-400);
}


/* ================================================
   PART 5: GALLERY · LIGHTBOX · CONTACT · FOOTER
   ================================================ */

/* ─── GALLERY GRID ──────────────────────────────── */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gal-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base) var(--ease),
              transform  var(--t-base) var(--ease-spring);
}

.gal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
  z-index: 2;
}

.gal-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

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

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

/* Caption overlay */
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 42, 97, 0.80) 0%,
    rgba(14, 42, 97, 0.20) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.gal-card:hover .gal-overlay {
  opacity: 1;
}

.gal-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.gal-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.2rem;
}

.gal-zoom {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 1rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-spring);
}

.gal-card:hover .gal-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Placeholder cards */
.gal-ph {
  cursor: default;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border: 2px dashed var(--blue-200);
}

.gal-ph:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.gph-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
}

.gph-inner span {
  font-size: 2rem;
}

.gph-inner p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-600);
  margin: 0;
}

.gph-inner small {
  font-size: 0.72rem;
  color: var(--blue-400);
}

/* Gallery CTA */
.gal-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: center;
}

.gal-cta p {
  font-size: 1rem;
  color: var(--gray-500);
}

/* Responsive gallery */
@media (max-width: 639px) {
  .gal-grid {
    grid-template-columns: 1fr;
  }
  .gal-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gal-card:hover { transform: none; }
}

@media (min-width: 640px) and (max-width: 899px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-wide { grid-column: span 2; }
}


/* ─── LIGHTBOX ──────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 10, 30, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
  animation: fade-in-up 0.22s var(--ease-out) both;
}

.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.lb-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) var(--ease),
              transform  var(--t-fast) var(--ease-spring);
  cursor: pointer;
}

.lb-close:hover {
  background: rgba(255,255,255,0.25);
  transform: scale(1.12) rotate(90deg);
}


/* ─── CONTACT SECTION ───────────────────────────── */
.contact-section {
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Info card */
.contact-info {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-info h3 {
  font-size: 1.15rem;
  color: var(--gold-300);
  margin-bottom: 1.4rem;
  font-weight: 700;
}

.ci-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.ci-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.ci-list li span:first-child {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.ci-list a {
  color: rgba(255,255,255,0.85);
  transition: color var(--t-fast) var(--ease);
}

.ci-list a:hover {
  color: var(--gold-300);
}

.ci-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* CTA box */
.contact-box {
  display: flex;
  align-items: stretch;
}

.cbox-inner {
  width: 100%;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

.cbox-drop {
  font-size: 2.5rem;
  animation: drop-bob 3s ease-in-out infinite;
  --dy: -10px;
}

.cbox-inner h3 {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  margin: 0;
}

.cbox-inner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  max-width: 280px;
}

.cbox-inner .cta-gold.lg {
  width: 100%;
  max-width: 320px;
}

.cbox-inner .cta-outline {
  max-width: 320px;
}

/* Contact form */
.contact-form-wrap {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.contact-form h3 {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.95rem;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast) var(--ease),
              background  var(--t-fast) var(--ease);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.38);
}

.form-group select option {
  background: var(--blue-900);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-400);
  background: rgba(255,255,255,0.16);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--gray-900);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: transform var(--t-base) var(--ease-spring),
              filter  var(--t-fast) var(--ease);
  animation: pulse-gold 3s ease infinite;
}

.form-submit:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.07);
}

.form-success {
  display: none;
  text-align: center;
  color: #86efac;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(134,239,172,0.12);
  border: 1px solid rgba(134,239,172,0.30);
  margin-top: 0.5rem;
}

.form-success.visible {
  display: block;
  animation: fade-in-up 0.3s var(--ease-out) both;
}

/* Map embed */
.map-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,0.12);
  height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: brightness(0.88) saturate(1.2);
}

@media (min-width: 768px) {
  .map-wrap { height: 380px; }
}


/* ─── FOOTER ────────────────────────────────────── */
#footer {
  background: var(--gray-950);
  color: var(--gray-400);
  position: relative;
  overflow: hidden;
}

.footer-wave-top {
  display: block;
  line-height: 0;
  margin-bottom: -2px;
  background: var(--blue-700);
}

.footer-wave-top svg {
  width: 100%;
  height: 50px;
  display: block;
}

.footer-body {
  padding: 3rem 0 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto auto;
    align-items: start;
    gap: 2.5rem;
  }
}

/* Brand block */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fb-badge {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,99,235,0.40);
  flex-shrink: 0;
}

.fb-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.fb-loc {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin: 0;
}

/* Footer nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
  transition: color var(--t-fast) var(--ease);
}

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

/* Footer contacts */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-contacts a,
.footer-contacts span {
  font-size: 0.82rem;
  color: var(--gray-400);
  transition: color var(--t-fast) var(--ease);
  line-height: 1.5;
}

.footer-contacts a:hover {
  color: var(--gold-400);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-800);
  color: var(--gray-300);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-700);
  transition: background var(--t-fast) var(--ease),
              color     var(--t-fast) var(--ease),
              transform var(--t-base) var(--ease-spring),
              border-color var(--t-fast) var(--ease);
}

.soc-btn:hover {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-500);
  transform: translateY(-3px) scale(1.10);
}

/* Footer bottom bar */
.footer-copy {
  border-top: 1px solid var(--gray-800);
  padding: 1.1rem 1.5rem;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.footer-copy p {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin: 0;
}

/* ─── FINAL MOBILE POLISH ───────────────────────── */
@media (max-width: 639px) {
  .contact-grid     { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem 1.25rem; }
  .contact-info     { padding: 1.5rem 1.25rem; }
  .cbox-inner       { padding: 1.75rem 1.25rem; }
  .map-wrap         { height: 260px; }
  .footer-inner     { gap: 1.5rem; }
  .footer-social    { justify-content: flex-start; }
}
