/* ============================================================
   THOROUGH TOUCH CLEANING SERVICE — Custom Stylesheet
   Fonts: Playfair Display (headings) + Lato (body)
   Palette: Navy Blue · Gold · Emerald Green
   ============================================================ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Brand colours */
  --navy:         #0D1F4E;
  --navy-dark:    #071230;
  --navy-mid:     #16306A;
  --navy-light:   #1E3D80;
  --gold:         #C9A84C;
  --gold-dark:    #A88830;
  --gold-light:   #E0C46E;
  --quote-gold:   #F0D878;
  --quote-gold-dark: #D9B957;
  --quote-gold-light:#FFE79A;
  --emerald:      #1A6B45;
  --emerald-dark: #0F4A2E;
  --emerald-mid:  #22895A;
  --emerald-light:#34B87A;
  --whatsapp:     #25D366;
  --whatsapp-dark:#1DA851;

  /* Text */
  --text-dark:    #0A1628;
  --text-body:    #2D3748;
  --text-muted:   #637081;
  --text-light:   rgba(255,255,255,0.88);
  --text-white:   #ffffff;

  /* Backgrounds */
  --bg-white:     #ffffff;
  --bg-light:     #F4F7FB;
  --bg-off:       #E9EEF6;

  /* Borders & Shadows */
  --border:       rgba(13,31,78,0.10);
  --shadow-xs:    0 1px 4px rgba(13,31,78,0.07);
  --shadow-sm:    0 3px 10px rgba(13,31,78,0.09);
  --shadow-md:    0 8px 28px rgba(13,31,78,0.13);
  --shadow-lg:    0 16px 56px rgba(13,31,78,0.18);
  --shadow-gold:  0 8px 28px rgba(201,168,76,0.30);
  --shadow-emerald: 0 8px 28px rgba(26,107,69,0.25);

  /* Semantic */
  --success:      #16a34a;
  --error:        #dc2626;

  /* Layout */
  --nav-height:   104px;
  --radius-xs:    4px;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --radius-pill:  999px;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:       0.18s;
  --t:            0.30s;
  --t-slow:       0.55s;
}

/* ─── RESETS & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.72;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
main,
header,
footer,
section {
  max-width: 100%;
}

.container,
.container-fluid,
.row,
.row > * {
  min-width: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
a,
span,
label,
legend,
button {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ─── KEYFRAMES ─── */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  70%  { transform: scale(1);   box-shadow: 0 0 0 14px rgba(201,168,76,0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.5; }
}
@keyframes shapeFloat1 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%       { transform: translate(18px,20px) rotate(5deg); }
}
@keyframes shapeFloat2 {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%       { transform: translate(-14px,16px) rotate(-4deg); }
}
@keyframes shapeFloat3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(10px,-12px) scale(1.06); }
}

/* ─── INSTANT CONTENT DISPLAY ─── */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── BUTTON SYSTEM ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 100%;
  padding: 13px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--t) var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.3;
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.04rem;
}

