/* ============================================================
   OCEAN EXPRESS TRAVEL & TOURS — styles.css
   Brand: Navy #04111f | Gold #e8b84b | Cyan #00d4ff | White
   Fonts: Cinzel (headings) | Raleway (body)
   ============================================================ */

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

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:    #04111f;
  --navy2:   #091d36;
  --navy3:   #0e2d52;
  --gold:    #e8b84b;
  --gold2:   #f5d47a;
  --gold3:   #b8882b;
  --cyan:    #00d4ff;
  --cyan2:   #5bc8f5;
  --white:   #ffffff;
  --off:     #f7f4ee;
  --off2:    #ede9e0;
  --text:    #1a1a2e;
  --muted:   #6b7280;
  --success: #10b981;
  --error:   #ef4444;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(4,17,31,0.12);
  --shadow2: 0 8px 40px rgba(4,17,31,0.18);
  --trans:   all 0.3s ease;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Raleway', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: 'Raleway', sans-serif; }
input, select, textarea { font-family: 'Raleway', sans-serif; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold3); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: 'Cinzel', serif; line-height: 1.2; }
.eyebrow {
  font-family: 'Cinzel', serif; font-size: 0.62rem;
  letter-spacing: 5px; color: var(--gold3); text-transform: uppercase;
  display: block; margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--navy); margin-bottom: 0.5rem;
}
.section-title.light { color: var(--white); }
.section-rule {
  display: flex; align-items: center; gap: 12px;
  margin: 0.75rem 0 2.5rem;
}
.section-rule.center { justify-content: center; }
.rule-line  { width: 50px; height: 1px; background: var(--gold); opacity: 0.6; }
.rule-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section.dark { background: var(--navy); }
.section.navy2 { background: var(--navy2); }
.section.off  { background: var(--off); }
.text-center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 13px 28px; border-radius: var(--radius);
  border: none; transition: var(--trans); white-space: nowrap; font-weight: 600;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 16px rgba(232,184,75,0.35);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,184,75,0.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.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-dark { background: var(--navy); color: var(--gold); }
.btn-dark:hover { background: var(--navy2); }
.btn-lg { padding: 16px 36px; font-size: 0.75rem; }
.btn-sm { padding: 9px 18px; font-size: 0.6rem; }

/* ── NAVIGATION ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(4,17,31,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 0.5px solid rgba(232,184,75,0.12);
  transition: var(--trans);
}
#navbar .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: 1300px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-text .brand { font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 700; color: var(--white); letter-spacing: 2px; display: block; }
.nav-logo-text .sub   { font-family: 'Cinzel', serif; font-size: 0.48rem; letter-spacing: 3px; color: var(--gold); display: block; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-family: 'Cinzel', serif; font-size: 0.62rem; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75); text-transform: uppercase;
  transition: var(--trans); position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-book { background: var(--gold); color: var(--navy) !important; padding: 8px 20px; border-radius: var(--radius); font-weight: 700; }
.nav-book:hover { background: var(--gold2) !important; }
.nav-book::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--trans); border-radius: 2px; }
.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-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--navy); border-top: 0.5px solid rgba(232,184,75,0.15);
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.mobile-menu.open { display: flex; max-height: 500px; }
.mobile-menu a {
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 2px;
  color: rgba(255,255,255,0.8); padding: 1rem 1.5rem; border-bottom: 0.5px solid rgba(255,255,255,0.05);
  text-transform: uppercase; transition: var(--trans);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(232,184,75,0.05); }

/* ── PAGE HERO (for inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, #0e2d52 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 550px; margin: 0 auto; }
.page-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem;
  font-family: 'Cinzel', serif; letter-spacing: 1px;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── TOUR CARDS ── */
