/* ============================================================
   style.css — Bangato.xyz Global Design System
   Design: Luxury tropical beach house, clean & premium
   ============================================================ */

/* ─── Google Fonts Import ─────────────────────────────────── */
/* Cormorant Garamond: elegant luxury serif for headings       */
/* DM Sans: modern, highly readable sans for body text        */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ──────────────── */
:root {
  /* Colors */
  --color-primary:       #1A3C5E;   /* Deep ocean navy — richer, more premium */
  --color-primary-light: #245E8F;   /* Mid ocean blue */
  --color-primary-dark:  #112840;   /* Dark navy */
  --color-accent:        #E8920A;   /* Warm amber-gold — slightly richer than before */
  --color-accent-light:  #F5AC35;   /* Light gold */
  --color-accent-dark:   #C47A08;   /* Dark gold for hover */
  --color-bg:            #F8F6F1;   /* Warm ivory — beach-house warmth */
  --color-surface:       #FFFFFF;
  --color-text:          #18181A;   /* Near-black */
  --color-text-secondary:#3D3D3F;   /* Slightly lighter for secondary text */
  --color-text-muted:    #737380;   /* Muted — slightly warmer grey */
  --color-border:        #E8E4DC;   /* Warm border to match ivory bg */
  --color-success:       #0E9E6E;
  --color-overlay:       rgba(18, 40, 64, 0.65);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes — fluid scale */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.16);
  --shadow-card: 0 4px 20px rgba(27, 79, 114, 0.08);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.5rem;
  --nav-height:    72px;
}

/* ─── CSS Reset & Base Styles ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Typography Base ─────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--color-text);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl)); }
h2 { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); }
h3 { font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }

p {
  font-family: var(--font-body);
  line-height: 1.75;
  color: var(--color-text-muted);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  outline: none;
}

/* ─── Layout Utilities ────────────────────────────────────── */

/* Container — centered max-width wrapper */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

/* Section padding — consistent vertical rhythm */
.section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.section--sm {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

/* Section header — centered title + subtitle */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section-header__title {
  font-family: var(--font-display);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.section-header__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ─── Button System ───────────────────────────────────────── */

/* Base button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* Primary button — solid blue */
.btn--primary {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 79, 114, 0.35);
}

/* Accent button — golden sand */
.btn--accent {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.40);
}

/* Outline button — warm white border (for hero/dark backgrounds) */
.btn--outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

.btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.20);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

/* Outline primary button */
.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* Large button variant */
.btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--text-base);
}

/* ─── Navigation ──────────────────────────────────────────── */

/* Sticky top navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  /* Dark gradient scrim — ensures white text is readable over any hero photo */
  background: linear-gradient(to bottom, rgba(5,18,32,0.72) 0%, rgba(5,18,32,0.30) 70%, transparent 100%);
  transition: background var(--transition-base),
              box-shadow var(--transition-base),
              backdrop-filter var(--transition-base);
}

/* Navigation becomes solid white on scroll */
.nav.nav--scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(232,228,220,0.7);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Logo */
.nav__logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
  flex-shrink: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.nav__logo span {
  color: #FFD580;
}

.nav.nav--scrolled .nav__logo {
  color: var(--color-primary);
  text-shadow: none;
  font-weight: 700;
}

.nav.nav--scrolled .nav__logo span {
  color: var(--color-accent);
  font-weight: 700;
}

.nav__logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* Center links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  border-radius: 2px;
}

.nav__link:hover {
  color: #fff;
  text-decoration: none;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav.nav--scrolled .nav__link {
  color: #2C3E50;
  text-shadow: none;
  font-weight: 500;
}

.nav.nav--scrolled .nav__link:hover {
  color: var(--color-primary);
}

/* Nav CTA button */
.nav__cta {
  font-size: var(--text-sm);
  padding: 0.5rem 1.375rem;
  flex-shrink: 0;
}

/* Mobile hamburger button */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav.nav--scrolled .nav__hamburger span {
  background-color: var(--color-text);
}

/* Mobile menu open state */
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--color-surface);
  padding: var(--space-6) var(--container-pad);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: var(--space-4);
  z-index: 999;
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile .nav__link {
  color: var(--color-text);
  font-size: var(--text-base);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
}

.nav__mobile .nav__link:hover {
  color: var(--color-primary);
}

.nav__mobile .btn {
  margin-top: var(--space-2);
  width: 100%;
  justify-content: center;
}

/* ─── Hero Section ────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

/* Warm sunset overlay — darkens bottom for text, preserves golden sky tone */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(15, 10, 5, 0.30) 0%,
      rgba(20, 12, 5, 0.42) 40%,
      rgba(10, 8, 4, 0.72) 100%
    );
  z-index: 1;
}

/* Hero content — centered */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-pad);
}

/* Location label — warm amber pill */
.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFD580;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255, 213, 128, 0.40);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  margin-bottom: var(--space-5);
  backdrop-filter: blur(4px);
}

/* Main headline — large, bold, white with warm shadow */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.75rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.08;
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.55),
    0 4px 40px rgba(0, 0, 0, 0.35);
}

/* Italic accent — warm golden glow matching sunset */
.hero__title em {
  font-style: italic;
  color: #FFD580;
  text-shadow:
    0 0 40px rgba(255, 180, 50, 0.55),
    0 2px 12px rgba(0, 0, 0, 0.50);
}

