@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 / DESIGN TOKENS
   ══════════════════════════════════════ */
:root {
  --dark:       #0A0A0A;
  --dark-2:     #161616;
  --dark-3:     #222222;
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --gold-dark:  #B8941F;
  --cream:      #F8F4EE;
  --white:      #FFFFFF;
  --text-dark:  #1A1A1A;
  --text-grey:  #666666;
  --border-gold: rgba(201,169,110,0.3);
  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ══════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════ */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box }
html { scroll-behavior:smooth; overflow-x:hidden }
body { font-family:'Montserrat',sans-serif; font-size:16px; line-height:1.8; background:var(--dark); color:var(--cream); overflow-x:hidden }
p { font-size:0.95rem; }
h1,h2,h3,h4,h5 { font-family:'Cormorant Garamond',serif; font-weight:400; line-height:1.15 }
a { text-decoration:none; color:inherit }
img { max-width:100%; display:block; object-fit:cover }
ul { list-style:none }
button { cursor:pointer; font-family:inherit }

/* ══════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════ */
.container { max-width:1200px; margin:0 auto; padding:0 48px }

.eyebrow,
.hero-eyebrow {
  font-family:'Montserrat',sans-serif;
  font-size:0.7rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:var(--gold);
  display:block;
  margin-bottom:16px;
}

.gold-line    { width:60px; height:2px; background:var(--gold); margin-bottom:32px }
.gold-line-sm { width:40px; height:2px; background:var(--gold); margin-bottom:24px }

/* Section backgrounds */
.sec-dark, .section-dark   { background:var(--dark);   padding:120px 0; color:var(--cream) }
.sec-dark-2                { background:var(--dark-2); padding:120px 0; color:var(--cream) }
.sec-cream                 { background:var(--cream);  padding:120px 0; color:var(--text-dark) }
.sec-white, .section-light { background:var(--white);  padding:120px 0; color:var(--text-dark) }

/* ── Buttons ── */
.btn-gold {
  display:inline-block; padding:14px 36px;
  background:var(--gold); color:var(--dark);
  font-family:'Montserrat',sans-serif; font-size:0.75rem; font-weight:600;
  letter-spacing:2px; text-transform:uppercase;
  border:2px solid var(--gold);
  transition:all 0.4s var(--ease); cursor:pointer;
}
.btn-gold:hover { background:var(--gold-dark); border-color:var(--gold-dark) }

.btn-outline {
  display:inline-block; padding:14px 36px;
  background:transparent; color:var(--white);
  font-family:'Montserrat',sans-serif; font-size:0.75rem; font-weight:600;
  letter-spacing:2px; text-transform:uppercase;
  border:2px solid rgba(255,255,255,0.5);
  transition:all 0.4s var(--ease); cursor:pointer;
}
.btn-outline:hover { border-color:var(--gold); color:var(--gold) }

.btn-outline-gold {
  display:inline-block; padding:12px 32px;
  background:transparent; color:var(--gold);
  font-family:'Montserrat',sans-serif; font-size:0.75rem; font-weight:600;
  letter-spacing:2px; text-transform:uppercase;
  border:1px solid var(--gold);
  transition:all 0.4s var(--ease); cursor:pointer;
}
.btn-outline-gold:hover { background:var(--gold); color:var(--dark) }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.fade-up {
  opacity:0; transform:translateY(40px);
  transition:opacity 0.8s ease-out, transform 0.8s ease-out;
}
.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-out }
.fade-in.visible { opacity:1 }

.slide-left {
  opacity:0; transform:translateX(-40px);
  transition:opacity 0.8s ease-out, transform 0.8s ease-out;
}
.slide-left.visible { opacity:1; transform:translateX(0) }

@keyframes heroFadeIn {
  from { opacity:0; transform:translateY(30px) }
  to   { opacity:1; transform:translateY(0) }
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform:scaleY(1) }
  50%     { opacity:0.3; transform:scaleY(0.5) }
}

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:80px; padding:0 60px;
  display:flex; align-items:center; justify-content:space-between;
  transition:all 0.4s var(--ease);
}
.navbar.scrolled {
  background:rgba(10,10,10,0.95);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border-gold);
}
.nav-logo { z-index:1001 }
.nav-logo img { height:52px; object-fit:contain }

.nav-links { display:flex; align-items:center; gap:36px }
.nav-links a {
  font-family:'Montserrat',sans-serif; font-size:0.75rem;
  letter-spacing:3px; text-transform:uppercase;
  color:rgba(255,255,255,0.85); 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              { color:var(--gold) }
.nav-links a:hover::after       { width:100% }
.nav-links a.active             { color:var(--gold) }
.nav-links a.active::after      { width:100% }

.nav-cta {
  font-family:'Montserrat',sans-serif; font-size:0.75rem;
  letter-spacing:2px; text-transform:uppercase;
  padding:10px 24px; border:1px solid var(--gold); color:var(--gold);
  transition:all 0.4s var(--ease); z-index:1001;
}
.nav-cta:hover { background:var(--gold); color:var(--dark) }

.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(--gold);
  transition:all 0.4s var(--ease);
}
.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(10,10,10,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:3rem; font-weight:300; color:var(--white); transition:color 0.3s }
.mobile-menu a:hover   { color:var(--gold) }
.mobile-menu .mob-cta  {
  font-family:'Montserrat',sans-serif; font-size:0.75rem;
  letter-spacing:3px; text-transform:uppercase;
  padding:14px 36px; border:1px solid var(--gold); color:var(--gold); margin-top:16px;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:flex-end; overflow:hidden;
}
.hero-mini {
  min-height:auto; height:65vh; min-height:480px; align-items:flex-end;
}
.hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.hero-bg video {
  position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover;
}
.hero-video {
  position:absolute; top:0; left:0;
  width:100%; height:100%;
  object-fit:cover; z-index:0;
}
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.hero-mini .hero-overlay {
  background:linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position:relative; z-index:2;
  padding:0 0 120px 80px; max-width:720px;
  animation:heroFadeIn 1s ease-out 0.4s both;
}
.hero-mini .hero-content {
  padding:0 0 80px 80px; max-width:720px;
  text-align:left; margin:0;
}

.hero-title { font-size:5.5rem; font-weight:300; line-height:1.1; margin-bottom:24px; color:var(--white) }
.hero-mini .hero-title { font-size:clamp(2.5rem,6vw,4.5rem) }

.hero-subtitle {
  font-size:1rem; font-weight:300; color:rgba(255,255,255,0.9);
  max-width:520px; margin-bottom:16px; line-height:1.85;
}
.hero-mini .hero-subtitle { max-width:560px }

.hero-support { display:none }

.hero-btns { display:flex; gap:16px; flex-wrap:wrap; margin-top:32px }

.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.6;
}
.scroll-indicator span {
  font-family:'Montserrat',sans-serif; font-size:0.6rem;
  letter-spacing:3px; text-transform:uppercase; color:var(--gold);
}
.scroll-line {
  width:1px; height:52px;
  background:linear-gradient(to bottom, var(--gold), transparent);
  animation:scrollPulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════ */
.trust-strip {
  background:var(--dark-2); padding:48px 0;
  border-top:1px solid var(--border-gold);
  border-bottom:1px solid var(--border-gold);
}
.trust-heading,
.trust-strip-heading {
  text-align:center;
  font-family:'Cormorant Garamond',serif; font-size:1.6rem;
  font-weight:400; font-style:italic; color:var(--gold);
  margin-bottom:40px; display:block;
}
.trust-grid   { display:grid; grid-template-columns:repeat(4,1fr); gap:24px }
.trust-item   { text-align:center; padding:24px 16px }
.trust-icon,
.trust-number { font-size:40px; color:var(--gold); margin-bottom:16px; display:block }
.trust-label  {
  font-family:'Montserrat',sans-serif; font-size:0.7rem;
  letter-spacing:3px; text-transform:uppercase; color:var(--white);
}

/* ══════════════════════════════════════
   SPLIT LAYOUT  (intro / founder)
   ══════════════════════════════════════ */
.split         { display:grid; grid-template-columns:55% 45%; min-height:600px }
.split.reverse { grid-template-columns:45% 55% }

.split-text {
  padding:80px 60px 80px 80px;
  display:flex; flex-direction:column; justify-content:center;
}
.split.reverse .split-text { padding:80px 80px 80px 60px }

.split-text h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3.5rem); font-weight:300;
  color:var(--text-dark); line-height:1.15; margin-bottom:32px;
}
.split-text p {
  font-family:'Montserrat',sans-serif;
  font-size:1rem; color:#444; line-height:1.9; margin-bottom:20px;
}

.split-img              { position:relative; overflow:hidden }
.split-img img          { width:100%; height:100%; object-fit:cover; object-position:center }

