/**
 * global.css — Design System
 * Langco Bay Retreat — "Calm Luxury on Lang Co Bay"
 *
 * Brand tokens, layout system, component base styles.
 * CSS custom properties only — no framework.
 */

/* ========================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ======================================== */

:root {
  /* Brand Colors — from BRIEF v2.2 */
  --ocean-blue: #1B4965;
  --ocean-light: #5FA8D3;
  --ocean-lighter: #A8D8EA;
  --sand-gold: #C9A96E;
  --sand-gold-light: #E0CFA8;
  --warm-ivory: #FAF6F0;
  --deep-navy: #0D2137;
  --soft-stone: #B8B2A8;
  --white: #FFFFFF;
  --text-primary: #2C2C2C;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --error: #DC2626;
  --success: #16A34A;

  /* Semantic Colors */
  --color-bg: var(--warm-ivory);
  --color-bg-alt: var(--white);
  --color-bg-dark: var(--deep-navy);
  --color-primary: var(--ocean-blue);
  --color-primary-light: var(--ocean-light);
  --color-accent: var(--sand-gold);
  --color-accent-light: var(--sand-gold-light);
  --color-text: var(--text-primary);
  --color-text-muted: var(--text-muted);
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;

  /* Typography */
  --font-heading: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Montserrat', 'Inter', sans-serif;

  /* Font Sizes — fluid scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.2vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  --text-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
  --text-xl: clamp(1.1875rem, 1.1rem + 0.45vw, 1.3125rem);
  --text-2xl: clamp(1.4375rem, 1.3rem + 0.7vw, 1.75rem);
  --text-3xl: clamp(1.75rem, 1.5rem + 1.25vw, 2.25rem);
  --text-4xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-5xl: clamp(2.5rem, 2rem + 2.5vw, 3.75rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(4rem, 3rem + 5vw, 8rem);

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;
  --container-padding: clamp(1rem, 0.5rem + 2.5vw, 2rem);
  --header-height: 80px;

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 2px 12px rgba(27, 73, 101, 0.08);
  --shadow-card-hover: 0 8px 30px rgba(27, 73, 101, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-header: 50;
  --z-modal: 100;
  --z-toast: 200;
}


/* ========================================
   2. RESET & BASE STYLES
   ======================================== */

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

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

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

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

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

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

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

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

ul, ol {
  list-style: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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


/* ========================================
   3. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--deep-navy);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-md);
}

.text-accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-text-muted);
}

.section-label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}


/* ========================================
   4. LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding-block: var(--space-section);
}

.section--dark {
  background-color: var(--color-bg-dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

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

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

.text-center { text-align: center; }


/* ========================================
   5. BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--white);
}

.btn--primary:hover {
  background-color: #b89355;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: var(--color-primary);
  color: var(--white);
}

.btn--secondary:hover {
  background-color: #164058;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

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

.btn--outline-dark {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn--outline-dark:hover {
  background-color: var(--color-primary);
  color: var(--white);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--text-xs);
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--text-base);
}


/* ========================================
   6. CARDS
   ======================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body {
  padding: var(--space-lg);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}


/* ========================================
   7. BADGE
   ======================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-full);
  line-height: 1;
}

.badge--gold {
  background-color: var(--sand-gold-light);
  color: #7C6A3B;
}

.badge--ocean {
  background-color: var(--ocean-lighter);
  color: var(--ocean-blue);
}

.badge--pool {
  background-color: #DBEAFE;
  color: #1E40AF;
}

.badge--overlay {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
}


/* ========================================
   8. HERO SECTION
   ======================================== */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero--full {
  min-height: 100vh;
}

.hero--compact {
  min-height: 50vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 33, 55, 0.3) 0%,
    rgba(13, 33, 55, 0.5) 50%,
    rgba(13, 33, 55, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-xl);
  padding-top: 100px;
}

.hero__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand-gold-light);
  margin-bottom: var(--space-md);
}

.hero__title {
  font-size: var(--text-5xl);
  color: var(--white);
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}


/* ========================================
   9. SECTION HEADER
   ======================================== */

.section-header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

.section-header__title {
  margin-bottom: var(--space-md);
}

.section-header__subtitle {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.7;
}


/* ========================================
   10. FORM STYLES
   ======================================== */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 73, 101, 0.1);
}

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

/* Honeypot (hidden from users, visible to bots) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}


/* ========================================
   11. WAVE DIVIDER
   ======================================== */

