/* =============================================
   PSC — Prestige Speed Cleaning LLC
   Design: Elegant, classic, cleaning-inspired
   Palette: Navy · Gold · Ivory · Ice Blue
============================================= */

/* --- Variables --- */
:root {
  --navy:    #1B2B4B;
  --navy2:   #243558;
  --navy3:   #162038;
  --gold:    #C9A84C;
  --gold2:   #E4C26B;
  --gold3:   #A8872F;
  --ivory:   #FAF8F3;
  --ice:     #EDF4F8;
  --white:   #FFFFFF;
  --text:    #2C3A50;
  --muted:   #7A8A9E;
  --border:  rgba(201,168,76,0.2);
  --shadow:  0 4px 30px rgba(27,43,75,0.10);
  --shadow2: 0 12px 50px rgba(27,43,75,0.18);
  --r:       12px;
  --r2:      20px;
  --trans:   0.35s cubic-bezier(0.4,0,0.2,1);
}

/* --- Lucide Icons --- */
.lucide-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
  vertical-align: middle;
  flex-shrink: 0;
}
.ci-icon .lucide-icon  { width: 18px; height: 18px; }
.ac-icon .lucide-icon  { width: 22px; height: 22px; }
.aside-icon .lucide-icon { width: 24px; height: 24px; }

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Canvas Bubbles --- */
#bubbleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* --- Typography --- */
.section-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-sub { margin: 0 auto; }

/* --- Container --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; position: relative; z-index: 1; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy3);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

/* ============ HEADER ============ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: var(--trans);
}
#header.scrolled {
  background: rgba(27,43,75,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
  padding: 0;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}
.logo-img {
  height: 56px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
  display: block;
}
.logo-img-footer {
  height: 64px;
  max-width: min(260px, 75vw);
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  transition: var(--trans);
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy3) !important;
  font-weight: 600;
  padding: 0.5rem 1.4rem;
  box-shadow: 0 3px 15px rgba(201,168,76,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(201,168,76,0.5);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}
/* ---- Language Dropdown ---- */
.lang-dropdown {
  position: relative;
  z-index: 110;
}

/* Trigger button */
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.65rem 0.4rem 0.55rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  backdrop-filter: blur(8px);
}
.lang-trigger:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
}
.lang-trigger:active { transform: scale(0.96); }
.lang-dropdown.open .lang-trigger {
  background: rgba(255,255,255,0.13);
  border-color: rgba(201,168,76,0.35);
}

.lang-trigger-inner {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.lang-trigger-inner .lang-flag-svg {
  width: 22px;
  height: 15px;
}
.lang-trigger-inner .lang-code {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
}

.lang-chevron {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.2s ease;
  flex-shrink: 0;
}
.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

/* Dropdown panel */
.lang-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: rgba(22,32,56,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.45), 0 4px 16px rgba(0,0,0,0.3);
  /* Animation state — closed */
  opacity: 0;
  transform: translateY(-10px) scale(0.96);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.22s ease,
              transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.lang-dropdown.open .lang-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Separator line between items */
.lang-panel::after {
  content: '';
  position: absolute;
  top: 50%; left: 1rem; right: 1rem;
  height: 1px;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}

/* Each language option */
.lang-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s ease;
}
.lang-item:hover { background: rgba(255,255,255,0.06); }
.lang-item.active { background: rgba(201,168,76,0.08); }

.lang-flag-svg {
  width: 26px;
  height: 18px;
  border-radius: 4px;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.lang-item-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  flex: 1;
  transition: color 0.15s;
}
.lang-item.active .lang-item-label { color: var(--gold); font-weight: 600; }