/* ══════════════════════════════════════
   INTRO SPLIT  (cruises / planning)
   ══════════════════════════════════════ */
.intro-split {
  display:grid; grid-template-columns:55% 45%; min-height:520px;
  background:var(--cream); color:var(--text-dark);
}
.intro-split__text {
  padding:80px 60px 80px 80px;
  display:flex; flex-direction:column; justify-content:center;
}
.intro-split__text h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3.5rem); font-weight:300;
  color:var(--text-dark); line-height:1.15; margin-bottom:24px;
}
.intro-split__text p {
  font-family:'Montserrat',sans-serif; font-size:1rem; color:#444; line-height:1.9;
}
.intro-split__image         { position:relative; overflow:hidden }
.intro-split__image img     { width:100%; height:100%; object-fit:cover }

/* ══════════════════════════════════════
   PROBLEM-SOLUTION  (full-bleed parallax)
   ══════════════════════════════════════ */
.problem-solution  { position:relative; padding:120px 48px; overflow:hidden }
.ps-bg             { position:absolute; inset:0; background-size:cover; background-position:center; background-attachment:fixed }
.ps-overlay        { position:absolute; inset:0; background:rgba(0,0,0,0.78) }
.ps-inner          { position:relative; z-index:2; max-width:800px; margin:0 auto; text-align:center }
.ps-inner h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,4rem); font-weight:300; font-style:italic;
  color:var(--white); line-height:1.2; margin:24px 0;
}
.ps-inner p {
  font-family:'Montserrat',sans-serif; font-size:1rem;
  color:rgba(255,255,255,0.85); line-height:2; max-width:650px; margin:0 auto;
}

/* ══════════════════════════════════════
   PARALLAX SECTION  (homepage)
   ══════════════════════════════════════ */
.parallax-section  { position:relative; padding:120px 48px; overflow:hidden }
.parallax-bg       { position:absolute; inset:0; background-size:cover; background-position:center; background-attachment:fixed }
.parallax-overlay  { position:absolute; inset:0; background:rgba(0,0,0,0.78) }
.parallax-content  { position:relative; z-index:2; max-width:800px; margin:0 auto; text-align:center }
.parallax-content h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,4rem); font-weight:300; font-style:italic;
  color:var(--white); line-height:1.2; margin:24px 0;
}
.parallax-content p {
  font-family:'Montserrat',sans-serif; font-size:1rem;
  color:rgba(255,255,255,0.85); line-height:2; max-width:650px; margin:0 auto;
}

/* ══════════════════════════════════════
   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:contain; background:#111; transition:transform 0.3s ease }
.trip-card:hover img { transform:scale(1.05) }
.trip-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:32px;
}
.trip-card-num  { font-family:'Montserrat',sans-serif; font-size:0.7rem; letter-spacing:4px; color:var(--gold); margin-bottom:8px }
.trip-card-name { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:400; color:var(--white); margin-bottom:8px }
.trip-card-desc {
  font-family:'Montserrat',sans-serif; font-size:0.8rem; color:rgba(255,255,255,0.8);
  font-weight:300; margin-bottom:16px; line-height:1.6; max-width:260px;
}
.trip-card-link {
  font-family:'Montserrat',sans-serif; font-size:0.7rem; letter-spacing:2px;
  text-transform:uppercase; color:var(--gold);
  opacity:0; transform:translateY(10px); transition:all 0.4s var(--ease);
}
.trip-card:hover .trip-card-link { opacity:1; transform:translateY(0) }

/* ══════════════════════════════════════
   DESTINATIONS
   ══════════════════════════════════════ */
.dest-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px }
.dest-header h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3.5rem); color:var(--text-dark); font-weight:300;
}
.dest-scroll {
  display:flex; gap:20px; overflow-x:auto; padding-bottom:24px;
  scrollbar-width:none; -webkit-overflow-scrolling:touch;
}
.dest-scroll::-webkit-scrollbar { display:none }
.dest-card { flex:0 0 280px; height:380px; position:relative; overflow:hidden; cursor:pointer }
.dest-card img { width:100%; height:100%; object-fit:contain; background:#111; transition:transform 0.3s ease }
.dest-card:hover img { transform:scale(1.03) }
.dest-card-info {
  position:absolute; bottom:0; left:0; right:0;
  padding:80px 24px 28px;
  background:linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.dest-country { font-family:'Montserrat',sans-serif; font-size:0.65rem; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:4px }
.dest-name    { font-family:'Cormorant Garamond',serif; font-size:1.8rem; color:var(--white) }
.dest-explore {
  font-family:'Montserrat',sans-serif; font-size:0.65rem; letter-spacing:2px;
  text-transform:uppercase; color:var(--gold); margin-top:8px;
  opacity:0; transform:translateY(8px); transition:all 0.4s var(--ease);
}
.dest-card:hover .dest-explore { opacity:1; transform:translateY(0) }

/* ══════════════════════════════════════
   WHY GTL
   ══════════════════════════════════════ */
.why-header   { text-align:center; margin-bottom:60px }
.why-header p { font-family:'Montserrat',sans-serif; font-size:1rem; color:var(--text-grey); font-style:italic; margin-top:8px }

.why-grid,
.why-grid-top { display:grid; grid-template-columns:repeat(3,1fr); gap:60px }

.why-item             { text-align:center; padding:0 16px }
.why-item .gold-line,
.why-item .gold-line-sm { width:40px; margin:0 auto 24px }
.why-icon             { font-size:32px; color:var(--gold); margin-bottom:16px; display:block }
.why-item h3          { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--text-dark); margin-bottom:12px; line-height:1.3 }
.why-item p           { font-family:'Montserrat',sans-serif; font-size:0.9rem; color:var(--text-grey); line-height:1.8 }

.why-row-2         { display:flex; justify-content:center; gap:60px; margin-top:60px }
.why-row-2 .why-item { max-width:340px }

/* Inner-page why section */
.why-section      { background:var(--white); padding:120px 0; color:var(--text-dark) }
.why-section-head { text-align:center; margin-bottom:60px }
.why-section-head h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2rem,4vw,3.5rem); font-weight:400; color:var(--text-dark);
}

/* Dark variant */
.sec-dark .why-item h3,
.sec-dark-2 .why-item h3,
.section-dark .why-item h3  { color:var(--white) }
.sec-dark .why-item p,
.sec-dark-2 .why-item p,
.section-dark .why-item p   { color:var(--text-grey) }

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials { background:var(--dark-2); padding:120px 0 }
.t-wrap       { max-width:700px; margin:0 auto; text-align:center; position:relative }
.t-quote      { font-family:'Cormorant Garamond',serif; font-size:8rem; color:var(--gold); opacity:0.3; line-height:0.4; display:block; margin-bottom:24px }
.t-text       { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:300; font-style:italic; color:var(--white); line-height:1.6; margin-bottom:24px; transition:opacity 0.3s }
.t-author     { font-family:'Montserrat',sans-serif; font-size:0.75rem; 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:rgba(255,255,255,0.25); cursor:pointer; transition:background 0.3s; border:none }
.t-dot.active { background:var(--gold) }

/* ══════════════════════════════════════
   ENQUIRY FORM
   ══════════════════════════════════════ */
.enquiry-section { background:var(--white); padding:120px 0; color:var(--text-dark) }

.enquiry-layout,
.enquiry-two-col { display:grid; grid-template-columns:40% 60%; gap:80px; align-items:start }

.enquiry-info h2,
.enquiry-left h2 {
  font-family:'Cormorant Garamond',serif; font-size:3rem;
  color:var(--text-dark); margin-bottom:16px; font-weight:300; line-height:1.2;
}
.enquiry-subtext,
.enquiry-left > p {
  font-family:'Montserrat',sans-serif; font-size:1rem;
  color:var(--text-grey); line-height:1.85; margin-bottom:32px;
}

.enquiry-trust li {
  font-family:'Montserrat',sans-serif; font-size:0.9rem; color:var(--text-grey);
  padding:8px 0; display:flex; align-items:center; gap:12px;
}
.enquiry-trust li::before { content:'✓'; color:var(--gold); font-weight:700; font-size:1rem }

.enquiry-trust-item {
  display:flex; align-items:flex-start; gap:12px; padding:8px 0;
  font-family:'Montserrat',sans-serif; font-size:0.9rem; color:var(--text-grey); line-height:1.75;
}
.enquiry-trust-icon { color:var(--gold); flex-shrink:0; margin-top:2px }

.enquiry-form { max-width:100% }
.enquiry-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px 20px }
.enquiry-grid .full-width,
.form-group.full-width { grid-column:1 / -1 }

.enquiry-field,
.form-group { display:flex; flex-direction:column }

