/* =========================================
   Nalusia — Premium Travel Concierge
   Brand Stylesheet
   ========================================= */

/* --- Type Scale (Fluid) --- */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* --- Spacing (4px base) --- */
  --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;
  --space-32: 8rem;

  /* --- Typography --- */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;

  /* --- Radius --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  /* --- Content widths --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* --- LIGHT MODE (default) --- */
:root, [data-theme="light"] {
  --color-primary:       #1A3D5C;
  --color-primary-hover: #15324D;
  --color-primary-light: #2A5580;
  --color-secondary:     #6B8A7F;
  --color-secondary-hover: #5A7A6E;
  --color-accent:        #C9A961;
  --color-accent-hover:  #B89A52;

  --color-bg:            #FFFFFF;
  --color-surface:       #F5F5F0;
  --color-surface-2:     #EEEEE8;
  --color-text:          #1F2937;
  --color-text-muted:    #6B7280;
  --color-text-faint:    #9CA3AF;
  --color-text-inverse:  #FFFFFF;
  --color-divider:       #E5E5E0;
  --color-border:        #D4D4CF;

  --shadow-sm: 0 1px 3px rgba(26, 61, 92, 0.06);
  --shadow-md: 0 4px 14px rgba(26, 61, 92, 0.08);
  --shadow-lg: 0 12px 36px rgba(26, 61, 92, 0.12);
}

/* --- DARK MODE --- */
[data-theme="dark"] {
  --color-primary:       #6BA3D6;
  --color-primary-hover: #8AB8E4;
  --color-primary-light: #4B8BC8;
  --color-secondary:     #8BB0A2;
  --color-secondary-hover: #A0C5B5;
  --color-accent:        #D4B97A;
  --color-accent-hover:  #E0CA90;

  --color-bg:            #0F1923;
  --color-surface:       #162230;
  --color-surface-2:     #1C2B3C;
  --color-text:          #E2E8F0;
  --color-text-muted:    #94A3B8;
  --color-text-faint:    #64748B;
  --color-text-inverse:  #0F1923;
  --color-divider:       #1E3048;
  --color-border:        #263A52;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-primary:       #6BA3D6;
    --color-primary-hover: #8AB8E4;
    --color-primary-light: #4B8BC8;
    --color-secondary:     #8BB0A2;
    --color-secondary-hover: #A0C5B5;
    --color-accent:        #D4B97A;
    --color-accent-hover:  #E0CA90;
    --color-bg:            #0F1923;
    --color-surface:       #162230;
    --color-surface-2:     #1C2B3C;
    --color-text:          #E2E8F0;
    --color-text-muted:    #94A3B8;
    --color-text-faint:    #64748B;
    --color-text-inverse:  #0F1923;
    --color-divider:       #1E3048;
    --color-border:        #263A52;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.5);
  }
}

/* =========================================
   GLOBAL STYLES
   ========================================= */

body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-text);
}

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

/* --- Container --- */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}
@media (min-width: 768px) { .container { padding-inline: var(--space-8); } }

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  max-width: var(--content-wide);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .header-inner { padding: var(--space-3) var(--space-8); }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}
.logo svg { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-1);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Client Login Button */
.btn-client-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--transition-interactive), color var(--transition-interactive), transform 0.15s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-client-login:hover {
  background: var(--color-accent);
  color: #1A3D5C;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-client-login svg {
  flex-shrink: 0;
}
.mobile-client-btn {
  justify-content: center;
  width: 100%;
  margin-top: var(--space-3);
  padding: 12px 20px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .header-actions > .btn-client-login:not(.mobile-client-btn) {
    display: none;
  }
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.theme-toggle:hover {
  background: var(--color-surface);
  color: var(--color-text);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* Mobile menu */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--color-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: calc(var(--space-16) + var(--space-8)) var(--space-6) var(--space-8);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
  text-decoration: none;
  display: block;
}
.mobile-nav a:hover { color: var(--color-accent); }
.mobile-nav .mobile-cta {
  margin-top: auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-interactive);
  border: none;
  line-height: 1.4;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--color-text-inverse);
}
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-sm); }

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

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* =========================================
   HERO SECTIONS
   ========================================= */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.hero h1 {
  font-size: var(--text-3xl);
  color: #FFFFFF;
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.hero p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Smaller hero variant for inner pages */
.hero-inner {
  min-height: 55vh;
}
.hero-inner h1 {
  font-size: var(--text-2xl);
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}
.section-alt {
  background: var(--color-surface);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 4vw, var(--space-16));
}
.section-header h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}
.section-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-inline: auto;
}
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: block;
}
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--color-accent);
  margin: var(--space-4) auto;
}

/* =========================================
   CARDS
   ========================================= */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
