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

:root {
  --black: #0D0D0D;
  --off-white: #F5F0E8;
  --gold: #C9A96E;
  --gold-dark: #A07840;
  --dark-section: #111111;
  --mid-dark: #1A1A1A;
  --text-muted: #888888;
  --border-gold: rgba(201,169,110,0.3);
  --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Montserrat',sans-serif; background:var(--black); color:var(--off-white); overflow-x:hidden; line-height:1.6; }
h1,h2,h3,h4 { font-family:'Cormorant Garamond',serif; font-weight:400; line-height:1.15; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }

/* ── UTILITIES ── */
.container { max-width:1280px; margin:0 auto; padding:0 48px; }
.section-dark { background:var(--dark-section); padding:100px 0; }
.section-light { background:var(--off-white); color:var(--black); padding:100px 0; }
.text-center { text-align:center; }

.eyebrow {
  font-family:'Montserrat',sans-serif;
  font-size:10px; letter-spacing:5px; text-transform:uppercase;
  color:var(--gold); display:block; margin-bottom:18px;
}
.section-heading { font-size:clamp(40px,5vw,70px); margin-bottom:20px; }
.gold-line { width:56px; height:1px; background:var(--gold); margin:24px 0; }
.gold-line.center { margin:24px auto; }

.btn-gold {
  display:inline-block; padding:16px 44px;
  background:rgba(201,169,110,0.15); color:var(--off-white);
  font-family:'Montserrat',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:2.5px; text-transform:uppercase;
  border:2px solid var(--gold); transition:var(--transition); cursor:pointer;
}
.btn-gold:hover { background:#B8941F; border-color:#B8941F; color:var(--black); }

.btn-outline {
  display:inline-block; padding:16px 44px;
  background:transparent; color:var(--off-white);
  font-family:'Montserrat',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:2.5px; text-transform:uppercase;
  border:2px solid rgba(245,240,232,0.45); transition:var(--transition); cursor:pointer;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold); }

.btn-outline-gold {
  display:inline-block; padding:14px 36px;
  background:transparent; color:var(--gold);
  font-family:'Montserrat',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase;
  border:1px solid var(--gold); transition:var(--transition); cursor:pointer;
}
.btn-outline-gold:hover { background:#B8941F; border-color:#B8941F; color:var(--black); }

/* ── NAVBAR ── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:28px 60px;
  display:flex; align-items:center; justify-content:space-between;
  transition:var(--transition);
}
.navbar.scrolled {
  background:rgba(13,13,13,0.95);
  backdrop-filter:blur(12px);
  padding:18px 60px;
  border-bottom:1px solid var(--border-gold);
}
.nav-logo {
  font-family:'Cormorant Garamond',serif; font-size:26px;
  font-weight:500; color:var(--gold); letter-spacing:2px; z-index:1001;
}
.nav-logo em { font-weight:300; font-style:italic; }
.nav-links { display:flex; align-items:center; gap:36px; }
.nav-links a {
  font-size:10px; letter-spacing:2.5px; text-transform:uppercase;
  color:rgba(245,240,232,0.8); position:relative; transition:color 0.3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--gold); transition:width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color:var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width:100%; }

.nav-cta {
  font-family:'Montserrat',sans-serif;
  font-size:10px; letter-spacing:2px; text-transform:uppercase;
  padding:12px 28px; border:1px solid var(--gold); color:var(--gold);
  transition:var(--transition); z-index:1001;
}
.nav-cta:hover { background:#B8941F; border-color:#B8941F; color:var(--black); }

.hamburger {
  display:none; flex-direction:column; gap:6px;
  cursor:pointer; background:none; border:none; z-index:1001; padding:4px;
}
.hamburger span { display:block; width:26px; height:1px; background:var(--off-white); transition:var(--transition); }
.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); }

.mobile-menu {
  display:none; position:fixed; inset:0;
  background:rgba(13,13,13,0.98); z-index:999;
  flex-direction:column; align-items:center; justify-content:center; gap:36px;
  opacity:0; pointer-events:none; transition:opacity 0.4s;
}
.mobile-menu.active { opacity:1; pointer-events:all; }
.mobile-menu a {
  font-family:'Cormorant Garamond',serif; font-size:38px; font-weight:300;
  color:var(--off-white); letter-spacing:2px; transition:color 0.3s;
}
.mobile-menu a:hover { color:var(--gold); }
.mobile-menu .mob-cta {
  margin-top:16px; font-family:'Montserrat',sans-serif;
  font-size:11px; letter-spacing:3px; text-transform:uppercase;
  padding:14px 36px; border:1px solid var(--gold); color:var(--gold);
}

/* ── HERO ── */
.hero {
  position:relative; height:100vh;
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.hero-mini { height:62vh; min-height:460px; }

.hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform:scale(1.06); will-change:transform;
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom,rgba(13,13,13,0.35) 0%,rgba(13,13,13,0.55) 45%,rgba(13,13,13,0.82) 100%);
}
.hero-content {
  position:relative; text-align:center;
  max-width:920px; padding:0 40px; z-index:2;
}
.hero-title {
  font-size:clamp(48px,7vw,96px); font-weight:300;
  line-height:1.05; margin-bottom:24px; color:var(--off-white);
}
.hero-subtitle {
  font-size:15px; font-weight:300; color:rgba(245,240,232,0.78);
  max-width:560px; margin:0 auto 48px; line-height:1.85; letter-spacing:0.3px;
}
.hero-btns { display:flex; gap:20px; justify-content:center; flex-wrap:wrap; }

.scroll-indicator {
  position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:10px;
  z-index:2; opacity:0.55;
}
.scroll-indicator span { font-size:9px; letter-spacing:3px; text-transform:uppercase; }
.scroll-line {
  width:1px; height:52px;
  background:linear-gradient(to bottom,var(--gold),transparent);
  animation:scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.25;transform:scaleY(0.5)}
}