.enquiry-field label,
.form-group label {
  font-family:'Montserrat',sans-serif; font-size:0.7rem;
  letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:6px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:14px 0;
  border:none; border-bottom:1px solid var(--gold); border-radius:0;
  background:transparent;
  font-family:'Montserrat',sans-serif; font-size:0.9rem; color:var(--text-dark);
  outline:none; transition:border-color 0.3s;
  -webkit-appearance:none; appearance:none;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus   { border-bottom-color:var(--gold-dark) }

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder { color:#bbb }

.enquiry-form select,
.form-group select { color:var(--text-grey) }

.enquiry-form textarea,
.form-group textarea { height:120px; resize:vertical }

.enquiry-submit {
  width:100%; padding:18px;
  background:var(--gold); color:var(--dark);
  font-family:'Montserrat',sans-serif; font-size:0.75rem; font-weight:600;
  letter-spacing:3px; text-transform:uppercase;
  border:none; cursor:pointer; transition:background 0.4s var(--ease); margin-top:8px;
}
.enquiry-submit:hover { background:var(--gold-dark) }

.enquiry-success            { text-align:center; padding:40px 20px }
.enquiry-success .check     { font-size:52px; color:var(--gold); display:block; margin-bottom:16px }
.enquiry-success p          { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--text-dark) }
.enquiry-error              { background:rgba(192,57,43,0.1); border:1px solid #c0392b; color:#e74c3c; padding:12px 16px; margin-top:16px; font-size:0.8rem; text-align:center }

/* ══════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════ */
.cta-band {
  position:relative; display:flex; align-items:center; justify-content:center;
  overflow:hidden; padding:140px 48px;
}
.cta-band .hero-bg      { background-attachment:fixed }
.cta-band .hero-overlay { background:rgba(0,0,0,0.72) }
.cta-content            { position:relative; z-index:2; text-align:center; max-width:700px }
.cta-content h2 {
  font-family:'Cormorant Garamond',serif; font-size:4.5rem;
  color:var(--white); margin-bottom:24px; font-weight:300; line-height:1.1;
}
.cta-content p {
  font-family:'Montserrat',sans-serif; font-size:1rem;
  color:rgba(255,255,255,0.85); max-width:500px; margin:0 auto 32px; line-height:1.85;
}
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer      { background:var(--dark); padding:80px 0 40px; border-top:2px solid var(--gold) }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; align-items:start }

.footer-logo img    { height:48px; object-fit:contain; margin-bottom:16px }
.footer-tagline     { font-family:'Cormorant Garamond',serif; font-size:1rem; font-style:italic; color:var(--gold); line-height:1.6; margin-bottom:24px }
.footer-social      { display:flex; gap:16px }
.footer-social a    { color:var(--gold); font-size:20px; transition:color 0.3s }
.footer-social a:hover { color:var(--white) }

.footer-col h4 {
  font-family:'Montserrat',sans-serif; font-size:0.7rem;
  letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:20px;
}
.footer-col ul li         { margin-bottom:8px }
.footer-col ul li a       { font-family:'Montserrat',sans-serif; font-size:0.85rem; color:#888; transition:color 0.3s; line-height:2.2 }
.footer-col ul li a:hover { color:var(--white) }

.footer-bottom   { border-top:1px solid var(--dark-3); padding-top:24px; text-align:center }
.footer-bottom p { font-family:'Montserrat',sans-serif; font-size:0.75rem; color:#555 }
.trust-badges    { display:flex; gap:16px; justify-content:center; margin-top:12px }
.trust-badge     { font-family:'Montserrat',sans-serif; font-size:0.6rem; 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(10,10,10,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(--cream); max-width:840px; width:100%;
  display:grid; grid-template-columns:1fr 1fr; overflow:hidden;
  transform:scale(0.9); transition:transform 0.4s var(--ease); 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(--cream); color:var(--text-dark) }
.popup-content h2   { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:400; line-height:1.25; margin-bottom:14px; color:var(--text-dark) }
.popup-content p    { font-family:'Montserrat',sans-serif; font-size:0.8rem; color:var(--text-grey); 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:0.8rem; margin-bottom:12px; outline:none; transition:border-color 0.3s; background:white; color:var(--text-dark) }
.popup-form input:focus  { border-color:var(--gold) }
.popup-form button  { width:100%; padding:16px; background:var(--gold); color:var(--dark); font-family:'Montserrat',sans-serif; font-size:0.7rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; border:none; cursor:pointer; transition:background 0.4s }
.popup-form button:hover { background:var(--gold-dark) }
.popup-close {
  position:absolute; top:18px; right:18px; background:none; border:none;
  color:var(--text-dark); 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) }

/* ══════════════════════════════════════
   HOLIDAYS PAGE
   ══════════════════════════════════════ */
.holidays-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:3px }
.holiday-card  { position:relative; height:580px; overflow:hidden; cursor:pointer }
.holiday-card img { width:100%; height:100%; object-fit:contain; background:#111; transition:transform 0.3s ease }
.holiday-card:hover img { transform:scale(1.05) }
.holiday-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.15) 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:2.2rem; color:var(--white); margin-bottom:12px }
.holiday-card p  { font-family:'Montserrat',sans-serif; font-size:0.8rem; color:rgba(255,255,255,0.75); line-height:1.75; margin-bottom:24px; max-width:380px }

/* ══════════════════════════════════════
   CRUISES PAGE
   ══════════════════════════════════════ */
.cruise-lines { display:grid; grid-template-columns:repeat(2,1fr); gap:3px }
.cruise-card  { position:relative; height:420px; overflow:hidden; cursor:pointer }
.cruise-card img { width:100%; height:100%; object-fit:contain; background:#111; transition:transform 0.3s ease }
.cruise-card:hover img { transform:scale(1.06) }
.cruise-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,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:2rem; color:var(--white); margin-bottom:12px }
.cruise-card p  { font-size:0.8rem; color:rgba(255,255,255,0.75); line-height:1.75; max-width:400px; margin-bottom:20px }

/* ══════════════════════════════════════
   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:1.4rem; color:var(--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:all 0.4s var(--ease); font-family:'Montserrat',sans-serif; font-weight:300;
}
.faq-item.open .faq-toggle          { background:var(--gold); color:var(--dark); border-color:var(--gold) }
.faq-answer                         { max-height:0; overflow:hidden; transition:max-height 0.45s ease, padding 0.3s }
.faq-item.open .faq-answer          { max-height:320px; padding-bottom:28px }
.faq-answer p                       { font-size:0.9rem; color:var(--text-grey); line-height:1.95 }

/* ══════════════════════════════════════
   PLANNING FORM
   ══════════════════════════════════════ */
.planning-intro    { max-width:680px; margin:0 auto 60px; text-align:center }
.planning-intro h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4vw,3.5rem); color:var(--text-dark); margin-bottom:20px }
.planning-intro p  { font-size:1rem; color:var(--text-grey); 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:0.75rem; 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:0.55rem; letter-spacing:1.5px; text-transform:uppercase; color:#bbb; margin-top:8px }
.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:1.8rem; color:var(--text-dark); margin-bottom:8px }
.form-step .step-sub  { font-size:0.8rem; color:#999; margin-bottom:32px }
.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:0.7rem; font-weight:600; letter-spacing:2px; text-transform:uppercase; cursor:pointer; background:var(--gold); color:var(--dark); border:2px solid var(--gold); transition:all 0.4s var(--ease); 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:0.7rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; cursor:pointer; background:transparent; color:#999; border:1px solid #ddd; transition:all 0.4s var(--ease) }
.btn-form-prev:hover { border-color:var(--gold); color:var(--gold) }
.form-success         { text-align:center; padding:40px 20px }
.form-success .check  { font-size:52px; display:block; margin-bottom:20px }
.form-success h3      { font-family:'Cormorant Garamond',serif; font-size:2.2rem; color:var(--text-dark); margin-bottom:16px }
.form-success p       { font-size:0.85rem; color:var(--text-grey); line-height:1.75 }

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */
.contact-grid       { display:grid; grid-template-columns:1fr 1fr; gap:80px }
.contact-details h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4vw,3.5rem); color:var(--text-dark); 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-family:'Montserrat',sans-serif; font-size:0.65rem; letter-spacing:2.5px; text-transform:uppercase; color:var(--text-dark); margin-bottom:6px }
.contact-info p,
.contact-info a     { font-size:0.95rem; 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:0.7rem; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; margin-top:24px; transition:background 0.4s }
.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:1.8rem; color:var(--text-dark); margin-bottom:32px }
.map-box { background:#181818; height:300px; display:flex; align-items:center; justify-content:center; color:var(--text-grey); font-size:0.75rem; letter-spacing:3px; text-transform:uppercase; border:1px solid var(--border-gold) }

/* ══════════════════════════════════════
   INNER PAGE UTILITIES
   ══════════════════════════════════════ */
.section-heading-wrap { text-align:center; margin-bottom:60px }
.section-heading      { font-family:'Cormorant Garamond',serif; font-size:clamp(2.5rem,5vw,4rem); margin-bottom:16px }
.section-heading-wrap .section-heading { margin-bottom:0 }

.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:4rem; color:var(--gold); opacity:0.25; display:block; margin-bottom:12px; line-height:1 }
.payment-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--text-dark); margin-bottom:14px }
.payment-card p  { font-size:0.85rem; color:var(--text-grey); line-height:1.75 }

