/* ═══════════════════════════════════════════════════════════════
   DREAMSCAPE JOURNEY — DESIGN SYSTEM v2.0
   Brand: Navy #1A2B4A | Royal Blue #2B5BA8 | Gold #C9A227
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); background: var(--cream); color: var(--ink); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--fb); cursor: pointer; }
input, select, textarea { font-family: var(--fb); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── BRAND TOKENS ───────────────────────────────────── */
:root {
  /* Core palette from logo */
  --navy:        #1A2B4A;
  --navy-mid:    #243461;
  --royal:       #2B5BA8;
  --royal-light: #3D70C0;
  --gold:        #C9A227;
  --gold-light:  #E8BC2D;
  --gold-pale:   #FDF6E3;
  --sky:         #5B8DC9;

  /* Neutral scale */
  --white:       #FFFFFF;
  --cream:       #FAFAF8;
  --sand:        #F4F0E8;
  --sand-mid:    #EAE3D6;
  --ink:         #0D1520;
  --ink-mid:     #2A3347;
  --ink-soft:    #576078;
  --ink-faint:   #8A93A8;
  --border:      #E2E8F0;

  /* Semantic */
  --success:     #1E7A4A;
  --error:       #C0392B;

  /* Gradients */
  --g-gold:      linear-gradient(135deg, #C9A227 0%, #E8BC2D 100%);
  --g-navy:      linear-gradient(135deg, #1A2B4A 0%, #243461 100%);
  --g-royal:     linear-gradient(135deg, #2B5BA8 0%, #3D70C0 100%);
  --g-hero:      linear-gradient(160deg, rgba(13,21,32,0.93) 0%, rgba(26,43,74,0.65) 42%, rgba(13,21,32,0.85) 100%);

  /* Shadows */
  --sh-xs:   0 1px 4px rgba(13,21,32,0.06);
  --sh-sm:   0 2px 12px rgba(13,21,32,0.08);
  --sh-md:   0 6px 28px rgba(13,21,32,0.11);
  --sh-lg:   0 16px 52px rgba(13,21,32,0.16);
  --sh-xl:   0 28px 80px rgba(13,21,32,0.22);
  --sh-gold: 0 6px 28px rgba(201,162,39,0.38);
  --sh-royal:0 6px 28px rgba(43,91,168,0.32);

  /* Spacing */
  --sp-xs:  4px;  --sp-sm:  8px;  --sp-md:  16px;
  --sp-lg:  24px; --sp-xl:  32px; --sp-2xl: 48px;
  --sp-3xl: 64px; --sp-4xl: 96px;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   18px;
  --r-xl:   24px;
  --r-full: 999px;

  /* Typography */
  --fh: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Nunito Sans', system-ui, sans-serif;

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-mid:  0.28s cubic-bezier(0.4,0,0.2,1);
  --t-slow: 0.45s cubic-bezier(0.4,0,0.2,1);

  /* Layout */
  --max-w: 1220px;
  --nav-h: 72px;
}

/* ── LAYOUT UTILITIES ───────────────────────────────── */
.wrap    { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-lg); }
.section { padding: var(--sp-4xl) 0; }
.section-sm { padding: var(--sp-3xl) 0; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--fb); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.tag::before { content: ''; width: 20px; height: 1.5px; background: var(--gold); display: block; }

.h1 { font-family: var(--fh); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.06; letter-spacing: -0.01em; }
.h2 { font-family: var(--fh); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.12; }
.h3 { font-family: var(--fh); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; line-height: 1.2; }
.h4 { font-family: var(--fh); font-size: 1.2rem; font-weight: 600; line-height: 1.3; }
.body-lg { font-size: 17px; line-height: 1.82; }
.body-md { font-size: 15px; line-height: 1.75; }
.body-sm { font-size: 13px; line-height: 1.65; }
.caption { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: none; border-radius: var(--r-full);
  font-family: var(--fb); font-weight: 700; letter-spacing: 0.02em;
  cursor: pointer; transition: all var(--t-mid); white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: var(--g-gold); color: var(--navy);
  box-shadow: var(--sh-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,162,39,0.55); filter: brightness(1.05); }

.btn-navy { background: var(--g-navy); color: var(--white); box-shadow: var(--sh-md); }
.btn-navy:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); filter: brightness(1.1); }

.btn-royal { background: var(--g-royal); color: var(--white); box-shadow: var(--sh-royal); }
.btn-royal:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(43,91,168,0.5); }

.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

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

.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-md { padding: 12px 26px; font-size: 14px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-xs { padding: 7px 15px; font-size: 12px; }

/* ── FORM ELEMENTS ──────────────────────────────────── */
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label { font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); }
.fg input, .fg select, .fg textarea {
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 11px 14px; font-family: var(--fb); font-size: 14px;
  color: var(--ink); background: var(--cream); outline: none; width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--royal); box-shadow: 0 0 0 3px rgba(43,91,168,0.1); background: var(--white);
}
.fg textarea { resize: vertical; min-height: 80px; }
.r2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.r3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