.tour-card {
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--trans); display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); }
.tour-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.tour-card-img img,
.tour-card-img .img-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-img img,
.tour-card:hover .img-placeholder { transform: scale(1.06); }
.tour-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 4px; font-weight: 700;
}
.tour-badge.popular { background: var(--cyan); color: var(--navy); }
.tour-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.tour-meta {
  display: flex; gap: 1rem; margin-bottom: 0.75rem;
  font-size: 0.72rem; color: var(--muted);
}
.tour-meta span { display: flex; align-items: center; gap: 4px; }
.tour-card-title { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.tour-card-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.tour-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--off2);
}
.tour-price { font-family: 'Cinzel', serif; font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.tour-price small { font-size: 0.65rem; color: var(--muted); font-family: 'Raleway', sans-serif; font-weight: 400; }

/* ── IMAGE PLACEHOLDERS (gradient stand-ins for photos) ── */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; padding: 1rem;
  position: relative;
}
.img-placeholder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(4,17,31,0.6) 0%, transparent 55%);
}
.ip-london     { background: linear-gradient(135deg,#1a3a5c,#2d6a9f 45%,#c4934a); }
.ip-edinburgh  { background: linear-gradient(135deg,#2c1810,#6b3a2a 45%,#a0896b); }
.ip-stonehenge { background: linear-gradient(135deg,#5a6e4a,#8a9e6a 45%,#c8b87a); }
.ip-brussels   { background: linear-gradient(135deg,#8b6914,#c9a84c 45%,#1a3060); }
.ip-amsterdam  { background: linear-gradient(135deg,#1a4a2a,#2d7a4a 45%,#8dc4a0); }
.ip-paris      { background: linear-gradient(135deg,#3a2060,#6a4a9a 45%,#c4a0c0); }
.ip-hamburg    { background: linear-gradient(135deg,#0a2a4a,#1a5a8a 45%,#70b4d4); }
.ip-rhine      { background: linear-gradient(135deg,#1a3a1a,#2a7a3a 45%,#70c490); }
.ip-titlis     { background: linear-gradient(135deg,#1a3060,#4080b0 45%,#c0d8f0); }
.ip-europe     { background: linear-gradient(135deg,#2a1060,#4a2090 45%,#8a70c0); }
.ip-hero       { background: linear-gradient(135deg,#04111f,#0e2d52 40%,#1a4a7a); }

/* ── FORMS ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #e2e8f0; border-radius: var(--radius);
  font-size: 0.88rem; color: var(--text); background: var(--white);
  transition: var(--trans); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold3); box-shadow: 0 0 0 3px rgba(232,184,75,0.1);
}
.form-group .error-msg { font-size: 0.72rem; color: var(--error); margin-top: 4px; display: none; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: var(--error); }
.form-group.has-error .error-msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 0.5px solid rgba(232,184,75,0.15);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: var(--white); letter-spacing: 2px; margin-bottom: 3px; }
.footer-brand-sub { font-family: 'Cinzel', serif; font-size: 0.5rem; letter-spacing: 4px; color: var(--gold); margin-bottom: 1rem; }
.footer-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 250px; margin-bottom: 1.25rem; }
.footer-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-badge { font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 1px; border: 0.5px solid rgba(232,184,75,0.35); color: rgba(232,184,75,0.7); padding: 4px 10px; border-radius: 3px; }
.footer-col-title { font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-line { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.5); align-items: flex-start; }
.footer-contact-label { font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 2px; color: var(--gold); min-width: 48px; text-transform: uppercase; padding-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 0.5px solid rgba(232,184,75,0.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; transition: var(--trans);
}
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.68rem; color: rgba(255,255,255,0.25); font-family: 'Cinzel', serif; letter-spacing: 1px; }

/* ── STATS BAND ── */
.stats-band {
  background: var(--navy2); border-top: 0.5px solid rgba(232,184,75,0.15);
  border-bottom: 0.5px solid rgba(232,184,75,0.15); padding: 2.5rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 1rem; }
.stat-num   { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.62rem; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; font-family: 'Cinzel', serif; }

/* ── CARDS (WHY CHOOSE US, etc.) ── */
.feature-card {
  background: var(--white); border-radius: 12px; padding: 2rem 1.5rem;
  text-align: center; box-shadow: var(--shadow); transition: var(--trans);
  border: 1px solid transparent;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow2); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy2), var(--navy3));
  margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-title { font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.feature-desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-wrap { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s ease; }
.testi-slide { min-width: 100%; padding: 0 0.5rem; }
.testi-inner {
  background: rgba(255,255,255,0.04); border: 0.5px solid rgba(232,184,75,0.15);
  border-radius: 12px; padding: 2rem; max-width: 700px; margin: 0 auto;
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 1rem; }
.testi-text  { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 1.5rem; }
.testi-author { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 2px; color: var(--gold); }
.testi-trip   { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: 3px; }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 1.5rem; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; cursor: pointer; transition: var(--trans); padding: 0; }
.testi-dot.active { background: var(--gold); }
.testi-arrows { display: flex; gap: 10px; justify-content: center; margin-top: 1rem; }
.testi-arrow { width: 38px; height: 38px; border-radius: 50%; background: transparent; border: 1px solid rgba(232,184,75,0.35); color: var(--gold); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--trans); }
.testi-arrow:hover { background: var(--gold); color: var(--navy); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 50%, var(--navy) 100%);
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,212,255,0.05) 0%, transparent 70%); }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: 'Cinzel', serif; font-size: clamp(1.5rem,3vw,2.2rem); color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 2rem; line-height: 1.8; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid var(--off2); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: 'Cinzel', serif; font-size: 0.85rem; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: var(--trans);
}
.faq-question:hover { color: var(--gold3); }
.faq-icon { font-size: 1.2rem; color: var(--gold3); flex-shrink: 0; transition: var(--trans); font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-size: 0.85rem; color: var(--muted); line-height: 1.8; padding-bottom: 1.25rem; }

/* ── ITINERARY ── */
.itinerary-item { display: flex; gap: 1.5rem; margin-bottom: 2rem; position: relative; }
.itinerary-item::before { content: ''; position: absolute; left: 22px; top: 44px; width: 2px; height: calc(100% + 2rem); background: linear-gradient(to bottom, var(--gold), transparent); z-index: 0; }
.itinerary-item:last-child::before { display: none; }
.day-badge { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'Cinzel', serif; font-size: 0.6rem; font-weight: 700; color: var(--gold); z-index: 1; position: relative; }
.itinerary-content h4 { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--navy); margin-bottom: 5px; }
.itinerary-content p  { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── INCLUDED / EXCLUDED ── */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.incl-list li { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; font-size: 0.82rem; }
.incl-list .ic { flex-shrink: 0; margin-top: 2px; font-size: 0.9rem; }
.incl-list.yes .ic { color: var(--success); }
.incl-list.no  .ic { color: var(--error); }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── ALERT / SUCCESS ── */
.alert { border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.25rem; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #ecfdf5; border: 1px solid #6ee7b7; color: #065f46; }
.alert-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ── TABS ── */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--off2); margin-bottom: 2rem; }
.tab-btn {
  background: none; border: none; padding: 0.75rem 1.5rem;
  font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 1.5px;
  color: var(--muted); cursor: pointer; position: relative; text-transform: uppercase;
  transition: var(--trans);
}
.tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--trans); }
.tab-btn.active { color: var(--navy); }
.tab-btn.active::after { width: 100%; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.gallery-item { border-radius: 8px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; }
.gallery-item .img-placeholder { width: 100%; height: 100%; transition: transform 0.4s; }
.gallery-item:hover .img-placeholder { transform: scale(1.06); }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 800px; width: 90%; position: relative; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ── DESTINATION GRID ── */
.dest-mosaic { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.dest-tile { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.dest-tile.wide { grid-column: span 2; aspect-ratio: 16/9; }
.dest-tile .img-placeholder { width: 100%; height: 100%; transition: transform 0.5s; }
.dest-tile:hover .img-placeholder { transform: scale(1.06); }
.dest-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,17,31,0.85) 0%, transparent 55%); transition: opacity 0.3s; }
.dest-tile:hover .dest-tile-overlay { opacity: 0.7; }
.dest-tile-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 1rem; }
.dest-flag { font-size: 1.4rem; margin-bottom: 3px; display: block; }
.dest-tile-name { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700; color: var(--white); }
.dest-tile-tag { font-size: 0.6rem; color: var(--gold); letter-spacing: 2px; font-family: 'Cinzel', serif; display: inline-block; margin-top: 6px; background: var(--gold); color: var(--navy); padding: 3px 10px; border-radius: 3px; opacity: 0; transform: translateY(4px); transition: all 0.3s; }
.dest-tile:hover .dest-tile-tag { opacity: 1; transform: none; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2.5rem; align-items: center; }
.filter-btn {
  background: var(--white); border: 1.5px solid var(--off2); color: var(--muted);
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 1.5px;
  padding: 8px 18px; border-radius: 20px; cursor: pointer; transition: var(--trans);
  text-transform: uppercase;
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.filter-select {
  margin-left: auto; border: 1.5px solid var(--off2); padding: 8px 14px;
  border-radius: var(--radius); font-size: 0.8rem; color: var(--muted);
  background: var(--white); cursor: pointer; outline: none;
}

/* ── LEGAL PAGES ── */
.legal-content h2 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--navy); margin: 2rem 0 0.75rem; }
.legal-content h3 { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--navy); margin: 1.5rem 0 0.5rem; }
.legal-content p  { font-size: 0.88rem; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }
.legal-content ul { margin: 0 0 1rem 1.5rem; list-style: disc; }
.legal-content li { font-size: 0.85rem; color: var(--muted); line-height: 1.8; margin-bottom: 4px; }
.legal-updated { font-size: 0.72rem; color: var(--muted); font-style: italic; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--off2); }

/* ── PRICING TABLE ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pricing-card { border-radius: 12px; overflow: hidden; border: 1.5px solid var(--off2); transition: var(--trans); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.pricing-card.featured { border-color: var(--gold); }
.pricing-head { padding: 1.75rem 1.5rem; text-align: center; background: var(--navy); }
.pricing-tier { font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 4px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.pricing-name { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--white); font-weight: 700; }
.pricing-popular { display: inline-block; background: var(--gold); color: var(--navy); font-family: 'Cinzel', serif; font-size: 0.52rem; letter-spacing: 2px; padding: 3px 10px; border-radius: 2px; margin-top: 6px; }
.pricing-amount { font-size: 2.2rem; font-weight: 900; color: var(--gold); font-family: 'Raleway', sans-serif; margin-top: 0.75rem; line-height: 1; }
.pricing-amount small { font-size: 0.7rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.pricing-deposit { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.pricing-body { padding: 1.5rem; background: var(--white); }
.pricing-feat { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; font-size: 0.8rem; color: var(--muted); }
.pricing-feat .ck { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pricing-btn { display: block; margin-top: 1.25rem; padding: 12px; text-align: center; font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 2px; border-radius: 6px; transition: var(--trans); }
.pricing-btn.outline { border: 1.5px solid var(--navy); color: var(--navy); }
.pricing-btn.outline:hover { background: var(--navy); color: var(--gold); }
.pricing-btn.filled { background: var(--gold); color: var(--navy); font-weight: 700; }
.pricing-btn.filled:hover { background: var(--gold2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .dest-mosaic { grid-template-columns: 1fr 1fr; }
  .dest-tile.wide { grid-column: span 2; }
  .incl-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .dest-mosaic { grid-template-columns: 1fr; }
  .dest-tile.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-grid { grid-template-columns: 1fr; }
  .tabs { flex-wrap: wrap; }
  .tab-btn { font-size: 0.58rem; padding: 0.6rem 1rem; }
}

/* ============================================================
   IMAGE UPGRADE — append this to the bottom of styles.css
   ============================================================ */

/* Real photo containers */
.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.tour-card:hover .photo-img,
.dest-tile:hover .photo-img,
.gallery-item:hover .photo-img { transform: scale(1.06); }

/* Hero photo overlay */
.hero-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,17,31,0.55) 0%,
    rgba(4,17,31,0.35) 40%,
    rgba(4,17,31,0.75) 100%
  );
}

/* Tour hero photo */
.tour-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Destination tile photos */
.dest-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.dest-tile:hover img { transform: scale(1.06); }

/* About / story section photo */
.story-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