.steps-section { background:var(--dark-2); padding:120px 0 }
.steps-grid    { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; max-width:1000px; margin:0 auto }
.step-item     { text-align:center }
.step-number   { width:64px; height:64px; border-radius:50%; background:var(--gold); color:var(--dark); font-family:'Cormorant Garamond',serif; font-size:1.75rem; font-weight:600; display:flex; align-items:center; justify-content:center; margin:0 auto 24px }
.step-item h3  { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--white); margin-bottom:12px }
.step-item p   { font-size:0.9rem; color:var(--text-grey); line-height:1.85 }

.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:1.4rem; color:var(--text-dark); margin-bottom:12px }
.cruise-feature p    { font-size:0.85rem; color:var(--text-grey); line-height:1.75 }

/* ══════════════════════════════════════
   BLOG
   ══════════════════════════════════════ */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; padding:60px 0 }
.blog-card { background:var(--white); overflow:hidden; transition:transform 0.4s ease }
.blog-card:hover { transform:translateY(-4px) }
.blog-card > img { width:100%; height:220px; object-fit:contain; background:#f5f5f5; display:block }
.blog-card-body  { padding:28px 24px }
.blog-card-date  { font-family:'Montserrat',sans-serif; font-size:0.65rem; letter-spacing:2px; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:12px }
.blog-card h2    { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400; color:var(--text-dark); margin-bottom:12px; line-height:1.3 }
.blog-card p     { font-family:'Montserrat',sans-serif; font-size:0.85rem; color:var(--text-grey); line-height:1.75; margin-bottom:20px }
.read-more       { font-family:'Montserrat',sans-serif; font-size:0.7rem; letter-spacing:2px; text-transform:uppercase; color:var(--gold); transition:color 0.3s }
.read-more:hover { color:var(--gold-dark) }

/* ══════════════════════════════════════
   GALLERY
   ══════════════════════════════════════ */
.pub-gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; padding:60px 0 }
.pub-gallery-item { position:relative; overflow:hidden; cursor:pointer; background:#1a1a1a }
.pub-gallery-item img { width:100%; height:280px; object-fit:contain; background:#111; display:block; transition:transform 0.3s ease }
.pub-gallery-item:hover img { transform:scale(1.02) }
.pub-gallery-caption { position:absolute; inset:0; background:rgba(13,13,13,0.6); display:flex; align-items:flex-end; padding:20px; opacity:0; transition:opacity 0.3s }
.pub-gallery-item:hover .pub-gallery-caption { opacity:1 }
.pub-gallery-caption span { font-size:13px; color:var(--white); font-family:'Montserrat',sans-serif; font-weight:300 }

/* Lightbox */
.gtl-lightbox { position:fixed; inset:0; background:rgba(0,0,0,0.94); z-index:2000; display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; pointer-events:none; transition:opacity 0.3s }
.gtl-lightbox.active { opacity:1; pointer-events:all }
.gtl-lightbox img { max-width:90vw; max-height:85vh; object-fit:contain; display:block }
.gtl-lb-close { position:fixed; top:20px; right:24px; color:rgba(255,255,255,0.7); font-size:36px; cursor:pointer; background:none; border:none; line-height:1; transition:color 0.2s }
.gtl-lb-close:hover { color:var(--gold) }
.gtl-lb-caption { position:fixed; bottom:28px; left:50%; transform:translateX(-50%); font-size:13px; color:rgba(255,255,255,0.7); font-family:'Montserrat',sans-serif; font-weight:300; text-align:center; max-width:600px }
.gtl-lb-nav { position:fixed; top:50%; transform:translateY(-50%); background:rgba(201,169,110,0.15); border:1px solid rgba(201,169,110,0.3); color:var(--gold); font-size:24px; width:48px; height:48px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background 0.2s }
.gtl-lb-nav:hover { background:rgba(201,169,110,0.35) }
.gtl-lb-prev { left:16px }
.gtl-lb-next { right:16px }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET ≤1199px
   ══════════════════════════════════════ */
@media (max-width:1199px) {
  .container   { padding:0 36px }
  .navbar      { padding:0 40px }

  .sec-dark, .sec-dark-2, .sec-cream, .sec-white,
  .section-dark, .section-light,
  .testimonials, .enquiry-section, .why-section { padding:80px 0 }

  .hero-content       { padding:0 0 80px 60px }
  .hero-mini .hero-content { padding:0 0 60px 60px }
  .hero-title         { font-size:4rem }

  .split                    { grid-template-columns:50% 50% }
  .split.reverse            { grid-template-columns:50% 50% }
  .split-text               { padding:60px 40px }
  .split.reverse .split-text{ padding:60px 40px }

  .intro-split              { grid-template-columns:50% 50% }
  .intro-split__text        { padding:60px 40px }

  .trips-grid { grid-template-columns:repeat(2,1fr) }
  .trip-card  { height:420px }

  .why-grid,
  .why-grid-top { gap:40px }

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

  .enquiry-layout,
  .enquiry-two-col { grid-template-columns:1fr; gap:40px }

  .cruise-feature-grid { grid-template-columns:repeat(2,1fr) }
  .holidays-grid .holiday-card { height:480px }
  .cta-content h2 { font-size:3.5rem }

  .blog-grid { grid-template-columns:repeat(2,1fr) }
  .pub-gallery-grid { grid-template-columns:repeat(2,1fr) }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE ≤767px
   ══════════════════════════════════════ */
@media (max-width:767px) {
  .container { padding:0 24px }

  .sec-dark, .sec-dark-2, .sec-cream, .sec-white,
  .section-dark, .section-light,
  .testimonials, .enquiry-section, .why-section { padding:60px 0 }
  .section-heading { font-size:clamp(1.8rem,7vw,2.5rem) }

  /* Navbar */
  .navbar          { padding:0 20px; height:64px }
  .nav-links,
  .nav-cta         { display:none }
  .hamburger       { display:flex }
  .mobile-menu     { display:flex }
  .nav-logo img    { height:42px }

  /* Hero */
  .hero            { min-height:100svh }
  .hero-content    { padding:0 24px 80px; max-width:100% }
  .hero-mini .hero-content { padding:0 24px 60px; max-width:100% }
  .hero-title      { font-size:2.8rem }
  .hero-subtitle   { max-width:100%; margin:0 auto 16px }
  .hero-mini       { height:55vh; min-height:360px }
  .hero-btns       { flex-direction:column; align-items:stretch; max-width:300px; margin:32px auto 0 }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline { width:100%; text-align:center; display:block }
  .scroll-indicator { display:none }
  .hero-overlay    { background:linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.75) 100%) }

  /* Trust */
  .trust-strip  { padding:36px 0 }
  .trust-grid   { grid-template-columns:repeat(2,1fr); gap:16px }
  .trust-heading,
  .trust-strip-heading { font-size:1.3rem; margin-bottom:24px }

  /* Splits */
  .split, .split.reverse { grid-template-columns:1fr; min-height:auto }
  .split-img             { height:300px }
  .split-text,
  .split.reverse .split-text { padding:48px 24px }

  .intro-split           { grid-template-columns:1fr }
  .intro-split__image    { height:280px }
  .intro-split__text     { padding:48px 24px }

  /* Parallax */
  .parallax-section,
  .problem-solution { padding:60px 24px }
  .parallax-bg,
  .ps-bg            { background-attachment:scroll }

  /* Trip types */
  .trips-grid { grid-template-columns:1fr }
  .trip-card  { height:320px }

  /* Destinations */
  .dest-card   { flex:0 0 260px; height:320px }
  .dest-header { flex-direction:column; gap:12px }

  /* Why GTL */
  .why-grid,
  .why-grid-top { grid-template-columns:1fr; gap:32px }
  .why-row-2    { flex-direction:column; align-items:center; gap:32px; margin-top:32px }

  /* Testimonials */
  .testimonials { padding:60px 0 }
  .t-quote      { font-size:5rem }
  .t-text       { font-size:1.3rem }

  /* Enquiry */
  .enquiry-layout,
  .enquiry-two-col { grid-template-columns:1fr }
  .enquiry-grid    { grid-template-columns:1fr }
  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea,
  .form-group input,
  .form-group select,
  .form-group textarea { font-size:16px }

  /* CTA */
  .cta-band     { padding:80px 24px }
  .cta-content h2 { font-size:clamp(2rem,7vw,3rem) }
  .cta-btns     { flex-direction:column; align-items:center }

  /* Holidays */
  .holidays-grid { grid-template-columns:1fr }
  .holiday-card  { height:360px }
  .holiday-card-overlay { padding:28px 24px }
  .holiday-card h3 { font-size:1.8rem }

  /* Cruises */
  .cruise-lines  { grid-template-columns:1fr }
  .cruise-card   { height:300px }
  .cruise-card-overlay { padding:24px }
  .cruise-feature-grid { grid-template-columns:1fr }

  /* FAQ */
  .faq-question h3 { font-size:1.1rem }
  .faq-item.open .faq-answer { max-height:600px }
  .faq-toggle  { width:44px; height:44px }

  /* Planning form */
  .form-container { padding:28px 20px }
  .form-row       { grid-template-columns:1fr }
  .form-nav       { flex-direction:column-reverse }
  .btn-form-next,
  .btn-form-submit { width:100% }
  .btn-form-prev   { align-self:center }

  /* Contact */
  .contact-grid      { grid-template-columns:1fr; gap:36px }
  .contact-form-wrap { padding:28px 20px }
  .whatsapp-btn      { width:100%; justify-content:center }
  .map-box           { height:220px }

  /* Footer */
  .footer      { padding:52px 0 28px }
  .footer-grid { grid-template-columns:1fr; gap:32px; text-align:center }
  .footer-social { justify-content:center }
  .footer-social a { width:44px; height:44px; display:flex; align-items:center; justify-content:center }
  .trust-badges { flex-wrap:wrap }

  /* Popup */
  .popup-overlay  { padding:0; align-items:flex-end }
  .popup-modal    { grid-template-columns:1fr; max-height:92vh; overflow-y:auto; border-radius:16px 16px 0 0 }
  .popup-image    { display:none }
  .popup-content  { padding:48px 24px 32px }
  .popup-form input { font-size:16px }

  /* Steps */
  .payment-grid { grid-template-columns:1fr; gap:16px }
  .steps-grid   { grid-template-columns:1fr; gap:24px }
  .steps-section { padding:60px 0 }

  /* Blog */
  .blog-grid { grid-template-columns:1fr; padding:40px 0 }

  /* Gallery */
  .pub-gallery-grid  { grid-template-columns:repeat(2,1fr); gap:4px }
  .pub-gallery-item img { height:180px }
}

/* ═══ SMALL MOBILE ≤479px ═══ */
@media (max-width:479px) {
  .hero-title    { font-size:2.2rem }
  .trust-grid    { grid-template-columns:1fr }
  .trip-card     { height:260px }
  .holiday-card  { height:300px }
  .cruise-card   { height:260px }
  .pub-gallery-grid { grid-template-columns:1fr }
}

/* ══════════════════════════════════════
   HOMEPAGE — HERO
   ══════════════════════════════════════ */
.hero-home { position:relative; overflow:hidden; align-items:center; min-height:100vh; }
.hero-home .hero-overlay { background:rgba(0,0,0,0.45) }
.hero-home .hero-content {
  padding:80px 0 80px 80px;
  max-width:620px;
}
.hero-home .hero-title { font-size:4.5rem; font-weight:400; margin-bottom:20px }
.hero-home .hero-subtitle { font-size:0.95rem; max-width:500px; margin-bottom:32px; line-height:1.85 }
.hero-home .eyebrow { letter-spacing:3px; margin-bottom:20px }
.hero-home-btns { display:flex; flex-direction:column; align-items:flex-start; gap:0 }

.btn-home-primary {
  display:inline-block;
  background:var(--gold); color:var(--dark);
  font-family:'Montserrat',sans-serif; font-size:0.8rem; font-weight:600;
  letter-spacing:2px; text-transform:uppercase;
  padding:14px 32px; border:none; border-radius:0;
  transition:background 0.3s;
}
.btn-home-primary:hover { background:var(--gold-dark); color:var(--dark) }

.btn-home-secondary {
  display:block;
  font-family:'Montserrat',sans-serif; font-size:0.95rem;
  color:var(--gold); background:none; border:none;
  margin-top:16px; transition:opacity 0.3s; padding:0;
}
.btn-home-secondary:hover { opacity:0.75 }

/* ══════════════════════════════════════
   HOMEPAGE — TRUST STRIP
   ══════════════════════════════════════ */
.home-trust {
  background:#F8F4EE; padding:48px 0;
  border-bottom:1px solid rgba(201,169,110,0.4);
}
.home-trust .trust-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px }
.home-trust .trust-item { text-align:center; padding:16px }
.home-trust .trust-icon { font-size:36px; color:var(--gold); margin-bottom:12px; display:block }
.home-trust .trust-label {
  font-family:'Montserrat',sans-serif; font-size:0.8rem;
  color:var(--text-dark); letter-spacing:1px; text-transform:uppercase;
}