.lang-check {
  width: 15px;
  height: 15px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
.lang-item.active .lang-check { opacity: 1; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Overlay behind the mobile drawer */
#navOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
  backdrop-filter: blur(2px);
}
#navOverlay.visible { display: block; }

/* Mobile Nav (slide-in drawer) */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 82vw);
  height: 100vh;
  height: 100dvh; /* dynamic viewport height — respects browser chrome */
  background: var(--navy3);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  gap: 0.35rem;
  overflow-y: auto;
  transition: right 0.38s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid var(--border);
  box-shadow: -8px 0 40px rgba(0,0,0,0.35);
}
.mobile-nav.open { right: 0; }
.mobile-nav-link {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  transition: var(--trans);
  font-weight: 500;
  display: block;
}
.mobile-nav-link:hover,
.mobile-nav-link:active { color: var(--gold); background: rgba(201,168,76,0.08); }
.mobile-nav-cta {
  margin-top: 0.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy3) !important;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  padding: 0.95rem 1rem;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy3) 0%, var(--navy) 50%, #1e3a5f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 640px;
  text-align: center;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Visual Emblem */
.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.shine-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  animation: ringPulse 4s ease-in-out infinite;
}
.ring-1 { width: 200px; height: 200px; animation-delay: 0s; }
.ring-2 { width: 280px; height: 280px; animation-delay: 0.7s; border-style: dashed; }
.ring-3 { width: 340px; height: 340px; animation-delay: 1.4s; opacity: 0.5; }
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.03); opacity: 1; }
}
.hero-emblem {
  width: 130px;
  height: 130px;
  background: linear-gradient(145deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
}
.emblem-inner {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.sparkle {
  position: absolute;
  color: var(--gold);
  animation: sparklePop 3s ease-in-out infinite;
  font-size: 1rem;
}
.s1 { top: 8%; left: 25%; animation-delay: 0s; font-size: 1.2rem; }
.s2 { bottom: 12%; right: 20%; animation-delay: 0.6s; }
.s3 { top: 20%; right: 12%; animation-delay: 1.2s; font-size: 0.8rem; }
.s4 { bottom: 22%; left: 12%; animation-delay: 1.8s; font-size: 0.75rem; }
.s5 { top: 50%; left: 8%; animation-delay: 2.4s; font-size: 1rem; }
@keyframes sparklePop {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(30deg); }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding: 1.5rem 2.5rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r2);
  z-index: 2;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-lab {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ============ SERVICES ============ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--ivory);
  border: 1px solid rgba(27,43,75,0.07);
  border-radius: var(--r2);
  padding: 2.25rem 2rem;
  position: relative;
  transition: var(--trans);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r2);
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, var(--gold), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(145deg, var(--navy3), var(--navy));
  color: var(--white);
  box-shadow: var(--shadow2);
}
.service-card.featured .service-name { color: var(--white); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.7); }
.service-card.featured .service-link { color: var(--gold); }
.service-card.featured .service-icon { color: var(--gold); }
.featured-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy3);
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.service-icon {
  width: 52px;
  height: 52px;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.service-card.featured .service-icon { color: var(--gold); }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold3);
  letter-spacing: 0.02em;
  transition: var(--trans);
}
.service-link:hover { color: var(--gold); letter-spacing: 0.05em; }

/* ============ ABOUT ============ */
.about { background: var(--ice); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-card-stack {
  position: relative;
  height: 380px;
}
.about-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r2);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid rgba(27,43,75,0.06);
  transition: var(--trans);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.ac1 { top: 0; left: 0; width: 220px; }