/* Gold CTA */
.btn-gold {
  background: linear-gradient(135deg, var(--quote-gold-light) 0%, var(--quote-gold-dark) 100%);
  color: var(--navy-dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover, .btn-gold:focus {
  background: linear-gradient(135deg, #fff0ad 0%, var(--quote-gold) 100%);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(201,168,76,0.40);
}
.btn-gold:active { transform: translateY(0); }

/* Navy */
.btn-navy {
  background: var(--navy);
  color: var(--text-white);
  border-color: var(--navy);
}
.btn-navy:hover, .btn-navy:focus {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* Outline navy */
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(13,31,78,0.22);
}
.btn-outline-navy:hover, .btn-outline-navy:focus {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* CTA nav button */
.btn-cta {
  background: linear-gradient(135deg, var(--quote-gold-light) 0%, var(--quote-gold-dark) 100%);
  color: var(--navy-dark);
  border-color: transparent;
  font-weight: 700;
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  transition: all var(--t) var(--ease);
}
.btn-cta:hover, .btn-cta:focus {
  background: linear-gradient(135deg, #fff0ad 0%, var(--quote-gold) 100%);
  color: var(--navy-dark);
  transform: translateY(-1px);
}

/* Outline hero */
.btn-outline-hero {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  padding: 14px 28px;
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--t) var(--ease);
}
.btn-outline-hero:hover, .btn-outline-hero:focus {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.85);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* ─── SECTION UTILITIES ─── */
.section-light { background: var(--bg-light); }

.section-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.12);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-eyebrow-light {
  color: var(--gold-light);
  background: rgba(201,168,76,0.18);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.text-white { color: var(--text-white) !important; }
.text-white-soft { color: rgba(255,255,255,0.80) !important; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 8px;
  line-height: 1.7;
}

.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  border-radius: var(--radius-pill);
  margin: 18px auto 0;
}
.divider-gold {
  background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
}

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
  height: var(--nav-height);
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), height var(--t) var(--ease);
}
.site-nav.scrolled {
  height: 92px;
  background: rgba(7,18,48,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(7,18,48,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 32px;
  min-width: 0;
  transition: height var(--t) var(--ease);
}
.site-nav.scrolled .nav-inner {
  height: 92px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 0;
  max-width: 100%;
  color: var(--text-white);
  transition: opacity var(--t-fast) var(--ease);
}
.nav-brand:visited,
.nav-brand:hover,
.nav-brand:focus {
  color: var(--text-white);
}
.nav-brand:hover { opacity: 0.88; }

.nav-logo {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-brand-text {
  display: flex;
  flex-direction: row;
  line-height: 1.2;
  min-width: 0;
}
.nav-brand-top {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.12rem, 1.85vw, 1.42rem);
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  margin-left: auto;
}
.nav-links li {}

.nav-link {
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--text-white);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  position: relative;
}
.nav-link:visited,
.nav-link:focus {
  color: var(--text-white);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--t) var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.07);
}
.nav-link.active::after,
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  margin-left: 8px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.nav-hamburger:hover {
  background: rgba(255,255,255,0.08);
}
.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease), width var(--t) var(--ease);
}
.nav-hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  width: 100%;
  max-width: 100vw;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 20px 32px;
  max-height: calc(100dvh - var(--nav-height));
  overflow-y: auto;
  z-index: 999;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-links {
  margin-bottom: 20px;
}
.mobile-nav-links li + li { border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-link {
  display: block;
  padding: 14px 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  transition: color var(--t-fast);
}
.mobile-link:visited,
.mobile-link:hover,
.mobile-link:focus {
  color: var(--text-white);
}

.mobile-cta {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

.mobile-contact-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.mobile-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill);
  transition: all var(--t-fast);
}
.mobile-contact-link:hover {
  color: var(--text-white);
  border-color: rgba(255,255,255,0.40);
  background: rgba(255,255,255,0.06);
}

/* ─── HERO ─── */
.hero-section {
  position: relative;
  min-height: 100dvh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-mid) 75%, #1A3D7F 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 32px);
  padding-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,107,69,0.20) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.10) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero-shape-1 {
  width: 520px; height: 520px;
  background: var(--emerald);
  top: -120px; right: -130px;
  animation: shapeFloat1 8s ease-in-out infinite;
}
.hero-shape-2 {
  width: 380px; height: 380px;
  background: var(--gold);
  bottom: -100px; left: -80px;
  animation: shapeFloat2 10s ease-in-out infinite;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: var(--emerald-light);
  top: 30%; right: 18%;
  animation: shapeFloat3 6s ease-in-out infinite;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  background: rgba(201,168,76,0.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  max-width: 100%;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-badge svg {
  flex: 0 0 auto;
}

.hero-badge-text {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35em;
  min-width: 0;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.hero-subheading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1.4;
  font-style: italic;
}

.hero-brand-quote {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: rgba(255,255,255,0.94);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 14px;
  padding: 10px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-hero {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius-pill);
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.89rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.hero-logo-frame {
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: floatY 5s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(201,168,76,0.15), inset 0 0 40px rgba(255,255,255,0.04);
}
.hero-logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.3));
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.hero-float-1 { top: 12%;  left: -5%;  color: var(--gold-light);  animation: floatY 4s ease-in-out infinite; }
.hero-float-2 { bottom: 18%; left: -8%; color: var(--emerald-light); animation: floatY 5s ease-in-out infinite; }
.hero-float-3 { top: 28%;  right: -6%; color: rgba(255,255,255,0.90); animation: floatY 6s ease-in-out infinite; }

/* Scroll indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.50);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ─── INTRO STRIP ─── */
.intro-strip {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color var(--t-fast);
}
.strip-item:hover { color: var(--gold-light); }
.strip-icon {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: background var(--t), border-color var(--t);
}
.strip-item:hover .strip-icon {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.50);
}