/* ── TRUST STRIP ── */
.trust-strip {
  background:var(--mid-dark); padding:60px 0;
  border-top:1px solid var(--border-gold);
  border-bottom:1px solid var(--border-gold);
}
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.trust-item {
  text-align:center; padding:24px 20px;
  border-right:1px solid var(--border-gold);
}
.trust-item:last-child { border-right:none; }
.trust-number {
  font-family:'Cormorant Garamond',serif; font-size:54px;
  font-weight:300; color:var(--gold); line-height:1; margin-bottom:8px;
}
.trust-label { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--text-muted); }

/* ── WELCOME SECTION ── */
.welcome-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.welcome-grid > * { min-width:0; }
.welcome-text { padding-right:0; overflow-wrap:break-word; word-break:break-word; }
.welcome-text p { font-size:15px; line-height:1.95; color:#555; margin-bottom:20px; max-width:100%; }
.welcome-image-wrap { position:relative; }
.welcome-image-wrap::before {
  content:''; position:absolute;
  top:-18px; right:-18px; bottom:18px; left:18px;
  border:1px solid var(--gold); z-index:0; pointer-events:none;
}
.welcome-image-wrap img { position:relative; z-index:1; width:100%; height:580px; object-fit:cover; }

/* ── TRIP TYPES ── */
.trips-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; }
.trip-card { position:relative; height:520px; overflow:hidden; cursor:pointer; }
.trip-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s ease; }
.trip-card:hover img { transform:scale(1.09); }
.trip-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(13,13,13,0.88) 0%,rgba(13,13,13,0.15) 55%,transparent 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:flex-end;
  padding:48px 24px;
}
/* SVG data-uri for dashed circle — gives full control over dasharray gap */
.trip-circle {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:280px; height:280px; border-radius:50%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Ccircle cx='140' cy='140' r='136' fill='none' stroke='%23C9A96E' stroke-opacity='0.45' stroke-width='1.5' stroke-dasharray='10 10'/%3E%3C/svg%3E");
  background-size:100% 100%;
  opacity:0.7;
  pointer-events:none;
  transition:opacity 0.4s ease, transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.trip-card:hover .trip-circle {
  opacity:1;
  transform:translate(-50%,-50%) scale(1.06);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Ccircle cx='140' cy='140' r='136' fill='none' stroke='%23C9A96E' stroke-opacity='1' stroke-width='1.5' stroke-dasharray='10 10'/%3E%3C/svg%3E");
}
.trip-card-name {
  font-family:'Cormorant Garamond',serif; font-size:24px; font-weight:400;
  letter-spacing:2px; text-align:center; color:var(--off-white); position:relative; z-index:1;
}
.trip-card-link {
  font-size:9px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); margin-top:10px; opacity:0; transform:translateY(10px);
  transition:var(--transition); position:relative; z-index:1;
}
.trip-card:hover .trip-card-link { opacity:1; transform:translateY(0); }

/* ── DESTINATIONS ── */
.dest-scroll {
  display:flex; gap:20px; overflow-x:auto; padding:24px 0 48px;
  scrollbar-width:none; -webkit-overflow-scrolling:touch;
}
.dest-scroll::-webkit-scrollbar { display:none; }
.dest-card { flex:0 0 280px; position:relative; overflow:hidden; cursor:pointer; }
.dest-card img { width:280px; height:400px; object-fit:cover; transition:transform 0.6s ease; }
.dest-card:hover img { transform:scale(1.06); }
.dest-card-info {
  position:absolute; bottom:0; left:0; right:0;
  padding:80px 24px 28px;
  background:linear-gradient(to top,rgba(13,13,13,0.9),transparent);
}
.dest-name { font-family:'Cormorant Garamond',serif; font-size:30px; font-weight:400; color:var(--off-white); }
.dest-explore {
  font-size:10px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); display:flex; align-items:center; gap:8px; margin-top:6px;
}
.dest-explore::after { content:'→'; transition:transform 0.3s; }
.dest-card:hover .dest-explore::after { transform:translateX(4px); }