.ac2 { top: 120px; right: 0; width: 200px; }
.ac3 { bottom: 0; left: 40px; width: 215px; }
.ac-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  color: var(--gold3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border-radius: 10px;
  border: 1px solid rgba(201,168,76,0.18);
}
.about-card strong { font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.about-card span { font-size: 0.8rem; color: var(--muted); }
.about-shine {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.about-list li {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

/* ============ PROCESS ============ */
.process { background: var(--navy3); }
.process .section-tag { color: var(--gold); }
.process .section-title { color: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
}
.process-step {
  text-align: center;
  max-width: 280px;
  flex: 1;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.process-arrow {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  padding-top: 1.5rem;
  flex-shrink: 0;
}

/* ============ AREAS ============ */
.areas { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin: 0 auto;
}
.area-card {
  background: var(--ivory);
  border: 1px solid rgba(27,43,75,0.07);
  border-radius: var(--r2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.area-card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }
.area-map-art {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
}
.area-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.area-state {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold3);
  margin-bottom: 1rem;
}
.area-desc { font-size: 0.9rem; color: var(--muted); }
.areas-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.areas-note a { color: var(--gold3); font-weight: 600; }
.areas-note a:hover { color: var(--gold); }

/* ============ BOOKING ============ */
.booking { background: var(--ice); }
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: flex-start;
}
.booking-form {
  background: var(--white);
  border-radius: var(--r2);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27,43,75,0.06);
}
.form-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.form-group.flex2 { flex: 2; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(27,43,75,0.12);
  border-radius: var(--r);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--ivory);
  transition: var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e05252; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: rgba(224,82,82,0.08);
  border: 1px solid rgba(224,82,82,0.3);
  border-radius: var(--r);
  color: #c0392b;
  font-size: 0.88rem;
  margin-top: 1rem;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(46,174,107,0.1);
  border: 1px solid rgba(46,174,107,0.3);
  border-radius: var(--r);
  color: #1a7a44;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}
.btn-submit {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 1rem 2rem;
}
.btn-submit.loading { opacity: 0.7; pointer-events: none; }

/* Booking Aside */
.booking-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.aside-card {
  background: var(--white);
  border-radius: var(--r2);
  padding: 1.5rem;
  border: 1px solid rgba(27,43,75,0.06);
  text-align: center;
  box-shadow: var(--shadow);
}
.aside-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.9rem;
  color: var(--gold3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border-radius: 14px;
  border: 1px solid rgba(201,168,76,0.2);
}
.aside-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.aside-phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold3);
  margin-bottom: 0.35rem;
  transition: var(--trans);
}
.aside-phone:hover { color: var(--gold); }
.aside-card p { font-size: 0.82rem; color: var(--muted); }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--ivory);
  border: 1px solid rgba(27,43,75,0.07);
  border-radius: var(--r2);
  padding: 2rem;
  transition: var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { font-size: 0.9rem; color: var(--navy); display: block; }
.testi-author span { font-size: 0.78rem; color: var(--muted); }

/* ============ CONTACT ============ */
.contact { background: var(--navy3); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact .section-tag { color: var(--gold); }
.contact .section-title { color: var(--white); }
.contact-info > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.ci-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}
.ci-val {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
a.ci-val:hover { color: var(--gold); }

/* CTA Box */
.cta-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--r2);
  padding: 3rem 2.5rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
.cta-sparkles {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.5em;
  margin-bottom: 1.25rem;
  animation: sparklePop 2.5s ease-in-out infinite;
}
.cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-box p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 1.75rem; }
.cta-box .btn-ghost { border-color: rgba(255,255,255,0.2); margin-top: 0.75rem; width: 100%; justify-content: center; }
.cta-box .btn-primary { width: 100%; justify-content: center; }
.cta-box .btn + .btn { display: flex; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy3);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
.footer-main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 0;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--trans);
  padding: 0.25rem 0.65rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-link-cta {
  color: var(--gold) !important;
  font-weight: 600;
}
.footer-link-cta:hover { color: var(--gold2) !important; }
.footer-dot {
  color: rgba(255,255,255,0.2);
  font-size: 1rem;
  line-height: 1;
  padding: 0 0.1rem;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--trans);
}
.footer-contact a {
  font-weight: 600;
  color: var(--gold);
}
.footer-contact a:hover { color: var(--gold2); }
.footer-contact .lucide-icon { width: 14px; height: 14px; opacity: 0.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ============ ADDRESS AUTOCOMPLETE (custom) ============ */
.ac-dropdown {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border: 1.5px solid rgba(27,43,75,0.12);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: 0 14px 40px rgba(27,43,75,0.13);
  list-style: none;
  margin: 0; padding: 0.3rem 0;
  overflow: hidden;
  display: none;
}
.ac-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  border-top: 1px solid rgba(27,43,75,0.04);
  transition: background 0.14s;
  line-height: 1.4;
}
.ac-item:first-child { border-top: none; }
.ac-item:hover, .ac-item.ac-active { background: var(--ice); }
.ac-item strong { color: var(--gold3); font-weight: 700; }
.ac-pin {
  display: inline-block;
  width: 14px; height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23A8872F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 10c0 7-9 13-9 13S3 17 3 10a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.75;
}