/* ─── ABOUT ─── */
.about-section {
  padding: 110px 0;
}

.about-intro-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
  height: 100%;
}
.about-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26,107,69,0.12) 0%, rgba(13,31,78,0.08) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
  margin-bottom: 20px;
}
.about-intro-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.about-intro-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 12px;
}
.about-intro-card p:last-of-type { margin-bottom: 20px; }

.about-target-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  display: inline-block;
  background: rgba(13,31,78,0.07);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 13px;
  font-size: 0.79rem;
  font-weight: 600;
  transition: all var(--t-fast);
}
.chip:hover {
  background: var(--navy);
  color: var(--text-white);
  border-color: var(--navy);
}

.about-lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 18px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.about-body {
  font-size: 0.97rem;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.78;
}

.about-brand-quote {
  position: relative;
  margin: 24px 0 26px;
  padding: 24px 28px 24px 30px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(26,107,69,0.07) 100%);
  border: 1px solid rgba(201,168,76,0.28);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
}
.about-brand-quote span {
  display: block;
  margin-bottom: 8px;
  color: var(--emerald);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-body);
}
.about-feature svg { color: var(--emerald); flex-shrink: 0; }

.about-cta-wrap {
  margin-top: 28px;
}
.about-cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 14px;
}

/* ─── SERVICES ─── */
.services-section {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 50%, #0A1E46 100%);
  position: relative;
  overflow: hidden;
}
.services-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.service-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--t) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.service-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,168,76,0.30);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(7,18,48,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  background: rgba(201,168,76,0.10);
  border-color: rgba(201,168,76,0.35);
}
.service-card--featured::before { transform: scaleX(1); }

.service-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.service-card--wide {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
}
.service-card--wide .service-icon-wrap {
  flex-shrink: 0;
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.20) 0%, rgba(26,107,69,0.12) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 20px;
  transition: background var(--t), border-color var(--t), transform var(--t);
  flex-shrink: 0;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, rgba(201,168,76,0.30) 0%, rgba(26,107,69,0.20) 100%);
  border-color: rgba(201,168,76,0.55);
  transform: scale(1.05);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
  margin-bottom: 18px;
}

.service-list {
  margin-bottom: 20px;
  flex: 1;
}
.service-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald-light);
  font-size: 0.8rem;
  font-weight: 700;
}
.service-list--inline li {
  border: none;
  padding: 3px 0 3px 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold-light);
  transition: gap var(--t-fast), color var(--t-fast);
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.service-link:hover {
  color: var(--gold);
  gap: 10px;
}

.services-bottom-cta {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.services-bottom-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-style: italic;
}