/* ══════════════════════════════════════
   HOMEPAGE — INTRO SPLIT
   ══════════════════════════════════════ */
.home-intro { background:var(--white) }
.home-intro-grid {
  display:grid; grid-template-columns:50% 50%; min-height:560px;
}
.home-intro-text {
  padding:80px 60px 80px 80px;
  display:flex; flex-direction:column; justify-content:center;
  color:var(--text-dark);
}
.home-intro-text h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:3rem; font-weight:400; color:#1A1A1A;
  line-height:1.2; margin-bottom:24px;
}
.home-intro-text p {
  font-family:'Montserrat',sans-serif;
  font-size:0.95rem; color:#555; line-height:1.9;
}
.home-intro-image { padding:40px; overflow:hidden }
.home-intro-image img {
  width:100%; height:100%; object-fit:cover; border-radius:12px; display:block;
}

/* ══════════════════════════════════════
   HOMEPAGE — TRIP TYPES
   ══════════════════════════════════════ */
.home-trip-types { background:var(--white); padding:80px 0; overflow:hidden }
.home-section-head { text-align:center; margin-bottom:48px }
.home-section-title {
  font-family:'Cormorant Garamond',serif;
  font-size:2.8rem; color:var(--text-dark); font-weight:400; margin-bottom:8px;
}
.home-section-sub {
  font-family:'Montserrat',sans-serif;
  font-size:0.95rem; color:#888; font-style:italic;
}
.trip-types-scroll {
  display:flex; gap:20px;
  padding:0 80px 16px; overflow-x:auto;
  scrollbar-width:none; -webkit-overflow-scrolling:touch;
  justify-content:center;
}
.trip-types-scroll::-webkit-scrollbar { display:none }
.trip-type-card {
  flex:0 0 200px; height:260px;
  position:relative; overflow:hidden; border-radius:12px;
  cursor:pointer; transition:transform 0.3s ease; display:block;
}
.trip-type-card img { width:100%; height:100%; object-fit:contain; background:#111; display:block }
.trip-type-card:hover { transform:scale(1.03) }
.trip-type-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
  display:flex; flex-direction:column; align-items:center;
  justify-content:flex-end; padding:20px;
}
.trip-type-overlay i { font-size:24px; color:var(--gold); margin-bottom:8px; display:block }
.trip-type-label {
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem; font-weight:400; color:var(--white); text-align:center;
}

/* ══════════════════════════════════════
   HOMEPAGE — HOW IT WORKS
   ══════════════════════════════════════ */