/* Address warning */
.address-warn {
  font-size: 0.8rem;
  color: #c0762b;
  margin-top: 0.4rem;
  display: none;
  padding: 0.4rem 0.75rem;
  background: rgba(192,118,43,0.08);
  border-radius: 6px;
  border-left: 3px solid #c0762b;
}

/* ============ FLOATING CALL (on scroll) ============ */
.fab-call {
  position: fixed;
  bottom: max(1.25rem, calc(env(safe-area-inset-bottom, 0px) + 0.75rem));
  right: max(1rem, env(safe-area-inset-right, 0px));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  background: linear-gradient(135deg, var(--gold), var(--gold3));
  color: var(--navy3);
  font-weight: 700;
  font-size: clamp(0.78rem, 3.2vw, 0.92rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(201,168,76,0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease;
}
.fab-call.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fab-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.55);
  color: var(--navy3);
}
.fab-call-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.fab-call-num {
  white-space: nowrap;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }

/* ============================================================
   GALLERY — Full-screen Apple-style sticky scroll
   ============================================================ */

/* Outer section: height set dynamically by JS */
.gallery-fs {
  position: relative;
  height: calc(19 * 100vh); /* fallback; JS overrides for exact N */
}

/* Blurred backdrop (generated by JS) */
.gfs-img-blur {
  position: absolute;
  inset: -10px;          /* slightly oversized to hide blur edges */
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  object-position: center;
  filter: blur(28px) brightness(0.55) saturate(0.7);
  z-index: 0;
  display: block;
}

/* Real photo — shown fully, no crop */
.gfs-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  display: block;
}

/* Sticky viewport */
.gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #0d1a2e;
}

/* ── Slides container ── */
.gfs-slides {
  position: absolute;
  inset: 0;
}

/* Individual slide */
.gfs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.85s cubic-bezier(0.4,0,0.2,1);
}
.gfs-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Full-screen photo background */
.gfs-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1);
  transition: transform 1.1s cubic-bezier(0.4,0,0.2,1);
}
.gfs-slide.active .gfs-bg { transform: scale(1); }
.gfs-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Dark gradient veil (left-heavy) for text readability */
.gfs-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,20,40,0.82) 0%, rgba(10,20,40,0.55) 42%, rgba(10,20,40,0.1) 70%, transparent 100%),
    linear-gradient(to top, rgba(10,20,40,0.5) 0%, transparent 55%);
  z-index: 1;
}

/* Text content */
.gfs-copy {
  position: absolute;
  bottom: 12vh;
  left: clamp(2rem, 7vw, 8rem);
  z-index: 2;
  color: white;
  max-width: 540px;
  transform: translateY(36px);
  opacity: 0;
  transition: transform 0.75s 0.35s cubic-bezier(0.34,1.2,0.64,1),
              opacity 0.75s 0.35s ease;
}
.gfs-slide.active .gfs-copy {
  transform: translateY(0);
  opacity: 1;
}
.gfs-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 0.8rem;
}
.gfs-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.1rem;
}
.gfs-p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 420px;
}
.gfs-cta { font-size: 0.92rem; padding: 0.8rem 2rem; }

/* "After PSC Clean" badge */
.gfs-stamp {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  background: rgba(10,20,40,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold2);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.6s 0.5s ease, transform 0.6s 0.5s ease;
}
.gfs-slide.active .gfs-stamp {
  opacity: 1;
  transform: translateY(0);
}