.wave-divider {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.wave-divider--top {
  margin-bottom: -1px;
}

.wave-divider--bottom {
  margin-top: -1px;
}


/* ========================================
   12. SCROLL ANIMATIONS
   ======================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 600ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 700ms; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(9) { transition-delay: 800ms; opacity: 1; transform: translateY(0); }


/* ========================================
   13. ACCOMMODATION-SPECIFIC
   ======================================== */

.accommodation-specs {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: var(--space-xl) 0;
}

.accommodation-specs__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.accommodation-specs__icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.accommodation-specs__label {
  font-weight: 500;
  color: var(--color-text);
}

.filter-bar {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.filter-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--white);
}


/* ========================================
   14. STICKY CTA BAR (Mobile)
   ======================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: var(--white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-md);
  display: none;
  gap: var(--space-sm);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }
  
  .sticky-cta .btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
  }
  
  body {
    padding-bottom: 64px;
  }
}


/* ========================================
   15. GALLERY & LIGHTBOX
   ======================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 55, 0);
  transition: background var(--transition-base);
}

.gallery-item:hover::after {
  background: rgba(13, 33, 55, 0.2);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}


/* ========================================
   16. CHAT WIDGET
   ======================================== */

.chat-widget {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: var(--z-sticky);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  .chat-widget {
    bottom: calc(64px + var(--space-md));
    right: var(--space-md);
  }
}

.chat-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.chat-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.chat-btn--zalo {
  background: #0068FF;
  color: white;
}

.chat-btn--whatsapp {
  background: #25D366;
  color: white;
}

.chat-btn svg {
  width: 24px;
  height: 24px;
}


/* ========================================
   17. BREADCRUMB
   ======================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-md) 0;
}

.breadcrumb a {
  color: var(--color-text-muted);
}

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

.breadcrumb__separator {
  color: var(--color-text-light);
}

.breadcrumb__current {
  color: var(--color-text);
  font-weight: 500;
}


/* ========================================
   18. FAQ ACCORDION
   ======================================== */

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--deep-navy);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-accent);
}

.faq-item.active .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer__content {
  padding-bottom: var(--space-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
}


/* ========================================
   19. CTA BANNER
   ======================================== */

.cta-banner {
  position: relative;
  padding: var(--space-4xl) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner--ocean {
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-navy) 100%);
  color: var(--white);
}

.cta-banner--sand {
  background: linear-gradient(135deg, var(--warm-ivory) 0%, var(--sand-gold-light) 100%);
}

.cta-banner__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

.cta-banner--ocean .cta-banner__title {
  color: var(--white);
}

.cta-banner__subtitle {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-inline: auto;
  opacity: 0.9;
}

/* ========================================
   20. HOTEL LINK BOOKING WIDGET
   ======================================== */

#hbe-bws-wrapper-widget-code {
  width: 100%;
  font-family: var(--font-body) !important;
}

#hbe-bws-wrapper-widget-code #search-widget-panel {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: var(--space-md);
  width: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

#hbe-bws-wrapper-widget-code #search-widget-panel > div,
#hbe-bws-wrapper-widget-code [class*="swp-col"] {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

#hbe-bws-wrapper-widget-code input,
#hbe-bws-wrapper-widget-code select,
#hbe-bws-wrapper-widget-code .swp-input {
  width: 100% !important;
  min-height: 52px !important;
  padding: 0.75rem 1rem !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-md) !important;
  background: var(--white) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  font-size: var(--text-sm) !important;
  box-shadow: none !important;
}

#hbe-bws-wrapper-widget-code #bws-button-search {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 52px;
  padding: 0.75rem 1.5rem !important;
  border: 0 !important;
  border-radius: var(--radius-md) !important;
  background: var(--sand-gold) !important;
  color: var(--deep-navy) !important;
  font-family: var(--font-accent) !important;
  font-size: var(--text-sm) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.25) !important;
  transition: transform var(--transition-fast), background var(--transition-fast) !important;
}

#hbe-bws-wrapper-widget-code #bws-button-search:hover {
  background: var(--sand-gold-light) !important;
  transform: translateY(-1px);
}

.booking-widget .hbe-bws,
.booking-widget #hbe-bws-wrapper {
  width: 100%;
  font-family: var(--font-body) !important;
}

.booking-widget #hbe-bws-wrapper {
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.booking-widget .hbe-bws input,
.booking-widget .hbe-bws select {
  border-radius: var(--radius-md) !important;
  font-family: var(--font-body) !important;
}

.booking-widget .hbe-bws button,
.booking-widget .hbe-bws .btn,
.booking-widget .hbe-bws input[type="submit"] {
  border-radius: var(--radius-md) !important;
  font-family: var(--font-accent) !important;
}

@media (max-width: 768px) {
  #hbe-bws-wrapper-widget-code #search-widget-panel {
    grid-template-columns: 1fr !important;
  }

  #hbe-bws-wrapper-widget-code #bws-button-search {
    width: 100% !important;
  }

  .booking-widget #hbe-bws-wrapper {
    padding: var(--space-md);
  }
}