a.card, .card[href] {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.card:hover, .card[href]:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}
.services-grid .card {
  text-align: center;
}
.services-grid .card .card-icon {
  margin-inline: auto;
}
/* Fixed 4-column services grid */
.services-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.services-grid--4 .card {
  text-align: center;
}
.services-grid--4 .card .card-icon {
  margin-inline: auto;
}
@media (max-width: 900px) {
  .services-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* Center grid when only 2 cards */
.services-grid--center {
  max-width: 800px;
  margin-inline: auto;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
}

/* =========================================
   STATS
   ========================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  text-align: center;
  padding: var(--space-6);
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial {
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  text-align: center;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.3;
  position: absolute;
  top: var(--space-3);
  left: var(--space-4);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.testimonial blockquote {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  padding-top: var(--space-6);
  font-style: italic;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* =========================================
   PROCESS / STEPS
   ========================================= */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  counter-reset: step;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .process-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
.process-step {
  text-align: center;
  counter-increment: step;
  position: relative;
}
.step-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: block;
}
.process-step h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.process-step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-inline: auto;
}

/* =========================================
   PROBLEM / SOLUTION
   ========================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--space-12); }
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--color-primary);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
  text-align: center;
}
[data-theme="dark"] .cta-banner {
  background: var(--color-surface-2);
}
.cta-banner h2 {
  font-size: var(--text-2xl);
  color: #FFFFFF;
  margin-bottom: var(--space-3);
}
[data-theme="dark"] .cta-banner h2 {
  color: var(--color-text);
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
  margin-inline: auto;
}
[data-theme="dark"] .cta-banner p {
  color: var(--color-text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--space-2); }
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.footer-col a:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.footer-bottom p,
.footer-bottom a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer-bottom a:hover { color: var(--color-accent); }

.social-links {
  display: flex;
  gap: var(--space-3);
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  transition: all var(--transition-interactive);
}
.social-links a:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* =========================================
   WHATSAPP BUTTON
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  color: #FFFFFF;
}

/* =========================================
   CONTACT FORM
   ========================================= */
.form-group {
  margin-bottom: var(--space-4);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.1);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* =========================================
   DESTINATIONS CAROUSEL
   ========================================= */
.dest-carousel {
  position: relative;
}
.dest-carousel-track {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-2);
}
.dest-carousel-track::-webkit-scrollbar {
  display: none;
}
.dest-carousel-track > .destination-card {
  flex: 0 0 calc((100% - var(--space-4) * 2) / 3);
  scroll-snap-align: start;
}
@media (max-width: 900px) {
  .dest-carousel-track > .destination-card {
    flex: 0 0 calc((100% - var(--space-4)) / 2);
  }
}
@media (max-width: 560px) {
  .dest-carousel-track > .destination-card {
    flex: 0 0 85%;
  }
}
/* Nav: arrows + dots centered below */
.dest-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.dest-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.dest-nav-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #1A3D5C;
  transform: scale(1.08);
}
.dest-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dest-dots .dest-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}
.dest-dots .dest-dot.active {
  background: var(--color-accent);
  transform: scale(1.3);
}
/* B2B carousel: card sizing + overrides */
.b2b-carousel .dest-carousel-track > .card.destination-card {
  flex: 0 0 calc((100% - var(--space-4) * 2) / 3);
  scroll-snap-align: start;
  aspect-ratio: auto;
  cursor: default;
}
.b2b-carousel .dest-carousel-track > .card.destination-card h3 {
  color: var(--color-text);
}
@media (max-width: 900px) {
  .b2b-carousel .dest-carousel-track > .card.destination-card {
    flex: 0 0 calc((100% - var(--space-4)) / 2);
  }
}
@media (max-width: 560px) {
  .b2b-carousel .dest-carousel-track > .card.destination-card {
    flex: 0 0 85%;
  }
}
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.destination-card:hover img { transform: scale(1.05); }
.destination-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
}
.destination-card h3 {
  color: #FFFFFF;
  font-size: var(--text-lg);
}

/* =========================================
   INCLUDED LIST
   ========================================= */
.included-list {
  list-style: none;
}
.included-list li {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.included-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}

/* =========================================
   VALUES GRID
   ========================================= */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
.value-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.value-item h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-1);
}
.value-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* =========================================
   CASE STUDY
   ========================================= */
.case-study {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border-left: 4px solid var(--color-accent);
}
.case-study h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.case-study p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.case-study-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  display: block;
}

/* =========================================
   CONTACT INFO
   ========================================= */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  margin-bottom: var(--space-3);
}
.contact-info-card .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme="dark"] .contact-info-card .icon {
  background: var(--color-surface-2);
  color: var(--color-primary);
}
.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-info-card p,
.contact-info-card a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}
@keyframes reveal-fade {
  to { opacity: 1; }
}

/* JS fallback for browsers that don't support scroll-driven animations */
.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.js-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   MAP
   ========================================= */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-divider);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