/* ── Top-left: label + counter ── */
.gfs-meta {
  position: absolute;
  top: calc(var(--header-h, 80px) + 1.5rem);
  left: clamp(2rem, 7vw, 8rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.gfs-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.gfs-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.gfs-counter #gfsIdx { color: var(--gold2); font-size: 2rem; line-height: 1; }
.gfs-sep { color: rgba(255,255,255,0.3); font-size: 1rem; }

/* ── Right: dot navigation ── */
.gfs-sidenav {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gfs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  padding: 0;
}
.gfs-dot.active {
  background: var(--gold2);
  height: 28px;
  border-radius: 3px;
}

/* ── Bottom progress bar ── */
.gfs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.12);
  z-index: 10;
}
.gfs-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold3), var(--gold2));
  transition: width 0.1s linear;
}

/* ── Scroll hint ── */
.gfs-hint {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.5s ease;
}
.gfs-hint.hidden { opacity: 0; pointer-events: none; }
.gfs-hint-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  animation: gfs-line-pulse 1.8s ease-in-out infinite;
}
@keyframes gfs-line-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%       { opacity: 0.8; transform: scaleY(1); }
}

/* ── Mobile gallery adaptations ── */
@media (max-width: 768px) {
  /* Mobile: use contain + blur backdrop — same as desktop, avoids zoom on landscape photos */
  .gfs-img-blur {
    display: block;
    filter: blur(20px) brightness(0.45) saturate(0.6);
  }
  .gfs-img {
    object-fit: contain;
    object-position: center;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  /* Bottom-heavy veil so text block is always readable */
  .gfs-veil {
    background:
      linear-gradient(to top,  rgba(10,20,40,0.92) 0%, rgba(10,20,40,0.55) 50%, rgba(10,20,40,0.15) 100%),
      linear-gradient(to right, rgba(10,20,40,0.4) 0%, transparent 80%);
  }

  /* Text block at bottom */
  .gfs-copy {
    left: 1.25rem;
    right: 1.25rem;
    max-width: none;
    bottom: 6vh;
    padding-right: 3rem; /* leave space for side dots */
  }
  .gfs-h   { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .gfs-p   { font-size: 0.88rem; max-width: 100%; margin-bottom: 1.25rem; }
  .gfs-cta { font-size: 0.82rem; padding: 0.65rem 1.5rem; }

  /* Badge top-left instead of top-right to avoid overlap */
  .gfs-stamp { left: 1.25rem; right: auto; top: calc(var(--header-h, 70px) + 0.75rem); }

  /* Meta top-right */
  .gfs-meta { left: auto; right: 1.25rem; top: calc(var(--header-h, 70px) + 0.75rem); align-items: flex-end; }

  /* Thinner sidenav, hidden above 18 slides → show every 3rd dot */
  .gfs-sidenav { right: 0.4rem; gap: 7px; }
  .gfs-dot     { width: 4px; height: 4px; }
  .gfs-dot.active { height: 18px; }

  /* No scroll hint on mobile */
  .gfs-hint { display: none; }
}

.gallery-outer { position: relative; }

/* Horizontal scroll track */
.gallery-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 calc((100vw - 1200px) / 2) 2.5rem;
  padding-left: max(2rem, calc((100vw - 1200px) / 2));
  padding-right: max(2rem, calc((100vw - 1200px) / 2));
  cursor: grab;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; scroll-behavior: auto; }

/* Individual card */
.gallery-card {
  flex: 0 0 420px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27,43,75,0.10);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(40px) scale(0.97);
}
.gallery-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 60px rgba(27,43,75,0.18);
}

/* Card visual (SVG area) */
.gc-visual {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}
.gc-scene {
  width: 100%;
  height: 100%;
  display: block;
}

/* Animated shine overlay */
.gc-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,255,255,0.35) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  pointer-events: none;
  transition: background-position 0s;
}
.gallery-card:hover .gc-shine {
  animation: gc-shine-anim 0.65s ease forwards;
}
@keyframes gc-shine-anim {
  to { background-position: 200% 0; }
}

/* PSC badge */
.gc-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(27,43,75,0.82);
  backdrop-filter: blur(8px);
  color: var(--gold2);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.35);
}