/* ─── WHY CHOOSE US ─── */
.why-section {
  padding: 110px 0;
  background: linear-gradient(150deg, var(--emerald-dark) 0%, var(--emerald) 40%, var(--navy) 80%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.why-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.why-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--t) var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(7,18,48,0.30);
}
.why-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.22) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 18px;
  transition: background var(--t), transform var(--t);
}
.why-card:hover .why-icon-wrap {
  background: linear-gradient(135deg, rgba(201,168,76,0.35) 0%, rgba(255,255,255,0.12) 100%);
  transform: scale(1.06);
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.72;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(130deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(26,107,69,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-banner-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.72;
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── CONTACT ─── */
.contact-section {
  padding: 110px 0;
  background: var(--bg-light);
}

.contact-info-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.contact-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(13,31,78,0.08) 0%, rgba(26,107,69,0.06) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-item-icon--green { color: var(--whatsapp); }

.contact-item-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-item-value {
  display: block;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--t-fast);
}
a.contact-item-value:hover { color: var(--gold-dark); }
.contact-tel { color: var(--navy) !important; }

@media (hover: none) and (pointer: coarse) {
  .contact-tel { color: var(--navy) !important; }
}

.contact-quick-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.contact-terms-action {
  width: 100%;
  margin-top: 14px;
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-subheading {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-label {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.form-required { color: var(--gold-dark); }

.custom-field {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
  outline: none;
  appearance: none;
}
.custom-field:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,31,78,0.10);
  outline: none;
}
.custom-field::placeholder { color: #9DAAB9; }
select.custom-field { cursor: pointer; }
textarea.custom-field { resize: vertical; min-height: 100px; }

.form-feedback {
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}
.form-feedback.success {
  background: rgba(22,163,74,0.10);
  color: var(--success);
  border: 1px solid rgba(22,163,74,0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-feedback.error {
  background: rgba(220,38,38,0.08);
  color: var(--error);
  border: 1px solid rgba(220,38,38,0.20);
  display: flex;
  align-items: center;
  gap: 8px;
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(13,31,78,0.3);
  border-top-color: var(--navy-dark);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.65);
}

.footer-brand {}
.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.25));
}
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-contact-quick { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-quick-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--t-fast);
}
.footer-contact-quick-item:hover { color: var(--gold-light); }
.footer-contact-quick-item svg { color: var(--gold); flex-shrink: 0; }

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-list svg { color: var(--gold); flex-shrink: 0; }
.footer-contact-list a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 56px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-copy {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
}
.footer-credit {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
}
.footer-credit a {
  color: var(--gold-light);
  opacity: 0.75;
  transition: opacity var(--t-fast);
}
.footer-credit a:hover { opacity: 1; }

/* TERMS AND CONDITIONS */
.terms-page {
  background: var(--bg-light);
}

.terms-hero {
  padding: calc(var(--nav-height) + 70px) 0 44px;
  background:
    linear-gradient(135deg, rgba(13,31,78,0.95) 0%, rgba(13,31,78,0.88) 55%, rgba(26,107,69,0.84) 100%);
  color: var(--text-white);
}

.terms-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terms-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
}

.terms-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.84);
  font-size: 1.06rem;
  line-height: 1.75;
}

.terms-document-section {
  padding: 44px 0 90px;
}

.terms-document-shell {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.terms-document-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.terms-document-title {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.terms-pdf-viewer {
  display: block;
  width: 100%;
  height: min(78vh, 920px);
  min-height: 620px;
  border: 0;
  background: var(--bg-off);
}

.terms-pdf-fallback {
  margin: 0;
  padding: 22px;
  color: var(--text-muted);
  background: var(--bg-white);
}

/* PRICES AND BOOKINGS */
.prices-page {
  background: var(--bg-light);
}

.prices-hero {
  padding: calc(var(--nav-height) + 78px) 0 54px;
  background:
    linear-gradient(135deg, rgba(7,18,48,0.96) 0%, rgba(13,31,78,0.90) 48%, rgba(26,107,69,0.86) 100%);
  color: var(--text-white);
}

.prices-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prices-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
}

.prices-subtitle {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255,255,255,0.84);
  font-size: 1.06rem;
  line-height: 1.75;
}

.price-list-section,
.booking-section {
  padding: 58px 0;
}

.booking-section {
  padding-top: 22px;
  padding-bottom: 96px;
}

.price-list-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  height: 100%;
  text-align: center;
}