/* ── CARDS ──────────────────────────────────────────── */
.card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm);
  border: 1px solid transparent;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(201,162,39,0.25); }

/* ── TOPBAR ─────────────────────────────────────────── */
.topbar { background: var(--navy); padding: 8px 0; font-size: 12px; }
.topbar-in { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a, .topbar span { color: rgba(255,255,255,0.68); transition: color var(--t-fast); }
.topbar a:hover { color: var(--gold-light); }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar-right { display: flex; gap: 8px; align-items: center; }
.topbar-social a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background var(--t-fast); }
.topbar-social a:hover { background: var(--gold); }
.topbar-social svg { width: 11px; height: 11px; fill: white; }
.topbar-social { display: flex; gap: 8px; }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  background: var(--white); position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(13,21,32,0.07);
}
.nav-in { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { line-height: 1.15; }
.nav-logo-name { font-family: var(--fh); font-size: 1.3rem; font-weight: 700; color: var(--navy); }
.nav-logo-name span { color: var(--gold); }
.nav-logo-sub { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); }

/* Mega nav */
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: var(--r-sm);
  font-size: 13.5px; font-weight: 600; color: var(--ink-mid);
  transition: all var(--t-fast); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--sand); }
.nav-link svg { width: 12px; height: 12px; fill: currentColor; transition: transform var(--t-fast); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--sh-xl); border: 1px solid var(--border);
  padding: 20px; min-width: 500px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--t-mid); z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.nav-dd-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px;
  border-radius: var(--r-sm); font-size: 13px; font-weight: 500; color: var(--ink-mid);
  transition: all var(--t-fast);
}
.nav-dd-item:hover { background: var(--sand); color: var(--navy); }
.nav-dd-flag { font-size: 16px; }
.nav-dd-section { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding: 0 10px; margin-bottom: 6px; grid-column: 1/-1; margin-top: 12px; }
.nav-dd-section:first-child { margin-top: 0; }

.nav-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mob-nav { display: none; background: var(--white); border-top: 1px solid var(--border); overflow-y: auto; max-height: calc(100vh - var(--nav-h)); }
.mob-nav.open { display: block; }
.mob-nav-item { border-bottom: 1px solid var(--sand); }
.mob-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 15px var(--sp-lg); font-size: 15px; font-weight: 600; color: var(--ink-mid); }
.mob-nav-link svg { width: 14px; height: 14px; fill: var(--ink-faint); transition: transform 0.3s; }
.mob-nav-sub { display: none; background: var(--sand); padding: 8px var(--sp-lg) 12px; }
.mob-nav-sub.open { display: block; }
.mob-nav-sub a { display: block; padding: 8px 0; font-size: 14px; color: var(--ink-mid); border-bottom: 1px solid var(--sand-mid); }
.mob-nav-sub a:last-child { border: none; }
.mob-cta { padding: var(--sp-lg); display: flex; flex-direction: column; gap: 10px; }

/* ── HERO (homepage specific) ───────────────────────── */
.hero {
  position: relative; min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: var(--g-hero); z-index: 1; }
.hero-content { position: relative; z-index: 3; width: 100%; }

/* ── SEARCH BAR ─────────────────────────────────────── */
.search-bar {
  background: var(--white); border-radius: var(--r-xl);
  box-shadow: var(--sh-xl); overflow: hidden;
  border: 1px solid var(--border);
}
.search-tabs { display: flex; border-bottom: 1px solid var(--border); }
.search-tab {
  padding: 14px 22px; font-size: 13px; font-weight: 700;
  color: var(--ink-soft); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--t-fast); white-space: nowrap;
  background: transparent; border-top: none; border-left: none; border-right: none;
}
.search-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.search-body { padding: 20px 24px; }
.search-fields { display: grid; grid-template-columns: 2fr 1.5fr 1fr 1fr auto; gap: 12px; align-items: end; }
.sf-group { display: flex; flex-direction: column; gap: 5px; }
.sf-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.sf-input {
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 10px 13px; font-family: var(--fb); font-size: 14px;
  color: var(--ink); background: var(--sand); outline: none;
  transition: all var(--t-fast); width: 100%;
}
.sf-input:focus { border-color: var(--royal); background: var(--white); box-shadow: 0 0 0 3px rgba(43,91,168,0.1); }
.sf-input::placeholder { color: var(--ink-faint); }

/* ── DESTINATION CARD ───────────────────────────────── */
.dest-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-sm); cursor: pointer;
  border: 1px solid var(--border);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(201,162,39,0.3); }