/* Subtitle — clean white, slightly larger, good contrast */
.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 248, 235, 0.92);
  margin-bottom: var(--space-10);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

/* Hero action buttons */
.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.65);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  animation: bounceDown 2s infinite;
  font-family: var(--font-body);
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Properties Section ──────────────────────────────────── */

.properties {
  background-color: var(--color-bg);
}

/* Grid: 2 columns on desktop, 1 on mobile */
.properties__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

/* ─── Why Stay Section ────────────────────────────────────── */

.why-us {
  background-color: var(--color-bg);
}

/* Grid: 4 columns on desktop, 2 on tablet, 1 on mobile */
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* Feature block — card with left-aligned text, icon circle */
.feature-block {
  text-align: left;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* Icon: styled circle container instead of raw emoji */
.feature-block__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #EBF5FB, #D6EAF8);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.feature-block__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.feature-block__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── Booking CTA Banner ──────────────────────────────────── */

/* ─── Booking CTA Section ──────────────────────────────────── */

.booking-cta {
  background:
    radial-gradient(ellipse 80% 60% at 20% 110%, rgba(232,146,10,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% -10%, rgba(44,110,160,0.25) 0%, transparent 60%),
    linear-gradient(160deg, #0A1F30 0%, #0f2a42 45%, #0D2535 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle noise texture overlay */
.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
}

/* Glowing orb bottom-right */
.booking-cta::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,146,10,0.12) 0%, transparent 70%);
  z-index: 0;
}

/* Wave top edge */
.booking-cta__wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--color-bg);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1;
}

.booking-cta .container {
  position: relative;
  z-index: 2;
}

.booking-cta__inner {
  text-align: center;
  padding: 5rem 0 4.5rem;
}

/* Eyebrow pill */
.booking-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFD580;
  margin-bottom: 1.5rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255,213,128,0.4);
  border-radius: 100px;
  background: rgba(255,213,128,0.06);
  backdrop-filter: blur(4px);
}

.booking-cta__eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFD580;
  opacity: 0.7;
  flex-shrink: 0;
}

/* Title */
.booking-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0;
}

.booking-cta__title-mark {
  color: #FFD580;
}

/* Decorative divider */
.booking-cta__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem auto 1.5rem;
  max-width: 240px;
}

.booking-cta__rule span:first-child,
.booking-cta__rule span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,213,128,0.35), transparent);
}

.booking-cta__rule-diamond {
  font-size: 0.5rem;
  color: rgba(255,213,128,0.55);
  flex-shrink: 0;
  line-height: 1;
}

/* Subtitle */
.booking-cta__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

/* CTA Buttons container */
.booking-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

/* Shared button base */
.booking-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.75rem;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: left;
  min-width: 260px;
}

.booking-cta__btn:hover {
  transform: translateY(-3px);
}

/* Gold / primary button */
.booking-cta__btn--gold {
  background: linear-gradient(135deg, #E8920A 0%, #F5A623 50%, #E8920A 100%);
  box-shadow: 0 8px 32px rgba(232,146,10,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
  border: 1px solid rgba(255,213,128,0.3);
}

.booking-cta__btn--gold:hover {
  box-shadow: 0 14px 40px rgba(232,146,10,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
  background: linear-gradient(135deg, #d4840a 0%, #e8990f 50%, #d4840a 100%);
}

.booking-cta__btn--gold .booking-cta__btn-label {
  color: #fff;
}

.booking-cta__btn--gold .booking-cta__btn-sub {
  color: rgba(255,255,255,0.75);
}

/* Glass / secondary button */
.booking-cta__btn--glass {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}

.booking-cta__btn--glass:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}

.booking-cta__btn--glass .booking-cta__btn-label {
  color: #fff;
}

.booking-cta__btn--glass .booking-cta__btn-sub {
  color: rgba(255,255,255,0.55);
}

/* Button icon */
.booking-cta__btn-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

/* Button text stack */
.booking-cta__btn > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.booking-cta__btn-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.booking-cta__btn-sub {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Trust badges row */
.booking-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.booking-cta__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.booking-cta__trust-sep {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
}

@media (max-width: 640px) {
  .booking-cta__btn {
    min-width: 100%;
  }

  .booking-cta__buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }
}

/* ─── Footer ──────────────────────────────────────────────── */

.footer {
  background-color: #0D2535;
  color: rgba(255,255,255,0.75);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

/* Footer logo & brand */
.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer__logo span {
  color: var(--color-accent);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* Footer contact details */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-3);
}

.footer__contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Footer heading */
.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

/* Footer links list */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__link:hover {
  color: #fff;
  text-decoration: none;
}

.footer__link-icon {
  font-size: 0.875rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Footer divider & bottom bar */
.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-bottom: var(--space-6);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer__bottom-link {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

/* ─── Utility Classes ─────────────────────────────────────── */

.text-center  { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-muted); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ─── Animations ──────────────────────────────────────────── */

/* Fade-in-up on scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger reveal delays */
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ─── Responsive Breakpoints ──────────────────────────────── */

/* Tablet — 768px */
@media (max-width: 768px) {
  :root {
    --container-pad: 1rem;
  }

  /* Hide desktop nav links, show hamburger */
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero adjustments */
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Stack property cards */
  .properties__grid {
    grid-template-columns: 1fr;
  }

  /* 2-column why us */
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stack footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile — 375px */
@media (max-width: 480px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    max-height: none;
  }
}