.price-list-header {
  padding: 22px 20px 10px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.price-list-title {
  margin: 0;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.price-preview-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 20px 24px;
  color: var(--navy);
}

.price-preview-link:hover,
.price-preview-link:focus {
  color: var(--navy);
}

.price-preview-thumb {
  width: min(100%, 230px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--bg-off), #ffffff);
  border: 1px solid rgba(13,31,78,0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 8px rgba(13,31,78,0.03);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}

.price-preview-link:hover .price-preview-thumb,
.price-preview-link:focus .price-preview-thumb {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.45);
  box-shadow: inset 0 0 0 8px rgba(13,31,78,0.03), var(--shadow-md);
}

.price-preview-paper {
  width: 70%;
  height: 84%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid rgba(13,31,78,0.12);
  box-shadow: 0 10px 24px rgba(13,31,78,0.14);
  transform: rotate(-1deg);
}

.preview-brand {
  color: #020817;
  font-size: 0.47rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
}

.preview-tagline {
  margin-top: 2px;
  color: #111827;
  font-size: 0.43rem;
  font-style: italic;
  font-weight: 700;
}

.preview-rule {
  width: 100%;
  height: 1px;
  margin: 9px 0 8px;
  background: rgba(13,31,78,0.35);
}

.preview-heading {
  margin-bottom: 10px;
  color: #020817;
  font-size: 0.55rem;
  font-weight: 900;
}

.preview-line {
  width: 72%;
  height: 5px;
  margin-bottom: 7px;
  background: rgba(13,31,78,0.16);
  border-radius: 8px;
}

.preview-line-long { width: 92%; }
.preview-line-short { width: 54%; }

.price-preview-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.price-preview-link:hover .price-preview-action,
.price-preview-link:focus .price-preview-action {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.booking-card,
.booking-contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.booking-card {
  padding: 36px;
}

.booking-contact-card {
  padding: 30px 28px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.booking-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.booking-subheading {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.booking-fieldset {
  border: 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 26px;
}

.booking-fieldset:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.booking-legend {
  float: none;
  width: auto;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.booking-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.booking-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.45;
}

.booking-check input {
  margin-top: 5px;
  accent-color: var(--navy);
}

.booking-submit-note {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.quote-alert {
  display: none;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
}
.quote-alert.success {
  display: block;
  background: rgba(22,163,74,0.10);
  color: var(--success);
  border: 1px solid rgba(22,163,74,0.25);
}
.quote-alert.error {
  display: block;
  background: rgba(220,38,38,0.08);
  color: var(--error);
  border: 1px solid rgba(220,38,38,0.20);
}

.booking-contact-title {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.booking-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}

.booking-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-body);
}

.booking-contact-list svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 5px;
}

.booking-contact-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-contact-value {
  display: block;
  color: var(--navy);
  font-weight: 700;
}

/* ─── WHATSAPP FAB ─── */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--t) var(--ease);
  animation: pulse-ring 2.4s ease infinite;
}
.fab-whatsapp:hover {
  background: var(--whatsapp-dark);
  color: var(--text-white);
  transform: scale(1.10);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
  animation: none;
}
.fab-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(7,18,48,0.90);
  color: var(--text-white);
  font-size: 0.80rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ─── RESPONSIVE ─── */

/* Tablet */
@media (max-width: 1024px) {
  .hero-logo-frame { width: 240px; height: 240px; }
  .hero-logo-img   { width: 150px; height: 150px; }
}

/* Mobile navigation breakpoint */
@media (max-width: 991px) {
  .nav-inner {
    gap: 16px;
  }

  .nav-brand {
    flex: 1 1 auto;
  }

  .nav-brand-text {
    flex: 1 1 auto;
  }

  .nav-brand-top {
    white-space: normal;
    line-height: 1.12;
  }

  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger { display: flex; }
}