.home-hiw { background:var(--white); padding:80px 0 }
.hiw-grid {
  display:grid; grid-template-columns:55% 45%;
  gap:60px; align-items:center; margin-top:48px;
}
.hiw-steps { display:flex; flex-direction:column; gap:32px }
.hiw-step  { display:flex; align-items:flex-start; gap:20px }
.hiw-step-num {
  width:36px; height:36px; min-width:36px; border-radius:50%;
  background:var(--gold); color:var(--dark);
  font-family:'Montserrat',sans-serif; font-size:0.85rem; font-weight:700;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.hiw-step-body h3 {
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem; color:var(--text-dark); margin-bottom:4px; font-weight:500;
}
.hiw-step-body p {
  font-family:'Montserrat',sans-serif;
  font-size:0.9rem; color:#666; line-height:1.75;
}
.hiw-image img {
  width:100%; height:400px; object-fit:cover; border-radius:12px; display:block;
}

/* ══════════════════════════════════════
   HOMEPAGE — WHY GTL (DARK)
   ══════════════════════════════════════ */
.home-why-dark { background:#1A1A1A }
.home-why-grid {
  display:grid; grid-template-columns:40% 60%; min-height:460px;
}
.home-why-left {
  padding:80px 60px 80px 80px;
  display:flex; flex-direction:column; justify-content:center;
}
.home-why-eyebrow {
  font-family:'Montserrat',sans-serif; font-size:0.7rem;
  letter-spacing:4px; text-transform:uppercase; color:var(--gold);
  display:block; margin-bottom:16px;
}
.home-why-heading {
  font-family:'Cormorant Garamond',serif;
  font-size:3.5rem; font-weight:300; font-style:italic;
  color:var(--white); line-height:1.2;
}
.home-why-right {
  padding:80px 80px 80px 0;
  display:flex; flex-direction:column; justify-content:center; gap:40px;
}
.home-why-point { display:flex; align-items:flex-start; gap:20px }
.home-why-point i { font-size:28px; color:var(--gold); flex-shrink:0; margin-top:2px }
.home-why-point h4 {
  font-family:'Montserrat',sans-serif; font-size:0.9rem; font-weight:600;
  color:var(--white); margin-bottom:6px;
}
.home-why-point p {
  font-family:'Montserrat',sans-serif; font-size:0.9rem; color:#999; line-height:1.7;
}

/* ══════════════════════════════════════
   HOMEPAGE — TESTIMONIALS (CARDS)
   ══════════════════════════════════════ */
.home-testimonials { background:var(--white); padding:80px 0 }
.home-t-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.home-t-card {
  background:var(--white); border-radius:12px; padding:28px 24px; overflow:hidden;
  box-shadow:0 4px 24px rgba(0,0,0,0.08); text-align:center;
}
.testimonial-card {
  background:var(--white); border-radius:12px; padding:32px 24px 24px;
  box-shadow:0 4px 24px rgba(0,0,0,0.08); text-align:center;
}
.testimonial-card .stars { color:var(--gold); font-size:14px; letter-spacing:2px; margin-bottom:12px; display:block }
.testimonial-card .quote {
  font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:400;
  color:var(--text-dark); line-height:1.6; margin-bottom:16px;
}
.testimonial-card .attribution {
  font-family:'Montserrat',sans-serif; font-size:0.75rem;
  color:var(--gold); text-transform:uppercase; letter-spacing:2px; display:block;
}
.home-t-stars {
  color:var(--gold); font-size:14px; letter-spacing:2px;
  margin-bottom:12px; display:block;
}
.home-t-quote {
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem; font-weight:400; color:var(--text-dark);
  line-height:1.6; margin-bottom:16px;
}
.home-t-author {
  font-family:'Montserrat',sans-serif; font-size:0.75rem;
  color:var(--gold); text-transform:uppercase; letter-spacing:2px; display:block;
}
.home-t-more { text-align:center; margin-top:40px }
.home-t-link {
  font-family:'Montserrat',sans-serif; font-size:0.85rem;
  color:var(--gold); transition:opacity 0.3s;
}
.home-t-link:hover { opacity:0.75 }

/* ══════════════════════════════════════
   HOMEPAGE — ENQUIRY FORM
   ══════════════════════════════════════ */
.home-enquiry-section { background:#F8F4EE; padding:80px 0 }
.home-enquiry-grid {
  display:grid; grid-template-columns:35% 65%;
  gap:60px; align-items:start;
}
.home-eq-left h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:2.5rem; color:var(--text-dark); font-weight:400;
  line-height:1.2; margin-bottom:16px;
}
.home-eq-left > p {
  font-family:'Montserrat',sans-serif; font-size:0.95rem;
  color:#666; line-height:1.85; margin-bottom:32px;
}
.home-eq-trust { display:flex; flex-direction:column; gap:12px }
.home-eq-trust-item {
  display:flex; align-items:flex-start; gap:12px;
  font-family:'Montserrat',sans-serif; font-size:0.9rem; color:#555; line-height:1.6;
}
.home-eq-trust-item i { color:var(--gold); flex-shrink:0; margin-top:2px }

.home-eq-card {
  background:var(--white); padding:48px; border-radius:12px;
  box-shadow:0 4px 32px rgba(0,0,0,0.06);
}
.home-eq-form-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
.home-eq-field { display:flex; flex-direction:column }
.home-eq-field.span-2 { grid-column:1 / -1 }
.home-eq-field label {
  font-family:'Montserrat',sans-serif; font-size:0.7rem;
  letter-spacing:1.5px; text-transform:uppercase; color:#888; margin-bottom:6px;
}
.home-eq-field input,
.home-eq-field select,
.home-eq-field textarea {
  width:100%; padding:12px 16px;
  border:1px solid #E0D5C5; border-radius:6px;
  background:var(--white); font-family:'Montserrat',sans-serif;
  font-size:0.85rem; color:var(--text-dark);
  outline:none; transition:border-color 0.3s;
  -webkit-appearance:none; appearance:none;
}
.home-eq-field input:focus,
.home-eq-field select:focus,
.home-eq-field textarea:focus { border-color:#C9A96E }
.home-eq-field input::placeholder,
.home-eq-field textarea::placeholder { color:#bbb }
.home-eq-field textarea { resize:vertical }

.home-eq-submit {
  width:100%; padding:16px;
  background:#1A1A1A; color:var(--white);
  font-family:'Montserrat',sans-serif; font-size:0.8rem; font-weight:600;
  letter-spacing:3px; text-transform:uppercase;
  border:none; border-radius:0; cursor:pointer;
  transition:background 0.3s, color 0.3s;
}
.home-eq-submit:hover { background:var(--gold); color:#1A1A1A }
.home-eq-submit:disabled { opacity:0.6; cursor:default }

.home-form-success { text-align:center; padding:40px 0 }
.home-form-success .check { font-size:48px; color:var(--gold); display:block; margin-bottom:16px }
.home-form-success p { font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--text-dark) }
.home-form-error {
  background:rgba(192,57,43,0.1); border:1px solid #c0392b;
  color:#c0392b; padding:12px 16px; border-radius:4px;
  font-size:0.8rem; margin-top:16px;
}

/* ══════════════════════════════════════
   HOMEPAGE — FOOTER (MINIMAL)
   ══════════════════════════════════════ */
.footer-home {
  background:#1A1A1A; padding:40px 80px;
  border-top:1px solid rgba(201,169,110,0.3);
}
.footer-home-top {
  display:grid; grid-template-columns:1fr auto 1fr;
  align-items:center; gap:40px;
  padding-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-home-top .nav-logo img { height:44px }
.footer-home-nav { display:flex; gap:32px; justify-content:center }
.footer-home-nav a {
  font-family:'Montserrat',sans-serif; font-size:0.7rem;
  letter-spacing:2px; text-transform:uppercase;
  color:rgba(255,255,255,0.65); transition:color 0.3s;
}
.footer-home-nav a:hover { color:var(--gold) }
.footer-home-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:24px;
}
.footer-home-tagline {
  font-family:'Cormorant Garamond',serif;
  font-style:italic; color:var(--gold); font-size:1rem;
}
.footer-home-copy {
  font-family:'Montserrat',sans-serif; font-size:0.7rem; color:#555;
}

/* ══════════════════════════════════════
   CRUISE DB CARDS (public cruises.php)
   ══════════════════════════════════════ */
.cruise-db-section { background:var(--white); padding:80px 0; color:var(--text-dark) }
.cruise-db-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:28px; padding:60px 0;
}
.cruise-db-card {
  background:var(--white); border-radius:12px; overflow:hidden;
  box-shadow:0 4px 24px rgba(0,0,0,0.08);
  transition:transform 0.3s ease; position:relative;
}
.cruise-db-card:hover { transform:translateY(-4px) }
.cruise-db-card-img { width:100%; height:240px; object-fit:contain; background:#111; display:block }
.cruise-db-card-body { padding:24px }
.cruise-db-line {
  font-family:'Montserrat',sans-serif; font-size:0.7rem;
  text-transform:uppercase; letter-spacing:2px;
  color:var(--gold); display:block; margin-bottom:6px;
}
.cruise-db-ship {
  font-family:'Cormorant Garamond',serif;
  font-size:1.5rem; color:var(--text-dark); margin-bottom:6px; display:block;
}
.cruise-db-dest {
  font-family:'Montserrat',sans-serif; font-size:0.85rem; color:#666; margin-bottom:8px;
}
.cruise-db-meta {
  font-family:'Montserrat',sans-serif; font-size:0.8rem; color:#888; margin-bottom:12px;
}
.cruise-db-price {
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem; color:var(--gold); font-weight:600; margin-bottom:16px; display:block;
}
.cruise-db-enquire {
  display:block; width:100%; padding:12px 16px;
  background:var(--text-dark); color:var(--white);
  font-family:'Montserrat',sans-serif; font-size:0.75rem; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; text-align:center;
  border:none; cursor:pointer; transition:background 0.3s; border-radius:0;
}
.cruise-db-enquire:hover { background:var(--gold); color:var(--dark) }

.cruise-db-placeholder { position:relative; overflow:hidden }
.cruise-db-coming-soon {
  position:absolute; inset:0; z-index:2;
  background:rgba(0,0,0,0.55);
  display:flex; align-items:center; justify-content:center;
}
.cruise-db-coming-soon span {
  font-family:'Montserrat',sans-serif; font-size:0.7rem;
  letter-spacing:3px; text-transform:uppercase; color:var(--white);
  background:rgba(0,0,0,0.5); padding:8px 20px;
  border:1px solid rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   RESPONSIVE — NEW SECTIONS (≤1199px)
   ══════════════════════════════════════ */
@media (max-width:1199px) {
  .hero-home .hero-content  { padding:60px 0 60px 60px }
  .hero-home .hero-title    { font-size:3.8rem }

  .home-intro-grid          { grid-template-columns:1fr }
  .home-intro-image         { height:320px; padding:0 40px 40px }
  .home-intro-image img     { height:100% }

  .trip-types-scroll        { justify-content:flex-start; padding:0 40px 16px }

  .hiw-grid                 { grid-template-columns:1fr; gap:40px }
  .hiw-image                { display:none }

  .home-why-grid            { grid-template-columns:1fr }
  .home-why-left            { padding:60px 60px 0; text-align:center }
  .home-why-heading         { font-size:2.8rem }
  .home-why-right           { padding:40px 60px 60px }

  .home-enquiry-grid        { grid-template-columns:1fr; gap:40px }

  .footer-home              { padding:40px 40px }
  .footer-home-top          { grid-template-columns:1fr; gap:24px; text-align:center }
  .footer-home-nav          { flex-wrap:wrap; justify-content:center; gap:20px }
  .footer-home-bottom       { flex-direction:column; gap:12px; text-align:center }

  .cruise-db-grid           { grid-template-columns:repeat(2,1fr) }
}

/* ══════════════════════════════════════
   RESPONSIVE — NEW SECTIONS (≤767px)
   ══════════════════════════════════════ */
@media (max-width:767px) {
  .hero-home .hero-content  { padding:24px }
  .hero-home .hero-title    { font-size:2.8rem }

  .home-trust .trust-grid   { grid-template-columns:repeat(2,1fr) }

  .home-intro-text          { padding:48px 24px }
  .home-intro-image         { padding:0 24px 40px; height:260px }

  .home-trip-types          { padding:60px 0 }
  .trip-types-scroll        { padding:0 24px 16px; justify-content:flex-start }
  .trip-type-card           { flex:0 0 160px; height:220px }

  .home-hiw                 { padding:60px 0 }

  .home-why-left            { padding:60px 24px 0 }
  .home-why-right           { padding:32px 24px 60px }
  .home-why-heading         { font-size:2.2rem }

  .home-testimonials        { padding:60px 0 }
  .home-t-grid              { grid-template-columns:1fr }

  .home-enquiry-section     { padding:60px 0 }
  .home-eq-card             { padding:28px 20px }
  .home-eq-form-grid        { grid-template-columns:1fr }

  .footer-home              { padding:40px 24px }
  .footer-home-nav          { gap:16px }

  .cruise-db-grid           { grid-template-columns:1fr; padding:40px 0 }
}

@media (max-width:479px) {
  .home-trust .trust-grid   { grid-template-columns:repeat(2,1fr) }
  .home-t-grid              { grid-template-columns:1fr }
}

/* ══════════════════════════════════════════════
   INNER PAGE REDESIGN — NEW COMPONENTS
   ══════════════════════════════════════════════ */

/* ── Hero eyebrow (inner pages) ─────────────── */
.hero-eyebrow { font-family:'Montserrat',sans-serif; font-size:0.7rem; letter-spacing:3px; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:16px; }

/* ── About founder 2-col ─────────────────────── */
.about-founder { background:#F8F4EE; }
.about-founder .home-intro-grid { min-height:580px; }
.about-founder .home-intro-image { padding:0; }
.about-founder .home-intro-image img { border-radius:0; height:100%; min-height:400px; }
.about-founder .home-intro-text { padding:80px 60px 80px 80px; }

/* ── Why GTL card grid (white bg) ─────────────── */
.why-grid-light { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:48px; }
.why-card { background:var(--white); border-radius:12px; padding:36px 28px; box-shadow:0 2px 16px rgba(0,0,0,0.06); border:1px solid rgba(201,169,110,0.12); }
.why-card-icon { font-size:1.8rem; color:var(--gold); margin-bottom:18px; display:block; }
.why-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400; color:var(--text-dark); margin-bottom:10px; }
.why-card p { font-family:'Montserrat',sans-serif; font-size:0.85rem; line-height:1.75; color:#555; margin:0; }

/* ── CTA dark band (with bg image) ──────────── */
.cta-dark-band { position:relative; padding:100px 0; text-align:center; overflow:hidden; }
.cta-dark-band .cta-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.cta-dark-band .cta-overlay { position:absolute; inset:0; background:rgba(10,10,10,0.72); }
.cta-dark-band .cta-inner { position:relative; z-index:1; max-width:680px; margin:0 auto; padding:0 24px; }
.cta-dark-band h2 { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300; font-style:italic; color:var(--white); margin-bottom:20px; line-height:1.2; }
.cta-dark-band p { font-family:'Montserrat',sans-serif; font-size:0.9rem; line-height:1.75; color:rgba(255,255,255,0.8); margin-bottom:36px; }
.cta-dark-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ── Holidays trip type cards (2-col grid) ──── */
.holiday-types-section { background:var(--white); padding:80px 0; }
.holiday-types-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:48px; }
.holiday-type-card { position:relative; border-radius:12px; overflow:hidden; height:380px; display:block; text-decoration:none; }
.holiday-type-card img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; display:block; }
.holiday-type-card:hover img { transform:scale(1.04); }
.holiday-type-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(0,0,0,0.78) 0%,rgba(0,0,0,0.15) 60%,transparent 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:32px 28px; }
.holiday-type-eyebrow { font-family:'Montserrat',sans-serif; font-size:0.65rem; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; display:block; }
.holiday-type-title { font-family:'Cormorant Garamond',serif; font-size:2.2rem; font-weight:400; color:var(--white); margin-bottom:8px; line-height:1.1; }
.holiday-type-text { font-family:'Montserrat',sans-serif; font-size:0.82rem; line-height:1.6; color:rgba(255,255,255,0.85); margin-bottom:18px; }
.holiday-type-btn { display:inline-block; font-family:'Montserrat',sans-serif; font-size:0.7rem; letter-spacing:2px; text-transform:uppercase; color:var(--white); border:1px solid rgba(201,169,110,0.6); padding:10px 22px; transition:all 0.3s; }
.holiday-type-card:hover .holiday-type-btn { background:var(--gold); border-color:var(--gold); color:var(--dark); }

/* ── Problem/solution cream section ──────────── */
.ps-cream { background:#F8F4EE; padding:80px 0; text-align:center; }
.ps-cream .container { max-width:780px; }
.ps-cream h2 { font-family:'Cormorant Garamond',serif; font-size:2.8rem; font-weight:400; color:var(--text-dark); margin-bottom:24px; line-height:1.2; }
.ps-cream p { font-family:'Montserrat',sans-serif; font-size:0.9rem; line-height:1.85; color:#555; }

/* ── FAQ accordion white bg ──────────────────── */
.faq-section-light { background:var(--white); padding:80px 0 100px; }
.faq-section-light .faq-item { border-bottom:1px solid #E0D5C5; }
.faq-section-light .faq-item:first-child { border-top:1px solid #E0D5C5; }
.faq-section-light .faq-question { display:flex; align-items:center; justify-content:space-between; gap:16px; width:100%; background:none; border:none; padding:24px 0; cursor:pointer; text-align:left; }
.faq-section-light .faq-question h3 { font-family:'Montserrat',sans-serif; font-size:0.95rem; font-weight:500; color:var(--text-dark); margin:0; flex:1; }
.faq-section-light .faq-toggle { width:32px; height:32px; min-width:32px; border-radius:50%; background:var(--gold); color:var(--dark); display:flex; align-items:center; justify-content:center; font-size:1.1rem; font-weight:400; line-height:1; flex-shrink:0; }
.faq-section-light .faq-answer { max-height:0; overflow:hidden; transition:max-height 0.35s ease; }
.faq-section-light .faq-answer p { font-family:'Montserrat',sans-serif; font-size:0.88rem; line-height:1.8; color:#555; padding:0 0 24px; margin:0; }
.faq-section-light .faq-item.open .faq-answer { max-height:400px; }

/* ── Blog grid cream bg, white cards ─────────── */
.blog-section { background:#F8F4EE; padding:80px 0; }
.blog-grid-new { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card-new { background:var(--white); border-radius:12px; overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,0.07); transition:transform 0.3s ease; }
.blog-card-new:hover { transform:translateY(-4px); }
.blog-card-new-img { width:100%; height:200px; object-fit:cover; display:block; }
.blog-card-new-placeholder { width:100%; height:200px; background:#EDE8DF; display:flex; align-items:center; justify-content:center; color:#BBB; font-size:36px; }
.blog-card-new-body { padding:24px; }
.blog-card-new-date { font-family:'Montserrat',sans-serif; font-size:0.68rem; letter-spacing:2px; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:10px; }
.blog-card-new-title { font-family:'Cormorant Garamond',serif; font-size:1.45rem; font-weight:400; color:var(--text-dark); margin-bottom:10px; line-height:1.3; display:block; }
.blog-card-new-excerpt { font-family:'Montserrat',sans-serif; font-size:0.82rem; line-height:1.7; color:#666; margin-bottom:18px; }
.blog-card-new-link { font-family:'Montserrat',sans-serif; font-size:0.72rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--gold); text-decoration:none; font-weight:600; }
.blog-empty { padding:80px 0; text-align:center; }
.blog-empty p { font-family:'Montserrat',sans-serif; font-size:0.9rem; color:#999; }

/* ── Gallery white bg ────────────────────────── */
.gallery-section { background:var(--white); padding:80px 0; }
.pub-gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.pub-gallery-item { border-radius:12px; overflow:hidden; cursor:pointer; position:relative; aspect-ratio:1; }
.pub-gallery-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.4s ease; }
.pub-gallery-item:hover img { transform:scale(1.05); }
.pub-gallery-caption { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(transparent,rgba(0,0,0,0.6)); padding:20px 12px 12px; }
.pub-gallery-caption span { font-family:'Montserrat',sans-serif; font-size:0.75rem; color:var(--white); }
.gallery-empty { text-align:center; padding:80px 0; }
.gallery-empty p { font-family:'Montserrat',sans-serif; font-size:0.9rem; color:#999; }

/* ── Contact page split (cream left, white right) ── */
.contact-split-section { background:#F8F4EE; }
.contact-split { display:grid; grid-template-columns:1fr 1fr; min-height:600px; }
.contact-split-left { background:#F8F4EE; padding:80px 60px; }
.contact-split-right { background:var(--white); padding:80px 60px; }

/* ── Inner page enquiry section (matches homepage) ── */
.inner-eq-section { background:#F8F4EE; padding:80px 0; }
.inner-eq-grid { display:grid; grid-template-columns:35% 65%; gap:60px; align-items:start; }
.inner-eq-left h2 { font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:400; color:var(--text-dark); margin-bottom:20px; line-height:1.2; }
.inner-eq-left p { font-family:'Montserrat',sans-serif; font-size:0.88rem; line-height:1.8; color:#555; margin-bottom:28px; }
.inner-eq-trust { display:flex; flex-direction:column; gap:14px; }
.inner-eq-trust-item { display:flex; align-items:flex-start; gap:12px; }
.inner-eq-trust-icon { width:28px; height:28px; min-width:28px; border-radius:50%; background:var(--gold); display:flex; align-items:center; justify-content:center; color:var(--dark); font-size:10px; margin-top:2px; }
.inner-eq-trust-item span { font-family:'Montserrat',sans-serif; font-size:0.82rem; color:#555; line-height:1.6; }

/* ── Planning page steps (white bg) ──────────── */
.steps-section-new { background:var(--white); padding:80px 0; }
.steps-grid-new { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:48px; }
.step-card { background:#F8F4EE; border-radius:12px; padding:40px 28px; text-align:center; }
.step-card-num { width:52px; height:52px; border-radius:50%; background:var(--gold); color:var(--dark); font-family:'Montserrat',sans-serif; font-size:1.1rem; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; }
.step-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400; color:var(--text-dark); margin-bottom:12px; }
.step-card p { font-family:'Montserrat',sans-serif; font-size:0.85rem; line-height:1.7; color:#666; margin:0; }

/* ── Cruise why section (cream bg) ───────────── */
.cruise-why-section { background:#F8F4EE; padding:80px 0; }
.cruise-why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:48px; }

/* ══════════════════════════════════════════════
   RESPONSIVE OVERRIDES — NEW COMPONENTS
   ══════════════════════════════════════════════ */
@media (max-width:1199px) {
  .about-founder .home-intro-text { padding:60px 48px 60px 60px; }
  .why-grid-light { grid-template-columns:repeat(2,1fr); }
  .holiday-types-grid { grid-template-columns:1fr 1fr; }
  .inner-eq-grid { grid-template-columns:1fr; gap:40px; }
  .blog-grid-new { grid-template-columns:repeat(2,1fr); }
  .pub-gallery-grid { grid-template-columns:repeat(3,1fr); }
  .cruise-why-grid { grid-template-columns:repeat(2,1fr); }
  .contact-split { grid-template-columns:1fr; }
  .contact-split-left { padding:60px 48px; }
  .contact-split-right { padding:60px 48px; }
}

@media (max-width:767px) {
  .about-founder .home-intro-text { padding:48px 24px; }
  .about-founder .home-intro-grid { grid-template-columns:1fr; }
  .about-founder .home-intro-image { min-height:300px; }
  .why-grid-light { grid-template-columns:1fr; }
  .holiday-types-grid { grid-template-columns:1fr; }
  .holiday-type-card { height:300px; }
  .ps-cream h2 { font-size:2.2rem; }
  .cta-dark-band { padding:70px 0; }
  .cta-dark-band h2 { font-size:2.2rem; }
  .inner-eq-grid { gap:36px; }
  .blog-grid-new { grid-template-columns:1fr; }
  .pub-gallery-grid { grid-template-columns:repeat(2,1fr); }
  .steps-grid-new { grid-template-columns:1fr; }
  .cruise-why-grid { grid-template-columns:1fr; }
  .contact-split-left, .contact-split-right { padding:48px 24px; }
}

@media (max-width:479px) {
  .pub-gallery-grid { grid-template-columns:1fr 1fr; gap:8px; }
  .cta-dark-btns { flex-direction:column; align-items:center; }
}

/* ══════════════════════════════════════════════
   GTL UNIFIED FOOTER — ALL PAGES
   ══════════════════════════════════════════════ */
.gtl-footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(201,169,110,0.3);
  padding: 80px 0 0 0;
}
.gtl-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.gtl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}
.gtl-footer-brand img { height:52px; object-fit:contain; }
.gtl-footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: #C9A96E;
  margin-top: 16px;
  line-height: 1.6;
}
.gtl-footer-social { display:flex; gap:16px; margin-top:20px; }
.gtl-footer-social a { color:#C9A96E; font-size:22px; transition:color 0.3s; text-decoration:none; }
.gtl-footer-social a:hover { color:#fff; }
.gtl-footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A96E;
  margin-bottom: 20px;
}
.gtl-footer-col ul { list-style:none; padding:0; margin:0; }
.gtl-footer-col ul li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #888;
  line-height: 2.2;
  display: block;
  transition: color 0.3s;
  text-decoration: none;
}
.gtl-footer-col ul li a:hover { color:#fff; }
.gtl-footer-copyright {
  border-top: 1px solid #222;
  padding: 24px 0;
  text-align: center;
}
.gtl-footer-copyright p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: #555;
}
.gtl-footer-legal-text {
  background: #111;
  padding: 20px 48px;
  text-align: center;
}
.gtl-footer-legal-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: #666;
  line-height: 1.8;
}
.gtl-footer-badges {
  background: #111;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 0 0 24px;
}
.gtl-footer-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #C9A96E;
  border: 1px solid #C9A96E;
  padding: 8px 20px;
}

@media (max-width:900px) {
  .gtl-footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
}
@media (max-width:600px) {
  .gtl-footer { text-align:center; }
  .gtl-footer-grid { grid-template-columns:1fr; gap:32px; }
  .gtl-footer-social { justify-content:center; }
  .gtl-footer-inner { padding:0 24px; }
  .gtl-footer-legal-text { padding:20px 24px; }
}

/* ══════════════════════════════════════════════
   LEGAL & PRIVACY PAGE HERO — LEFT ALIGNED
   ══════════════════════════════════════════════ */
.hero-legal .hero-content { text-align:left; }
.hero-legal .hero-overlay { background:rgba(0,0,0,0.7); }