.dest-img { position: relative; overflow: hidden; }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover .dest-img img { transform: scale(1.07); }
.dest-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,21,32,0.6) 0%, transparent 55%); }
.dest-badge { position: absolute; top: 12px; right: 12px; font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-full); color: var(--white); z-index: 2; }
.dest-loc { position: absolute; bottom: 11px; left: 12px; z-index: 2; font-size: 11px; color: rgba(255,255,255,0.9); background: rgba(13,21,32,0.4); backdrop-filter: blur(4px); padding: 3px 9px; border-radius: var(--r-full); font-weight: 600; }
.dest-body { padding: 18px 20px; }
.dest-name { font-family: var(--fh); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.dest-meta { font-size: 12px; color: var(--royal); font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dest-meta span { color: var(--ink-soft); font-weight: 400; }
.dest-hl { display: flex; flex-direction: column; gap: 4px; margin-bottom: 0; }
.dest-hl li { font-size: 12.5px; color: var(--ink-soft); display: flex; gap: 7px; align-items: flex-start; line-height: 1.45; }
.dest-hl li::before { content: '✦'; color: var(--gold); font-size: 8px; margin-top: 4px; flex-shrink: 0; }
.dest-foot { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; border-top: 1px solid var(--sand); background: var(--sand); gap: 10px; }
.dest-price-from { font-size: 9.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.dest-price-num { font-family: var(--fh); font-size: 1.3rem; font-weight: 700; color: var(--navy); line-height: 1; }
.dest-price-pp { font-size: 9.5px; color: var(--ink-soft); }

/* ── WHY SECTION ────────────────────────────────────── */
.why-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 30px 24px;
  transition: all var(--t-mid); position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--g-gold); transform: scaleX(0); transition: transform var(--t-mid); transform-origin: left;
}
.why-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(201,162,39,0.3); transform: translateY(-3px); }
.why-card:hover::after { transform: scaleX(1); }

/* ── TESTIMONIAL CARD ───────────────────────────────── */
.testi-card {
  background: var(--white); border-radius: var(--r-lg); padding: 28px;
  border: 1px solid var(--border); position: relative;
  transition: box-shadow var(--t-mid), border-color var(--t-mid);
}
.testi-card:hover { box-shadow: var(--sh-md); border-color: rgba(201,162,39,0.3); }

/* ── CONTACT BAR ────────────────────────────────────── */
.cbar { background: var(--g-gold); padding: 52px 0; }
.cbar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
.cbar-item { color: var(--navy); }
.cbar-icon { font-size: 1.8rem; margin-bottom: 8px; }
.cbar-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(26,43,74,0.58); margin-bottom: 5px; }
.cbar-value { font-family: var(--fh); font-size: 1.15rem; font-weight: 700; }
.cbar-value a { color: var(--navy); }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: #080C14; padding: 64px 0 0; color: rgba(255,255,255,0.55); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 44px; padding-bottom: 48px; }
.footer-logo img { height: 44px; margin-bottom: 14px; }
.footer-logo p { font-size: 13px; line-height: 1.75; max-width: 250px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { width: 33px; height: 33px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all var(--t-fast); }
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); }
.footer-socials svg { width: 13px; height: 13px; fill: white; }
.footer-col h4 { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 13px; color: rgba(255,255,255,0.52); transition: color var(--t-fast); }
.footer-col li a:hover { color: var(--white); padding-left: 4px; }
.footer-nl p { font-size: 13px; line-height: 1.65; margin-bottom: 13px; }
.nl-form { display: flex; border-radius: var(--r-sm); overflow: hidden; }
.nl-input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-right: none; border-radius: var(--r-sm) 0 0 var(--r-sm); padding: 10px 12px; font-family: var(--fb); font-size: 13px; color: var(--white); outline: none; }
.nl-input::placeholder { color: rgba(255,255,255,0.3); }
.nl-btn { background: var(--gold); border: none; padding: 10px 16px; border-radius: 0 var(--r-sm) var(--r-sm) 0; cursor: pointer; color: var(--navy); font-weight: 800; font-size: 14px; transition: background var(--t-fast); }
.nl-btn:hover { background: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 11.5px; }
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.wa-tooltip { background: var(--white); color: var(--navy); font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: var(--r-full); box-shadow: var(--sh-md); white-space: nowrap; border: 1px solid var(--border); transition: opacity var(--t-mid); }
.wa-btn { width: 54px; height: 54px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 26px rgba(37,211,102,0.52); animation: waPulse 2.5s ease infinite; transition: transform var(--t-fast); }
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 25px; height: 25px; fill: white; }
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 26px rgba(37,211,102,0.52); } 50% { box-shadow: 0 8px 38px rgba(37,211,102,0.8); } }