/* Tablet/Mobile section adjustments */
@media (max-width: 768px) {
  :root { --nav-height: 88px; }

  .site-nav.scrolled,
  .site-nav.scrolled .nav-inner {
    height: var(--nav-height);
  }

  .site-nav .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-logo {
    width: 68px;
    height: 68px;
  }

  .nav-brand-top {
    font-size: clamp(0.92rem, 4.2vw, 1.15rem);
  }

  .mobile-menu {
    padding-left: 16px;
    padding-right: 16px;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
  }

  .btn {
    white-space: normal;
  }

  .about-section,
  .services-section,
  .why-section,
  .cta-banner,
  .contact-section { padding: 80px 0; }

  .hero-section {
    padding-top: calc(var(--nav-height) + 20px);
    padding-bottom: 60px;
    min-height: auto;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-badge {
    width: fit-content;
    max-width: min(100%, 340px);
  }
  .hero-heading { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero-subheading { font-size: 1.1rem; }
  .hero-trust-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .contact-form-card { padding: 28px 20px; }
  .contact-info-panel { padding: 28px 20px; }
  .terms-document-header { align-items: flex-start; flex-direction: column; }
  .terms-pdf-viewer { min-height: 560px; height: 72vh; }
  .prices-hero { padding-top: calc(var(--nav-height) + 56px); }
  .price-preview-thumb { width: min(100%, 210px); }
  .booking-card { padding: 28px 20px; }
  .booking-contact-card { position: static; padding: 28px 20px; }

  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 300px; justify-content: center; }

  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .service-card--wide { flex-direction: column; }

  .fab-whatsapp { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .fab-tooltip { display: none; }
}

/* Small mobile */
@media (max-width: 480px) {
  :root { --nav-height: 76px; }

  .site-nav .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-inner {
    gap: 8px;
  }

  .nav-brand {
    gap: 8px;
  }

  .nav-logo {
    width: 50px;
    height: 50px;
  }

  .nav-brand-top {
    font-size: clamp(0.78rem, 4vw, 0.92rem);
    line-height: 1.08;
  }

  .nav-hamburger {
    padding: 8px;
  }

  .mobile-menu {
    padding: 18px 12px 24px;
  }

  .mobile-contact-bar {
    gap: 8px;
  }

  .mobile-contact-link {
    flex: 1 1 130px;
    justify-content: center;
    padding: 8px 10px;
  }

  .btn {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-section,
  .services-section,
  .why-section,
  .cta-banner,
  .contact-section { padding: 60px 0; }

  .section-title { font-size: 1.65rem; }
  .hero-section {
    padding-top: calc(var(--nav-height) + 22px);
  }
  .hero-badge {
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 22px;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }
  .hero-badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.35;
  }
  .hero-heading  {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
    line-height: 1.08;
  }

  .intro-strip { padding: 22px 0; }

  .contact-quick-actions { flex-direction: column; }
  .contact-quick-actions .btn { width: 100%; justify-content: center; }
  .terms-hero { padding-top: calc(var(--nav-height) + 42px); }
  .terms-document-section { padding: 28px 0 64px; }
  .terms-pdf-viewer { min-height: 480px; }
  .prices-hero { padding-top: calc(var(--nav-height) + 42px); }
  .price-list-section { padding: 34px 0; }
  .booking-section { padding: 12px 0 64px; }
  .price-preview-thumb { width: min(100%, 200px); }
  .booking-check-grid { grid-template-columns: 1fr; }

  .hero-trust-grid { gap: 8px; }
  .trust-item { font-size: 0.84rem; }
}

/* Extra-small phones */
@media (max-width: 360px) {
  :root { --nav-height: 70px; }

  .site-nav .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .nav-logo {
    width: 44px;
    height: 44px;
  }

  .nav-brand-top {
    font-size: 0.76rem;
  }

  .nav-hamburger {
    padding: 7px;
  }

  .ham-line {
    width: 22px;
  }

  .hero-badge,
  .terms-kicker,
  .prices-kicker {
    letter-spacing: 0.04em;
  }

  .hero-badge {
    max-width: 100%;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.68rem;
  }

  .booking-card,
  .booking-contact-card,
  .contact-form-card,
  .contact-info-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Focus states (global) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}