/* =========================================
   LANGUAGE SELECTOR
   ========================================= */
.lang-selector {
  position: relative;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition-interactive), color var(--transition-interactive);
  height: 40px;
}
.lang-toggle:hover {
  background: var(--color-surface);
  color: var(--color-text);
}
.lang-toggle svg { flex-shrink: 0; }
.lang-current { min-width: 1.5em; text-align: center; }

.lang-dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  min-width: 160px;
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
  overflow: hidden;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background var(--transition-interactive), color var(--transition-interactive);
  border: none;
  background: none;
}
.lang-option:hover {
  background: var(--color-surface);
  color: var(--color-text);
}
.lang-option.active {
  color: var(--color-accent);
  font-weight: 600;
}

/* =========================================
   TESTIMONIAL STARS
   ========================================= */
.testimonial-stars {
  color: #F59E0B;
  font-size: var(--text-lg);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-2);
  text-align: right;
  position: relative;
  z-index: 2;
}

/* Google reviews link */
.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-accent);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.google-reviews-link:hover {
  color: var(--color-accent-hover);
}

/* =========================================
   FAQ CHATBOT
   ========================================= */
.chatbot-bubble {
  position: fixed;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #1A3D5C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26, 61, 92, 0.35);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}
.chatbot-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(26, 61, 92, 0.45);
}
.chatbot-bubble svg {
  width: 28px;
  height: 28px;
}

.chatbot-panel {
  position: fixed;
  bottom: calc(var(--space-6) + 56px + var(--space-3));
  left: var(--space-6);
  z-index: 91;
  width: 360px;
  max-width: calc(100vw - var(--space-8));
  max-height: 480px;
  background: #1A3D5C;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.95);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.chatbot-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.chatbot-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: #FFFFFF;
  letter-spacing: 0.02em;
}
.chatbot-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.chatbot-close:hover {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.chatbot-body::-webkit-scrollbar { width: 4px; }
.chatbot-body::-webkit-scrollbar-track { background: transparent; }
.chatbot-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

.chatbot-welcome {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
  line-height: 1.5;
  margin-bottom: var(--space-2);
}

.chatbot-questions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.chatbot-q-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: var(--space-3) var(--space-4);
  background: rgba(201, 169, 97, 0.15);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--radius-md);
  color: #C9A961;
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-interactive), border-color var(--transition-interactive);
  line-height: 1.4;
}
.chatbot-q-btn:hover {
  background: rgba(201, 169, 97, 0.25);
  border-color: rgba(201, 169, 97, 0.5);
}

.chatbot-answer {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: rgba(255,255,255,0.9);
  font-size: var(--text-sm);
  line-height: 1.6;
  animation: chatbot-fade-in 0.3s var(--ease-out);
}
.chatbot-answer-q {
  font-weight: 600;
  color: #C9A961;
  font-size: var(--text-xs);
  margin-bottom: var(--space-2);
}

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

/* =========================================
   PREMIUM SERVICES GRID
   ========================================= */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .premium-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.premium-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.premium-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.premium-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--color-accent);
}
.premium-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.premium-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* =========================================
   PARTNERS MARQUEE
   ========================================= */
.partners-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  padding: var(--space-4) 0;
}
.partners-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 50s linear infinite;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
.partners-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.partner-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  white-space: nowrap;
  padding: var(--space-2) var(--space-4);
  opacity: 0.75;
  transition: opacity var(--transition-interactive);
}
.partner-name:hover {
  opacity: 1;
}
.partner-sep {
  color: var(--color-accent);
  font-size: var(--text-lg);
  opacity: 0.5;
  padding: 0 var(--space-1);
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   TESTIMONIALS CAROUSEL
   ========================================= */
.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  gap: var(--space-4);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.carousel-track .testimonial {
  flex: 0 0 calc((100% - var(--space-4)) / 2);
  min-width: 0;
  box-sizing: border-box;
  padding: 0;
}
@media (max-width: 767px) {
  .carousel-track {
    gap: 0;
  }
  .carousel-track .testimonial {
    flex: 0 0 100%;
  }
}
.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-interactive);
  z-index: 2;
}
.carousel-arrow:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}
@media (max-width: 767px) {
  .carousel-arrow {
    width: 36px;
    height: 36px;
  }
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-divider);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-interactive);
}
.carousel-dot.active {
  background: var(--color-accent);
  width: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none !important;
  }
}

/* Mobile responsive chatbot */
@media (max-width: 480px) {
  .chatbot-panel {
    left: var(--space-3);
    right: var(--space-3);
    width: auto;
    bottom: calc(var(--space-6) + 56px + var(--space-3));
    max-height: 60vh;
  }
  .chatbot-bubble {
    left: var(--space-4);
    bottom: var(--space-4);
    width: 48px;
    height: 48px;
  }
  .chatbot-bubble svg { width: 24px; height: 24px; }
}