/* ── SCROLL TOP ─────────────────────────────────────── */
.scroll-top { position: fixed; bottom: 92px; right: 27px; width: 38px; height: 38px; border-radius: 50%; background: var(--navy); color: var(--white); border: none; font-size: 14px; cursor: pointer; display: none; align-items: center; justify-content: center; z-index: 998; box-shadow: var(--sh-md); transition: background var(--t-fast); }
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--gold); color: var(--navy); }

/* ── MODAL ──────────────────────────────────────────── */
.modal { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(13,21,32,0.84); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-box { background: var(--white); border-radius: var(--r-xl); padding: 40px; width: 100%; max-width: 500px; position: relative; animation: modalIn 0.3s ease both; max-height: 92vh; overflow-y: auto; }
@keyframes modalIn { from { opacity:0; transform:translateY(24px) scale(0.97); } to { opacity:1; transform:none; } }
.modal-close { position: absolute; top: 14px; right: 14px; background: var(--sand); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink-mid); font-size: 16px; transition: background var(--t-fast); }
.modal-close:hover { background: var(--sand-mid); }
.modal-logo { height: 32px; margin-bottom: 14px; }
.modal-title { font-family: var(--fh); font-size: 1.7rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.modal-sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; }

/* ── BADGE/PILL ─────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--r-full); }
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-royal { background: var(--royal); color: var(--white); }
.badge-green { background: #1E7A4A; color: white; }

/* ── STARS ──────────────────────────────────────────── */
.stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }

/* ── REVIEW PILL ────────────────────────────────────── */
.review-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 8px 16px;
  box-shadow: var(--sh-sm);
}
.rp-score { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.rp-label { font-size: 11px; color: var(--ink-soft); }
.rp-stars { color: var(--gold); font-size: 11px; }
.rp-logo { height: 18px; opacity: 0.75; }

/* ── TICKER ─────────────────────────────────────────── */
.ticker { background: var(--navy-mid); overflow: hidden; padding: 0; border-top: 1px solid rgba(255,255,255,0.05); }
.ticker-track { display: flex; animation: tickerScroll 36s linear infinite; white-space: nowrap; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; padding: 11px 28px; border-right: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; cursor: pointer; transition: background var(--t-fast); }
.ticker-item:hover { background: rgba(201,162,39,0.08); }
.ticker-sep { padding: 0 8px; color: rgba(255,255,255,0.2); flex-shrink: 0; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero { position: relative; padding: 80px 0 60px; background: var(--g-navy); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.page-hero-content { position: relative; z-index: 2; color: var(--white); }

/* ── QUICK ENQUIRY BAR ──────────────────────────────── */
.qbar { background: var(--royal); }
.qbar-in { display: flex; align-items: stretch; flex-wrap: wrap; }
.qbar-label { background: var(--gold); color: var(--navy); font-family: var(--fh); font-size: 1rem; font-weight: 700; font-style: italic; padding: 16px 24px; display: flex; align-items: center; white-space: nowrap; letter-spacing: 0.02em; flex-shrink: 0; }
.qbar-fields { display: flex; flex: 1; flex-wrap: wrap; }
.qbar-fields input, .qbar-fields select { flex: 1; min-width: 120px; background: transparent; border: none; border-right: 1px solid rgba(255,255,255,0.12); padding: 16px 14px; font-family: var(--fb); font-size: 13px; color: var(--white); outline: none; }
.qbar-fields input::placeholder { color: rgba(255,255,255,0.45); }
.qbar-fields select { color: rgba(255,255,255,0.72); }
.qbar-fields select option { background: var(--navy); color: var(--white); }
.qbar-btn { background: var(--navy); color: var(--white); border: none; padding: 16px 26px; font-family: var(--fb); font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: background var(--t-fast); white-space: nowrap; flex-shrink: 0; }
.qbar-btn:hover { background: var(--gold); color: var(--navy); }

/* ── SUCCESS MESSAGE ────────────────────────────────── */
.form-success { display: none; background: rgba(30,122,74,0.08); border: 1px solid rgba(30,122,74,0.25); border-radius: var(--r-sm); padding: 16px; text-align: center; color: var(--success); font-weight: 600; font-size: 14px; margin-top: 12px; line-height: 1.65; }
.form-success a { color: var(--royal); text-decoration: underline; }

/* ── GRID HELPERS ───────────────────────────────────── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-lg); }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-lg); }
.gauto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: var(--sp-lg); }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-up { animation: fadeUp 0.8s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > *:nth-child(4) { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-fields > *:nth-child(4) { display: none; }
  .g4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --sp-4xl: 64px; --sp-3xl: 48px; }
  .g3 { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .cbar-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .qbar-label { display: none; }
  .topbar-left { flex-direction: column; gap: 1px; font-size: 11px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .r2 { grid-template-columns: 1fr; }
  .r3 { grid-template-columns: 1fr; }
  .search-fields { grid-template-columns: 1fr; }
  .g4 { grid-template-columns: 1fr; }
}