/* ── WHY US ── */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.why-item { text-align:center; padding:48px 32px; min-width:0; overflow-wrap:break-word; }
.why-icon { font-size:32px; color:var(--gold); margin-bottom:24px; display:block; }
.why-item h3 { font-size:28px; color:var(--off-white); margin-bottom:16px; line-height:1.2; }
.why-item p { font-size:14px; line-height:1.85; color:var(--text-muted); max-width:100%; }

/* ── TESTIMONIALS ── */
.t-wrap { max-width:800px; margin:0 auto; text-align:center; position:relative; }
.t-quote { font-family:'Cormorant Garamond',serif; font-size:130px; line-height:0.4; color:var(--gold); opacity:0.35; display:block; margin-bottom:24px; }
.t-text { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:300; font-style:italic; color:var(--black); line-height:1.65; margin-bottom:32px; transition:opacity 0.3s; }
.t-author { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.t-stars { color:var(--gold); font-size:16px; letter-spacing:4px; }
.t-nav { display:flex; justify-content:center; gap:12px; margin-top:36px; }
.t-dot { width:8px; height:8px; border-radius:50%; background:#ccc; cursor:pointer; transition:background 0.3s; border:none; }
.t-dot.active { background:var(--gold); }

/* ── CTA BAND ── */
.cta-band { position:relative; height:500px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.cta-band .hero-overlay { background:rgba(13,13,13,0.65); }
.cta-content { position:relative; z-index:2; text-align:center; padding:0 40px; }
.cta-content h2 { font-size:clamp(40px,5vw,68px); color:var(--off-white); margin-bottom:36px; font-weight:300; }

/* ── FOOTER ── */
.footer { background:#080808; padding:80px 0 40px; border-top:1px solid var(--border-gold); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer-logo { font-family:'Cormorant Garamond',serif; font-size:28px; color:var(--gold); letter-spacing:2px; margin-bottom:16px; }
.footer-tagline { font-size:13px; color:var(--text-muted); line-height:1.85; margin-bottom:28px; max-width:300px; }
.footer-social { display:flex; gap:14px; }
.footer-social a {
  width:40px; height:40px; border:1px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center;
  font-size:15px; color:var(--text-muted); transition:var(--transition);
}
.footer-social a:hover { border-color:var(--gold); color:var(--gold); }
.footer-col h4 { font-family:'Montserrat',sans-serif; font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--off-white); margin-bottom:24px; }
.footer-col ul li { margin-bottom:12px; }
.footer-col ul li a { font-size:13px; color:var(--text-muted); transition:color 0.3s; }
.footer-col ul li a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid var(--border-gold); padding-top:28px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
}
.footer-bottom p { font-size:12px; color:var(--text-muted); }
.trust-badges { display:flex; gap:16px; align-items:center; }
.trust-badge { font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--gold); border:1px solid var(--border-gold); padding:6px 14px; }

/* ── POPUP ── */
.popup-overlay {
  position:fixed; inset:0; background:rgba(13,13,13,0.92); z-index:2000;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity 0.4s; padding:20px;
}
.popup-overlay.active { opacity:1; pointer-events:all; }
.popup-modal {
  background:var(--off-white); max-width:840px; width:100%;
  display:grid; grid-template-columns:1fr 1fr; overflow:hidden;
  transform:scale(0.88); transition:transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  position:relative;
}
.popup-overlay.active .popup-modal { transform:scale(1); }
.popup-image img { width:100%; height:100%; min-height:500px; object-fit:cover; }
.popup-content { padding:60px 48px; background:var(--off-white); color:var(--black); }
.popup-eyebrow { font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; display:block; }
.popup-content h2 { font-family:'Cormorant Garamond',serif; font-size:32px; font-weight:400; line-height:1.25; margin-bottom:14px; color:var(--black); }
.popup-content p { font-size:13px; color:#666; line-height:1.75; margin-bottom:28px; }
.popup-form input {
  width:100%; padding:14px 16px; border:1px solid #ddd;
  font-family:'Montserrat',sans-serif; font-size:13px;
  margin-bottom:12px; outline:none; transition:border-color 0.3s;
  background:white; color:var(--black);
}
.popup-form input:focus { border-color:var(--gold); }
.popup-form button {
  width:100%; padding:16px; background:var(--gold); color:var(--black);
  font-family:'Montserrat',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; border:none; cursor:pointer;
  transition:var(--transition); margin-top:4px;
}
.popup-form button:hover { background:var(--gold-dark); }
.popup-close {
  position:absolute; top:18px; right:18px; background:none; border:none;
  color:var(--black); font-size:22px; cursor:pointer; z-index:10;
  width:36px; height:36px; display:flex; align-items:center; justify-content:center;
  transition:color 0.3s;
}
.popup-close:hover { color:var(--gold); }

/* ── ANIMATIONS ── */
.fade-up { opacity:0; transform:translateY(44px); transition:opacity 0.75s ease,transform 0.75s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-up:nth-child(2){transition-delay:0.1s}
.fade-up:nth-child(3){transition-delay:0.2s}
.fade-up:nth-child(4){transition-delay:0.3s}
.fade-in { opacity:0; transition:opacity 0.8s ease; }
.fade-in.visible { opacity:1; }

/* ── ABOUT PAGE ── */
.about-block { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-bottom:80px; }
.about-block:last-child { margin-bottom:0; }
.about-block.reverse { direction:rtl; }
.about-block.reverse > * { direction:ltr; }
.about-block img { width:100%; height:500px; object-fit:cover; }
.about-text h2 { font-size:clamp(34px,4vw,52px); color:var(--black); margin-bottom:24px; }
.about-text p { font-size:15px; line-height:1.95; color:#555; margin-bottom:16px; }
.trust-items-row { display:flex; justify-content:center; gap:60px; flex-wrap:wrap; }
.trust-badge-item { text-align:center; }
.trust-badge-item .badge-num { font-family:'Cormorant Garamond',serif; font-size:52px; color:var(--gold); display:block; font-weight:300; line-height:1; }
.trust-badge-item .badge-label { font-size:10px; letter-spacing:3px; text-transform:uppercase; color:var(--text-muted); display:block; margin-top:10px; }

/* ── HOLIDAYS PAGE ── */
.holidays-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:3px; }
.holiday-card { position:relative; height:580px; overflow:hidden; }
.holiday-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s ease; }
.holiday-card:hover img { transform:scale(1.05); }
.holiday-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(13,13,13,0.92) 0%,rgba(13,13,13,0.18) 55%,transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:48px 44px;
}
.holiday-card h3 { font-family:'Cormorant Garamond',serif; font-size:36px; color:var(--off-white); margin-bottom:12px; }
.holiday-card p { font-size:13px; color:rgba(245,240,232,0.75); line-height:1.75; margin-bottom:24px; max-width:380px; }

.payment-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-top:60px; }
.payment-card { background:white; padding:44px 32px; border-bottom:3px solid var(--gold); text-align:center; box-shadow:0 4px 30px rgba(0,0,0,0.06); }
.payment-step { font-family:'Cormorant Garamond',serif; font-size:64px; color:var(--gold); opacity:0.25; display:block; margin-bottom:12px; line-height:1; }
.payment-card h3 { font-family:'Cormorant Garamond',serif; font-size:26px; color:var(--black); margin-bottom:14px; }
.payment-card p { font-size:13px; color:#666; line-height:1.75; }

/* ── CRUISES PAGE ── */
.cruise-lines { display:grid; grid-template-columns:repeat(2,1fr); gap:3px; }
.cruise-card { position:relative; height:420px; overflow:hidden; }
.cruise-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s ease; }
.cruise-card:hover img { transform:scale(1.06); }
.cruise-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(13,13,13,0.9) 0%,rgba(13,13,13,0.2) 60%,transparent 100%);
  padding:44px; display:flex; flex-direction:column; justify-content:flex-end;
}
.cruise-card h3 { font-family:'Cormorant Garamond',serif; font-size:34px; color:var(--off-white); margin-bottom:12px; }
.cruise-card p { font-size:13px; color:rgba(245,240,232,0.75); line-height:1.75; max-width:400px; }
.cruise-feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; margin-top:60px; }
.cruise-feature { text-align:center; }
.cruise-feature i { font-size:30px; color:var(--gold); display:block; margin-bottom:18px; }
.cruise-feature h3 { font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--black); margin-bottom:12px; }
.cruise-feature p { font-size:13px; color:#666; line-height:1.75; }

/* ── PLANNING (MULTI-STEP FORM) ── */
.planning-intro { max-width:680px; margin:0 auto 60px; text-align:center; }
.planning-intro h2 { font-size:clamp(36px,4vw,54px); color:var(--black); margin-bottom:20px; }
.planning-intro p { font-size:15px; color:#666; line-height:1.85; }
.form-container { max-width:700px; margin:0 auto; background:white; padding:60px; border-top:3px solid var(--gold); box-shadow:0 8px 60px rgba(0,0,0,0.08); }

.progress-bar-wrap { display:flex; align-items:center; margin-bottom:48px; }
.progress-step { display:flex; flex-direction:column; align-items:center; flex:1; }
.progress-step-circle {
  width:38px; height:38px; border-radius:50%; border:2px solid #ddd;
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:600; color:#bbb; background:white;
  transition:all 0.4s; position:relative; z-index:1;
}
.progress-step.active .progress-step-circle { border-color:var(--gold); color:var(--gold); }
.progress-step.done .progress-step-circle { background:var(--gold); color:white; border-color:var(--gold); }
.progress-step-label { font-size:9px; letter-spacing:1.5px; text-transform:uppercase; color:#bbb; margin-top:8px; text-align:center; }
.progress-step.active .progress-step-label,
.progress-step.done .progress-step-label { color:var(--gold); }
.progress-line { flex:1; height:1px; background:#e0e0e0; margin-bottom:26px; transition:background 0.4s; }
.progress-line.active { background:var(--gold); }

.form-step { display:none; }
.form-step.active { display:block; animation:slideIn 0.4s ease; }
@keyframes slideIn { from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:translateX(0)} }

.form-step h3 { font-family:'Cormorant Garamond',serif; font-size:30px; color:var(--black); margin-bottom:8px; }
.form-step .step-sub { font-size:13px; color:#999; margin-bottom:32px; }
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--black); margin-bottom:8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:14px 16px; border:1px solid #e0e0e0;
  font-family:'Montserrat',sans-serif; font-size:14px;
  outline:none; transition:border-color 0.3s; background:white; color:var(--black);
  -webkit-appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--gold); }
.form-group textarea { height:120px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-nav { display:flex; justify-content:space-between; margin-top:36px; gap:16px; align-items:center; }
.btn-form-next, .btn-form-submit {
  padding:15px 36px; font-family:'Montserrat',sans-serif; font-size:11px;
  font-weight:600; letter-spacing:2px; text-transform:uppercase; cursor:pointer;
  background:var(--gold); color:var(--black); border:2px solid var(--gold);
  transition:var(--transition); flex:1;
}
.btn-form-next:hover, .btn-form-submit:hover { background:transparent; color:var(--gold); }
.btn-form-prev {
  padding:15px 28px; font-family:'Montserrat',sans-serif; font-size:11px;
  font-weight:600; letter-spacing:1.5px; text-transform:uppercase; cursor:pointer;
  background:transparent; color:#999; border:1px solid #ddd; transition:var(--transition);
}
.btn-form-prev:hover { border-color:var(--gold); color:var(--gold); }
.form-success { text-align:center; padding:40px 20px; display:none; }
.form-success .check { font-size:52px; display:block; margin-bottom:20px; }
.form-success h3 { font-family:'Cormorant Garamond',serif; font-size:36px; color:var(--black); margin-bottom:16px; }
.form-success p { font-size:14px; color:#666; line-height:1.75; }

/* ── CONTACT PAGE ── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; }
.contact-details h2 { font-size:clamp(36px,4vw,54px); color:var(--black); margin-bottom:36px; }
.contact-item { display:flex; align-items:flex-start; gap:20px; margin-bottom:32px; }
.contact-icon { font-size:20px; color:var(--gold); flex-shrink:0; margin-top:4px; }
.contact-info h4 { font-size:10px; letter-spacing:2.5px; text-transform:uppercase; color:var(--black); margin-bottom:6px; }
.contact-info p, .contact-info a { font-size:15px; color:#555; line-height:1.65; }
.contact-info a:hover { color:var(--gold); }
.whatsapp-btn {
  display:inline-flex; align-items:center; gap:10px; padding:14px 28px;
  background:#25D366; color:white; font-size:11px; font-weight:600;
  letter-spacing:1.5px; text-transform:uppercase; margin-top:24px; transition:var(--transition);
}
.whatsapp-btn:hover { background:#128C7E; }
.contact-form-wrap { background:white; padding:52px; border-top:3px solid var(--gold); box-shadow:0 8px 60px rgba(0,0,0,0.06); }
.contact-form-wrap h3 { font-family:'Cormorant Garamond',serif; font-size:30px; color:var(--black); margin-bottom:32px; }
.map-box {
  background:#181818; height:300px; display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); font-size:12px; letter-spacing:3px; text-transform:uppercase;
  border:1px solid var(--border-gold); max-width:100%;
}

/* ── FAQ PAGE ── */
.faq-list { max-width:820px; margin:60px auto 0; }
.faq-item { border-bottom:1px solid var(--border-gold); }
.faq-question {
  width:100%; background:none; border:none; padding:28px 0;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  cursor:pointer; text-align:left;
}
.faq-question h3 { font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--off-white); font-weight:400; flex:1; }
.faq-toggle {
  width:34px; height:34px; border:1px solid var(--border-gold);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  color:var(--gold); font-size:22px; line-height:1; transition:var(--transition);
  font-family:'Montserrat',sans-serif; font-weight:300;
}
.faq-item.open .faq-toggle { background:var(--gold); color:var(--black); border-color:var(--gold); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.45s ease,padding 0.3s ease; }
.faq-item.open .faq-answer { max-height:320px; padding-bottom:28px; }
.faq-answer p { font-size:14px; color:var(--text-muted); line-height:1.95; }

/* ── INNER PAGE SECTIONS ── */
.section-heading-wrap { text-align:center; margin-bottom:60px; }
.section-heading-wrap .section-heading { margin-bottom:0; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — FULL BREAKPOINT SYSTEM
   Desktop 1200px+ | Tablet 768–1199px | Mobile ≤767px
   ══════════════════════════════════════════════════════ */

/* Hard stop for body overflow at all sizes */
html, body { max-width:100%; overflow-x:hidden; }

/* ─────────────────────────────────────────────────────
   TABLET  768px – 1199px
   ───────────────────────────────────────────────────── */
@media (max-width:1199px) {
  .container { padding:0 36px; }
  .navbar, .navbar.scrolled { padding:22px 40px; }

  /* Hero — tablet heading */
  .hero-title { font-size:2.2rem; line-height:1.12; }

  /* Trip types — 2×2 grid */
  .trips-grid { grid-template-columns:repeat(2,1fr); }
  .trip-card { height:420px; }
  .trip-circle { width:200px; height:200px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='100' cy='100' r='97' fill='none' stroke='%23C9A96E' stroke-opacity='0.45' stroke-width='1.5' stroke-dasharray='10 10'/%3E%3C/svg%3E");
  }
  .trip-card:hover .trip-circle {
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='100' cy='100' r='97' fill='none' stroke='%23C9A96E' stroke-opacity='1' stroke-width='1.5' stroke-dasharray='10 10'/%3E%3C/svg%3E");
  }

  /* Welcome */
  .welcome-grid { gap:48px; }
  .welcome-image-wrap img { height:480px; }

  /* Why Us — keep 3 cols but tighten */
  .why-grid { gap:28px; }
  .why-item { padding:36px 18px; }

  /* About */
  .about-block { gap:48px; }
  .about-block img { height:420px; }

  /* Footer */
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }

  /* Cruises */
  .cruise-feature-grid { grid-template-columns:repeat(2,1fr); }

  /* Holidays */
  .holiday-card { height:500px; }
}

/* ─────────────────────────────────────────────────────
   MOBILE  ≤ 767px
   ───────────────────────────────────────────────────── */
@media (max-width:767px) {

  /* ── BASE LAYOUT ── */
  .container { padding:0 20px; }
  .section-dark, .section-light { padding:60px 0; }
  .section-heading { font-size:clamp(26px,8vw,40px); }
  .section-heading-wrap { margin-bottom:32px; }
  .eyebrow { font-size:9px; letter-spacing:3px; }

  /* ── HERO ── */
  .hero { height:100vh; min-height:540px; }
  .hero-mini { height:54vh; min-height:360px; }
  .hero-content { padding:0 20px; width:100%; }
  .hero-title { font-size:1.6rem; line-height:1.2; margin-bottom:14px; }
  .hero-subtitle {
    font-size:13px; line-height:1.75; margin-bottom:28px;
    max-width:100%; padding:0;
  }
  /* Darker overlay on mobile for readability */
  .hero-overlay {
    background:linear-gradient(
      to bottom,
      rgba(13,13,13,0.52) 0%,
      rgba(13,13,13,0.70) 40%,
      rgba(13,13,13,0.92) 100%
    );
  }
  /* Buttons: stacked, full-width, centred block */
  .hero-btns {
    flex-direction:column;
    align-items:stretch;
    width:100%;
    max-width:300px;
    margin-left:auto;
    margin-right:auto;
    gap:12px;
  }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    width:100%;
    text-align:center;
    padding:15px 20px;
    display:block;
  }
  .scroll-indicator { display:none; }

  /* ── NAVBAR ── */
  .navbar, .navbar.scrolled { padding:16px 20px; }
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .hamburger { display:flex; }
  .mobile-menu { display:flex; }
  /* Ensure logo never overflows */
  .nav-logo { font-size:22px; }

  /* ── POPUP — bottom sheet on mobile ── */
  .popup-overlay {
    padding:0;
    align-items:flex-end;
  }
  .popup-modal {
    grid-template-columns:1fr;
    width:100%;
    max-width:100%;
    max-height:92vh;
    overflow-y:auto;
    border-radius:16px 16px 0 0;
    -webkit-overflow-scrolling:touch;
  }
  .popup-image { display:none; }
  .popup-content { padding:52px 24px 32px; }
  .popup-content h2 { font-size:26px; }
  /* Larger, clearly tappable close button */
  .popup-close {
    top:14px; right:14px;
    width:44px; height:44px;
    font-size:22px;
    background:rgba(0,0,0,0.08);
    border-radius:50%;
  }
  /* 16px prevents iOS Safari auto-zoom on focus */
  .popup-form input { font-size:16px; padding:14px; }

  /* ── TRUST STRIP ── */
  .trust-strip { padding:36px 0; }
  .trust-grid { grid-template-columns:repeat(2,1fr); }
  .trust-item {
    padding:18px 10px;
    border-right:none;
    border-bottom:1px solid var(--border-gold);
  }
  .trust-item:nth-child(odd)  { border-right:1px solid var(--border-gold); }
  .trust-item:nth-child(3)    { border-bottom:none; }
  .trust-item:last-child      { border-bottom:none; }
  .trust-number { font-size:36px; }
  .trust-label  { font-size:9px; letter-spacing:2px; }

  /* ── WELCOME SECTION ── */
  .welcome-grid { grid-template-columns:1fr; gap:32px; }
  /* Hide decorative gold border offset — causes overflow on mobile */
  .welcome-image-wrap::before { display:none; }
  .welcome-image-wrap img { height:280px; width:100%; object-fit:cover; }
  .welcome-text p { font-size:14px; }

  /* ── TRIP TYPES ── */
  .trips-grid { grid-template-columns:1fr; gap:3px; }
  .trip-card  { height:280px; }
  .trip-circle {
    width:140px; height:140px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Ccircle cx='70' cy='70' r='67' fill='none' stroke='%23C9A96E' stroke-opacity='0.45' stroke-width='1.5' stroke-dasharray='8 8'/%3E%3C/svg%3E");
  }
  .trip-card:hover .trip-circle {
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Ccircle cx='70' cy='70' r='67' fill='none' stroke='%23C9A96E' stroke-opacity='1' stroke-width='1.5' stroke-dasharray='8 8'/%3E%3C/svg%3E");
  }
  .trip-card-name { font-size:20px; }
  .trip-card-overlay { padding:28px 20px; }

  /* ── DESTINATIONS — vertical stack on mobile ── */
  .dest-scroll {
    flex-direction:column;
    overflow-x:visible;
    overflow-y:visible;
    padding:8px 0 16px;
    gap:12px;
  }
  .dest-card { flex:none; width:100%; }
  .dest-card img { width:100%; height:220px; }

  /* ── WHY US / TRAVEL DIFFERENTLY ── */
  .why-grid { grid-template-columns:1fr; gap:0; }
  .why-item {
    padding:32px 20px;
    border-bottom:1px solid rgba(201,169,110,0.2);
  }
  .why-item:last-child { border-bottom:none; }
  .why-icon { font-size:28px; margin-bottom:16px; }
  .why-item h3 { font-size:24px; }
  .why-item p  { font-size:13px; }

  /* ── TESTIMONIALS ── */
  .t-quote { font-size:72px; }
  .t-text  { font-size:18px; line-height:1.6; }
  .t-author { font-size:10px; }

  /* ── CTA BAND ── */
  .cta-band { height:auto; min-height:320px; padding:80px 20px; }
  .cta-content h2 { font-size:clamp(26px,7vw,44px); }
  .cta-content .btn-gold { display:block; width:100%; max-width:280px; margin:0 auto; text-align:center; }

  /* ── ABOUT PAGE ── */
  .about-block { grid-template-columns:1fr; gap:28px; margin-bottom:52px; }
  .about-block.reverse { direction:ltr; }
  .about-block img { height:260px; width:100%; object-fit:cover; }
  .about-text h2 { font-size:clamp(26px,7vw,40px); }
  .about-text p  { font-size:14px; }
  .trust-items-row { gap:28px; }
  .trust-badge-item .badge-num { font-size:40px; }

  /* ── HOLIDAYS PAGE ── */
  .holidays-grid { grid-template-columns:1fr; }
  .holiday-card { height:360px; }
  .holiday-card-overlay { padding:28px 20px; }
  .holiday-card h3 { font-size:26px; }
  .holiday-card p  { font-size:13px; max-width:100%; }
  .payment-grid { grid-template-columns:1fr; gap:16px; margin-top:36px; }
  .payment-card { padding:32px 20px; }
  .payment-step { font-size:48px; }
  .payment-card h3 { font-size:22px; }

  /* ── CRUISES PAGE ── */
  .cruise-lines { grid-template-columns:1fr; }
  .cruise-card { height:300px; }
  .cruise-card-overlay { padding:24px 20px; }
  .cruise-card h3 { font-size:26px; }
  .cruise-card p  { font-size:13px; }
  .cruise-feature-grid { grid-template-columns:1fr; gap:0; }
  .cruise-feature {
    padding:28px 16px;
    border-bottom:1px solid #e8e8e8;
    text-align:left;
    display:flex;
    align-items:flex-start;
    gap:20px;
  }
  .cruise-feature:last-child { border-bottom:none; }
  .cruise-feature i { margin-bottom:0; flex-shrink:0; margin-top:4px; }

  /* ── PLANNING FORM ── */
  .planning-intro { margin-bottom:32px; }
  .planning-intro h2 { font-size:clamp(26px,7vw,40px); }
  .planning-intro p  { font-size:14px; }
  .form-container { padding:28px 20px; }
  .form-row { grid-template-columns:1fr; }
  .form-step h3 { font-size:24px; }
  /* 16px stops iOS from zooming into inputs */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size:16px; }
  /* Tap targets ≥ 44px */
  .btn-form-next,
  .btn-form-submit,
  .btn-form-prev { min-height:48px; }
  .btn-form-next,
  .btn-form-submit { width:100%; }
  .form-nav { flex-direction:column-reverse; }
  .btn-form-prev { align-self:center; }
  /* Progress bar — shrink circles on very small screens */
  .progress-step-circle { width:32px; height:32px; font-size:11px; }
  .progress-step-label { font-size:8px; letter-spacing:0.5px; }

  /* ── CONTACT PAGE ── */
  .contact-grid { grid-template-columns:1fr; gap:36px; }
  .contact-details h2 { font-size:clamp(26px,7vw,40px); }
  .contact-form-wrap { padding:28px 20px; }
  .contact-form-wrap h3 { font-size:24px; margin-bottom:24px; }
  /* Full-width WhatsApp button */
  .whatsapp-btn { width:100%; justify-content:center; }
  .map-box { height:220px; font-size:11px; }

  /* ── FAQ PAGE ── */
  .faq-list { margin-top:32px; }
  .faq-question { padding:22px 0; }
  .faq-question h3 { font-size:17px; line-height:1.4; }
  /* Give wrapped answers more room */
  .faq-item.open .faq-answer { max-height:600px; }
  .faq-answer p { font-size:13px; }
  /* Ensure toggle is always 44px tap target */
  .faq-toggle { width:44px; height:44px; flex-shrink:0; }

  /* ── FOOTER ── */
  .footer { padding:52px 0 28px; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-col h4 { margin-bottom:16px; }
  .footer-bottom {
    flex-direction:column;
    text-align:center;
    gap:16px;
    padding-top:24px;
  }
  .trust-badges { justify-content:center; flex-wrap:wrap; gap:10px; }
  /* 44px minimum tap target for social icons */
  .footer-social a { width:44px; height:44px; }
  .footer-social { gap:10px; }

  /* ── INLINE STYLE OVERRIDES ── */
  /* Prevent any section with inline padding from overflowing */
  [style*="padding:"] { box-sizing:border-box; }
}

/* ─────────────────────────────────────────────────────
   SMALL MOBILE  ≤ 479px
   ───────────────────────────────────────────────────── */
@media (max-width:479px) {
  .hero-title { font-size:1.45rem; }
  .hero-mini { height:50vh; min-height:320px; }
  .hero-subtitle { font-size:12px; }
  .hero-btns { max-width:100%; }

  .progress-step-label { display:none; }
  .progress-step-circle { width:28px; height:28px; font-size:10px; }

  .popup-content { padding:48px 18px 28px; }
  .popup-content h2 { font-size:22px; }

  .trip-card { height:240px; }
  .trip-circle { width:110px; height:110px;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110'%3E%3Ccircle cx='55' cy='55' r='52' fill='none' stroke='%23C9A96E' stroke-opacity='0.45' stroke-width='1.5' stroke-dasharray='7 7'/%3E%3C/svg%3E");
  }
  .trip-card:hover .trip-circle {
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='110'%3E%3Ccircle cx='55' cy='55' r='52' fill='none' stroke='%23C9A96E' stroke-opacity='1' stroke-width='1.5' stroke-dasharray='7 7'/%3E%3C/svg%3E");
  }

  .holiday-card { height:300px; }
  .cruise-card  { height:260px; }

  .footer-logo { font-size:24px; }
  .footer-tagline { font-size:12px; }

  .faq-question h3 { font-size:15px; }
  .cta-content h2 { font-size:1.6rem; }
  .section-heading { font-size:clamp(24px,8vw,36px); }

  /* Trust strip: single column on very small screens */
  .trust-grid { grid-template-columns:1fr; }
  .trust-item { border-right:none !important; }
  .trust-item:nth-child(odd) { border-right:none !important; }
}