/* Card text area */
.gc-info {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.gc-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.gc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.gc-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0.2rem;
}

/* Controls row */
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 1.5rem 0 0.8rem;
}

.gnav-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  box-shadow: 0 2px 12px rgba(27,43,75,0.08);
  flex-shrink: 0;
}
.gnav-arrow:hover { background: var(--navy); color: var(--gold2); border-color: var(--navy); }
.gnav-arrow:disabled { opacity: 0.35; pointer-events: none; }

/* Dots */
.gallery-dots { display: flex; gap: 8px; align-items: center; }
.gdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(27,43,75,0.18);
  transition: all 0.3s ease;
  padding: 0;
}
.gdot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--navy);
}

/* Progress bar */
.gallery-progress-wrap {
  height: 2px;
  background: rgba(27,43,75,0.08);
  margin: 0.5rem 4rem 2.5rem;
  border-radius: 2px;
  overflow: hidden;
}
.gallery-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold3), var(--gold2));
  border-radius: 2px;
  width: 0%;
  transition: width 0.15s ease;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-visual { width: 260px; height: 260px; right: 2%; }
  .ring-3 { width: 260px; height: 260px; }
  .ring-2 { width: 210px; height: 210px; }
  .ring-1 { width: 155px; height: 155px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 400px; margin: 0 auto; }
}
@media (max-width: 768px) {
  /* ── Header: logo LEFT, controls RIGHT ── */
  .header-inner {
    padding: 0 1.25rem;
    height: 60px;
    gap: 0;
    justify-content: space-between;
  }
  .header-right { gap: 0.5rem; margin-left: 0; }
  /* Logo */
  .logo-img { height: 44px; max-width: min(190px, 50vw); }
  .logo-img-footer { height: 52px; }
  /* Hide text lang code — show flag only */
  .lang-trigger-inner .lang-code { display: none; }
  .lang-trigger { padding: 0.35rem 0.55rem; border-radius: 10px; }

  /* ── Nav ── */
  .nav { display: none; }
  .burger { display: flex; }

  /* ── Hero ── */
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-desc  { font-size: 0.98rem; }
  /* Stats: always 3 in a row, no wrap */
  .hero-stats {
    gap: 0;
    padding: 1rem 1rem;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 2.5rem;
  }
  .stat { flex: 1; }
  .stat-num { font-size: 1.6rem; }
  .stat-lab { font-size: 0.62rem; letter-spacing: 0.04em; }
  .stat-divider { height: 30px; }

  /* ── About: hide overlapping card stack, show text only ── */
  .about-visual { display: none; }

  /* ── Sections ── */
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); padding: 0; }
  .areas-grid { grid-template-columns: 1fr; max-width: 400px; }
  .booking-wrap { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-contact { gap: 1rem; }
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .booking-form { padding: 1.5rem; }
  /* Touch targets */
  .btn { min-height: 44px; }
  .mobile-nav-link { min-height: 44px; }
}

/* ── 480px: small phones ── */
@media (max-width: 480px) {
  .header-inner { padding: 0 1rem; height: 56px; }
  .header-right { gap: 0.35rem; }
  .logo-img { height: 36px; max-width: min(150px, 46vw); }
  .lang-trigger { padding: 0.3rem 0.45rem; }
  /* Hero */
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { justify-content: center; }
  /* Booking */
  .booking-form { padding: 1.25rem 1rem; }
  /* Gallery */
  .gfs-h { font-size: clamp(1.6rem, 7.5vw, 2.4rem); }
  .gfs-cat { font-size: 0.62rem; }
}

/* ── 360px: very small phones ── */
@media (max-width: 360px) {
  .header-inner { padding: 0 0.85rem; height: 54px; }
  .logo-img { height: 32px; max-width: min(130px, 44vw); }
  .lang-panel { right: 0; left: auto; min-width: 150px; }
  .hero-stats { padding: 0.85rem 0.75rem; }
  .stat-num { font-size: 1.4rem; }
  .stat-lab { font-size: 0.55rem; }
}

