/* ════════════════════════════════════════════════════════════════
   PBC YACHT CHARTER  ·  Premium Multi-Page Design
   Blue #006DAA  ·  Green #019948  ·  Gold #c9a84c
════════════════════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --blue:    #006DAA;
  --blue-d:  #004d7a;
  --blue-ink:#00213a;
  --green:   #019948;
  --green-l: #01b856;
  --gold:    #c9a84c;
  --gold-d:  #a87d28;
  --white:   #ffffff;
  --cream:   #faf9f6;
  --light:   #f0f4f8;
  --text:    #0a1628;
  --muted:   #5a6878;
  --radius:  12px;
  --radius-l:20px;
  --shadow:  0 2px 20px rgba(0,0,0,.08);
  --shadow-l:0 16px 56px rgba(0,0,0,.14);
  --t:       .3s ease;
  --t-slow:  .65s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Inter',system-ui,sans-serif;color:var(--text);background:var(--white);overflow-x:hidden}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}

/* ── Typography helpers ────────────────────────────────────── */
h1,h2,h3,h4{font-family:'Playfair Display',serif;line-height:1.2}
.overline{display:block;font-size:.72rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--gold);margin-bottom:.9rem}
.section-divider{width:48px;height:3px;background:var(--green);border-radius:2px;margin:0 auto 1.2rem}
.section-divider.left{margin-left:0}
.section-divider.gold{background:var(--gold)}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes heroZoom{from{transform:scale(1.12)}to{transform:scale(1)}}
@keyframes fadeUp{from{opacity:0;transform:translateY(36px)}to{opacity:1;transform:none}}
@keyframes marqueeScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes scrollBounce{0%,100%{transform:translateY(0) rotate(45deg)}50%{transform:translateY(8px) rotate(45deg)}}
@keyframes waPulse{0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,.45)}70%{box-shadow:0 0 0 14px rgba(37,211,102,0)}}

.reveal{opacity:0;transform:translateY(32px);transition:opacity .7s ease,transform .7s ease}
.reveal.d1{transition-delay:.1s}.reveal.d2{transition-delay:.2s}.reveal.d3{transition-delay:.3s}
.reveal.d4{transition-delay:.4s}.reveal.d5{transition-delay:.5s}
.reveal.visible{opacity:1;transform:none}

/* ── Buttons ────────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;gap:.5rem;font-weight:700;font-size:.8rem;letter-spacing:1.2px;padding:.85rem 2.2rem;border-radius:var(--radius);cursor:pointer;transition:all var(--t)}
.btn-gold{background:var(--gold);color:var(--white)}
.btn-gold:hover{background:var(--gold-d);transform:translateY(-2px)}
.btn-blue{background:var(--blue);color:var(--white)}
.btn-blue:hover{background:var(--blue-d);transform:translateY(-2px)}
.btn-outline-white{background:transparent;color:var(--white);border:1.5px solid rgba(255,255,255,.65)}
.btn-outline-white:hover{background:rgba(255,255,255,.12);transform:translateY(-2px)}
.btn-outline-blue{background:transparent;color:var(--blue);border:1.5px solid var(--blue)}
.btn-outline-blue:hover{background:var(--blue);color:var(--white);transform:translateY(-2px)}
.btn-green{background:var(--green);color:var(--white)}
.btn-green:hover{background:var(--green-l);transform:translateY(-2px)}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
#nav{position:fixed;top:0;left:0;right:0;z-index:1000;height:72px;display:flex;align-items:center;justify-content:space-between;padding:0 2.5rem;transition:background var(--t),box-shadow var(--t)}
#nav.solid{background:var(--blue-ink);box-shadow:0 2px 24px rgba(0,0,0,.4)}
.nav-logo{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;color:var(--gold);white-space:nowrap;letter-spacing:.5px}
.nav-center{display:flex;gap:2.2rem}
.nav-center a{font-size:.72rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.75);position:relative;padding-bottom:2px;transition:color var(--t)}
.nav-center a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1.5px;background:var(--gold);transition:width var(--t)}
.nav-center a:hover,.nav-center a.active{color:var(--white)}
.nav-center a:hover::after,.nav-center a.active::after{width:100%}
.nav-right{display:flex;align-items:center;gap:.7rem}
.lang-sw{display:flex;gap:.2rem}
.lang-sw button{background:none;border:1px solid rgba(255,255,255,.25);color:rgba(255,255,255,.55);font-size:.65rem;font-weight:700;letter-spacing:1px;padding:.2rem .48rem;border-radius:4px;cursor:pointer;transition:all var(--t)}
.lang-sw button:hover,.lang-sw button.active{background:var(--gold);border-color:var(--gold);color:var(--white)}
.nav-cta{font-size:.72rem;font-weight:700;letter-spacing:1.2px;color:var(--gold);border:1.5px solid var(--gold);padding:.45rem 1.1rem;border-radius:8px;transition:all var(--t);white-space:nowrap}
.nav-cta:hover{background:var(--gold);color:var(--white)}

/* Burger */
.burger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.burger span{display:block;width:22px;height:2px;background:var(--white);border-radius:2px;transition:all var(--t)}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open span:nth-child(2){opacity:0}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* Mobile overlay */
#mob-nav,.mob-nav{display:none;position:fixed;inset:0;background:var(--blue-ink);z-index:999;flex-direction:column;align-items:center;justify-content:center;gap:2.2rem}
#mob-nav.open,.mob-nav.open{display:flex}
#mob-nav a,.mob-nav a,#mob-nav li a,.mob-nav li a{font-size:1.4rem;font-weight:700;letter-spacing:2px;color:var(--white);text-transform:uppercase;transition:color var(--t)}
#mob-nav a:hover,.mob-nav a:hover{color:var(--gold)}
#mob-nav ul,.mob-nav ul{list-style:none;text-align:center;display:flex;flex-direction:column;gap:1.5rem}
.mob-nav .lang-sw,#mob-nav .lang-sw{margin-top:1rem}
.mob-nav .lang-sw button,#mob-nav .lang-sw button{font-size:.82rem;padding:.35rem .75rem}

/* ════════════════════════════════════════════════════════════
   HOME HERO
════════════════════════════════════════════════════════════ */
#hero{position:relative;height:100vh;min-height:640px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;background:var(--blue-ink)}
.hero-bg{position:absolute;inset:0;background:url('https://images.unsplash.com/photo-1540946485063-a37fbd5f87b3?w=1920&auto=format&fit=crop') center/cover;animation:heroZoom 24s ease-out infinite alternate}
.hero-ol{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,33,58,.5) 0%,rgba(0,33,58,.75) 100%)}
.hero-content{position:relative;z-index:2;color:var(--white);padding:0 1.5rem;max-width:900px}
.hero-label{display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--gold);border:1px solid rgba(201,168,76,.45);padding:.3rem 1.1rem;border-radius:20px;margin-bottom:1.8rem;animation:fadeUp .6s ease both}
.hero-content h1{font-size:clamp(2.6rem,6.5vw,6.5rem);line-height:1.1;margin-bottom:1.5rem;animation:fadeUp .6s .2s ease both;text-shadow:0 2px 20px rgba(0,0,0,.35)}
.hero-content h1 em{font-style:normal;color:var(--gold)}
.hero-sub{font-size:1.1rem;color:rgba(255,255,255,.8);max-width:580px;margin:0 auto 2.5rem;line-height:1.75;animation:fadeUp .6s .4s ease both}
.hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;animation:fadeUp .6s .6s ease both}
.hero-scroll{position:absolute;bottom:2rem;left:50%;transform:translateX(-50%);z-index:2;display:flex;flex-direction:column;align-items:center;gap:.5rem;color:rgba(255,255,255,.4);font-size:.65rem;letter-spacing:2px;text-transform:uppercase}
.hero-scroll-arrow{width:18px;height:18px;border-right:1.5px solid rgba(255,255,255,.4);border-bottom:1.5px solid rgba(255,255,255,.4);animation:scrollBounce 1.8s infinite}

/* ════════════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════════════ */
.marquee-strip{background:var(--blue-ink);border-top:1px solid rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.05);overflow:hidden;padding:.75rem 0}
.marquee-track{display:flex;width:max-content;animation:marqueeScroll 35s linear infinite}
.marquee-track:hover{animation-play-state:paused}
.m-item{white-space:nowrap;font-size:.72rem;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,.45);padding:0 2rem}
.m-sep{color:var(--gold);font-size:1rem;padding:0 .5rem}

/* ════════════════════════════════════════════════════════════
   SPLIT LAYOUT  (Who We Are)
════════════════════════════════════════════════════════════ */
.split{display:grid;grid-template-columns:1fr 1fr;min-height:600px}
.split-img{position:relative;overflow:hidden}
.split-img-inner{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .8s ease}
.split-img:hover .split-img-inner{transform:scale(1.04)}
.split-img-quote{position:absolute;bottom:2.5rem;left:2.5rem;right:2.5rem;color:var(--white);z-index:2}
.split-img-quote blockquote{font-family:'Playfair Display',serif;font-size:1.3rem;line-height:1.5;font-style:italic}
.split-img-quote cite{font-size:.75rem;letter-spacing:1.5px;text-transform:uppercase;color:var(--gold);margin-top:.6rem;display:block}
.split-img-ol{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,33,58,.75) 0%,rgba(0,33,58,.1) 60%)}
.split-content{padding:6rem 5rem;display:flex;flex-direction:column;justify-content:center;background:var(--cream)}
.split-content h2{font-size:clamp(2rem,3.5vw,3rem);margin-bottom:1.5rem}
.split-content p{font-size:1rem;line-height:1.85;color:var(--muted);margin-bottom:1.2rem}
.split-content .btn{margin-top:1.5rem;align-self:flex-start}

/* ════════════════════════════════════════════════════════════
   TRUST NUMBERS
════════════════════════════════════════════════════════════ */
.trust-numbers{background:var(--blue-ink);padding:6rem 2rem}
.trust-numbers-inner{max-width:1100px;margin:0 auto}
.trust-numbers h2{font-size:.82rem;color:rgba(255,255,255,.35);text-align:center;margin-bottom:4rem;font-weight:700;font-family:'Inter',sans-serif;letter-spacing:1.5px;text-transform:uppercase}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1px solid rgba(255,255,255,.06)}
.trust-item{text-align:center;padding:3.5rem 2rem;border-right:1px solid rgba(255,255,255,.06)}
.trust-item:last-child{border-right:none}
.trust-big-num{font-family:'Playfair Display',serif;font-size:clamp(3.5rem,5.5vw,5.5rem);line-height:1;color:var(--white);display:block}
.trust-big-num span{color:var(--gold)}
.trust-item-label{display:block;font-size:.7rem;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:rgba(255,255,255,.35);margin-top:.9rem}

/* ════════════════════════════════════════════════════════════
   DESTINATIONS PREVIEW (home)
════════════════════════════════════════════════════════════ */
.dest-preview{padding:7rem 2rem;background:var(--white)}
.dest-preview-header{text-align:center;max-width:640px;margin:0 auto 4rem}
.dest-preview-header h2{font-size:clamp(2rem,4vw,3.2rem);margin-bottom:1rem}
.dest-preview-header p{color:var(--muted);line-height:1.75}
.dest-cards{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:1.5rem;max-width:1200px;margin:0 auto}
.dest-card{position:relative;border-radius:var(--radius-l);overflow:hidden;min-height:520px;cursor:pointer;display:flex;align-items:flex-end}
.dest-card-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .7s ease}
.dest-card:hover .dest-card-bg{transform:scale(1.06)}
.dest-card-ol{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,33,58,.9) 0%,rgba(0,33,58,.15) 55%);transition:background var(--t)}
.dest-card:hover .dest-card-ol{background:linear-gradient(to top,rgba(0,33,58,.95) 0%,rgba(0,33,58,.25) 55%)}
.dest-card-body{position:relative;z-index:2;padding:2rem;color:var(--white);width:100%}
.dest-card-emoji{font-size:1.8rem;margin-bottom:.6rem}
.dest-card-body h3{font-size:1.6rem;margin-bottom:.5rem}
.dest-card-meta{font-size:.78rem;color:rgba(255,255,255,.55);letter-spacing:.5px;margin-bottom:1rem}
.dest-card-details{opacity:0;transform:translateY(12px);transition:all .4s ease;margin-bottom:1.2rem}
.dest-card:hover .dest-card-details{opacity:1;transform:none}
.dest-card-detail{display:flex;justify-content:space-between;font-size:.8rem;padding:.3rem 0;border-bottom:1px solid rgba(255,255,255,.1)}
.dest-detail-label{color:rgba(255,255,255,.5);font-weight:700;font-size:.7rem;letter-spacing:.5px;text-transform:uppercase}
.dest-card-cta{display:inline-block;font-size:.74rem;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;color:var(--gold);opacity:0;transform:translateY(8px);transition:all .4s .05s ease}
.dest-card:hover .dest-card-cta{opacity:1;transform:none}

/* ════════════════════════════════════════════════════════════
   HOME TESTIMONIAL FEATURE
════════════════════════════════════════════════════════════ */
.testimonial-feature{background:var(--cream);padding:7rem 2rem}
.testimonial-feature-inner{max-width:900px;margin:0 auto;text-align:center}
.tf-quote-mark{font-size:8rem;line-height:.6;color:var(--blue);opacity:.1;font-family:Georgia,serif;margin-bottom:1rem}
.tf-text{font-family:'Playfair Display',serif;font-size:clamp(1.4rem,3vw,2.2rem);line-height:1.55;color:var(--text);margin-bottom:2.5rem;font-style:italic}
.tf-stars{color:var(--gold);font-size:1.2rem;letter-spacing:3px;margin-bottom:1rem}
.tf-author{display:flex;align-items:center;justify-content:center;gap:1rem}
.tf-avatar{width:52px;height:52px;border-radius:50%;background:var(--blue-ink);color:var(--white);font-size:1.3rem;font-weight:700;display:flex;align-items:center;justify-content:center}
.tf-author-text strong{display:block;font-size:.93rem}
.tf-author-text span{font-size:.78rem;color:var(--muted)}

/* ════════════════════════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════════════════════════ */
.cta-strip{position:relative;min-height:400px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden}
.cta-strip-bg{position:absolute;inset:0;background:url('https://images.unsplash.com/photo-1502680390469-be75c86b636f?w=1800&auto=format&fit=crop') center/cover}
.cta-strip-ol{position:absolute;inset:0;background:rgba(0,33,58,.78)}
.cta-strip-content{position:relative;z-index:2;color:var(--white);padding:4rem 2rem}
.cta-strip-content h2{font-size:clamp(2rem,4vw,3.5rem);margin-bottom:1rem}
.cta-strip-content p{font-size:1rem;color:rgba(255,255,255,.7);margin-bottom:2.5rem;max-width:520px;margin-left:auto;margin-right:auto;line-height:1.75}
.cta-strip-content .btn{font-size:.85rem}

/* ════════════════════════════════════════════════════════════
   PAGE HERO  (inner pages)
════════════════════════════════════════════════════════════ */
.page-hero{position:relative;height:65vh;min-height:420px;display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;background:var(--blue-ink)}
.page-hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;opacity:.45}
.page-hero-ol{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,33,58,.65) 0%,rgba(0,33,58,.88) 100%)}
.page-hero-content{position:relative;z-index:2;color:var(--white);padding:0 2rem}
.page-crumb{font-size:.68rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:1.2rem}
.page-crumb a{color:var(--gold)}
.page-hero h1{font-size:clamp(2.5rem,6vw,5rem);text-shadow:0 2px 20px rgba(0,0,0,.3)}
.page-hero p{font-size:1rem;color:rgba(255,255,255,.7);margin-top:1rem;max-width:560px;margin-left:auto;margin-right:auto;line-height:1.7}

/* ════════════════════════════════════════════════════════════
   DESTINATIONS PAGE
════════════════════════════════════════════════════════════ */
.dest-tabs{display:flex;justify-content:center;gap:0;border-bottom:1px solid var(--light);background:var(--white);position:sticky;top:72px;z-index:100}
.dest-tab-btn{padding:1.1rem 2rem;font-size:.78rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);background:none;border:none;border-bottom:2.5px solid transparent;cursor:pointer;transition:all var(--t)}
.dest-tab-btn:hover{color:var(--blue)}
.dest-tab-btn.active{color:var(--blue);border-bottom-color:var(--blue)}
.dest-section{display:none;padding:6rem 2rem;max-width:1200px;margin:0 auto}
.dest-section.active{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.dest-section-img{border-radius:var(--radius-l);overflow:hidden;aspect-ratio:4/3;position:relative}
.dest-section-img img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}
.dest-section-img:hover img{transform:scale(1.04)}
.dest-section-text h2{font-size:clamp(1.8rem,3.5vw,3rem);margin-bottom:1rem}
.dest-section-text p{font-size:.95rem;line-height:1.85;color:var(--muted);margin-bottom:1.5rem}
.dest-highlights{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;margin:1.5rem 0 2rem}
.dest-highlight{padding:.8rem 1rem;background:var(--light);border-radius:8px;font-size:.84rem}
.dest-highlight strong{display:block;color:var(--blue);font-size:.7rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:.2rem}
.dest-areas-list{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2rem}
.dest-area-tag{background:rgba(0,109,170,.08);color:var(--blue);font-size:.75rem;font-weight:700;padding:.3rem .8rem;border-radius:20px;letter-spacing:.5px}

/* ════════════════════════════════════════════════════════════
   FLEET PAGE
════════════════════════════════════════════════════════════ */
.fleet-section{padding:6rem 2rem;background:var(--white)}
.filter-bar{display:flex;justify-content:center;gap:.5rem;flex-wrap:wrap;margin-bottom:3.5rem}
.filter-btn{padding:.55rem 1.4rem;font-size:.75rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;border-radius:20px;border:1.5px solid var(--light);color:var(--muted);transition:all var(--t);cursor:pointer;background:none}
.filter-btn:hover{border-color:var(--blue);color:var(--blue)}
.filter-btn.active{background:var(--blue);border-color:var(--blue);color:var(--white)}
.fleet-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:2rem;max-width:1100px;margin:0 auto}
.fleet-card{background:var(--white);border-radius:var(--radius-l);overflow:hidden;box-shadow:var(--shadow);transition:transform var(--t),box-shadow var(--t)}
.fleet-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-l)}
.fleet-card-img{height:230px;background-size:cover;background-position:center;position:relative}
.fleet-badge{position:absolute;top:.8rem;left:.8rem;background:var(--blue-ink);color:var(--white);font-size:.65rem;font-weight:700;letter-spacing:.8px;padding:.25rem .75rem;border-radius:20px}
.fleet-card-body{padding:1.5rem}
.fleet-card-body h3{font-size:1.15rem;margin-bottom:.8rem}
.fleet-specs{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;margin-bottom:1.2rem}
.fleet-spec{text-align:center;padding:.6rem;background:var(--light);border-radius:8px}
.fleet-spec-val{display:block;font-size:.95rem;font-weight:700;color:var(--text)}
.fleet-spec-label{display:block;font-size:.62rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;color:var(--muted);margin-top:.2rem}
.fleet-price-row{display:flex;align-items:center;justify-content:space-between}
.fleet-price{font-family:'Playfair Display',serif;font-size:1.4rem;color:var(--blue)}
.fleet-price small{font-family:'Lato',sans-serif;font-size:.72rem;color:var(--muted);font-weight:400}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════════ */
.about-story{padding:7rem 2rem;background:var(--white)}
.about-story-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.about-story-text h2{font-size:clamp(2rem,3.5vw,3rem);margin-bottom:1.5rem}
.about-story-text p{font-size:1rem;line-height:1.85;color:var(--muted);margin-bottom:1.2rem}
.about-story-img{border-radius:var(--radius-l);overflow:hidden;aspect-ratio:4/5}
.about-story-img img{width:100%;height:100%;object-fit:cover}

/* Process Timeline */
.process-section{padding:7rem 2rem;background:var(--blue-ink)}
.process-inner{max-width:1050px;margin:0 auto}
.process-inner h2{font-size:clamp(2rem,3.5vw,3rem);color:var(--white);text-align:center;margin-bottom:.8rem}
.process-inner>p{text-align:center;color:rgba(255,255,255,.55);margin-bottom:4rem;font-size:.95rem}
.process-timeline{display:grid;grid-template-columns:repeat(5,1fr);gap:0;position:relative}
.process-timeline::before{content:'';position:absolute;top:35px;left:10%;right:10%;height:1px;background:rgba(255,255,255,.1)}
.process-step{display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 1rem;position:relative}
.process-num{width:70px;height:70px;border-radius:50%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-size:1.5rem;color:var(--gold);margin-bottom:1.2rem;position:relative;z-index:1;transition:all var(--t)}
.process-step:hover .process-num{background:var(--green);border-color:var(--green);color:var(--white)}
.process-step h4{font-size:.9rem;color:var(--white);margin-bottom:.4rem}
.process-step p{font-size:.78rem;color:rgba(255,255,255,.45);line-height:1.6}

/* Why Choose (numbered list style) */
.why-section{padding:7rem 2rem;background:var(--cream)}
.why-inner{max-width:1000px;margin:0 auto}
.why-inner h2{font-size:clamp(2rem,3.5vw,3rem);margin-bottom:.8rem;text-align:center}
.why-inner>p{text-align:center;color:var(--muted);margin-bottom:4rem}
.why-list{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem}
.why-item{display:flex;gap:1.5rem;align-items:flex-start}
.why-item-num{font-family:'Playfair Display',serif;font-size:3rem;color:var(--blue);opacity:.15;line-height:1;flex-shrink:0;width:2.5rem}
.why-item h4{font-size:1.05rem;margin-bottom:.4rem}
.why-item p{font-size:.88rem;line-height:1.7;color:var(--muted)}

/* Team */
.team-section{padding:7rem 2rem;background:var(--white)}
.team-inner{max-width:900px;margin:0 auto;text-align:center}
.team-inner h2{font-size:clamp(2rem,3.5vw,3rem);margin-bottom:.8rem}
.team-inner>p{color:var(--muted);margin-bottom:4rem}
.team-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}
.team-card{text-align:left;background:var(--light);border-radius:var(--radius-l);overflow:hidden;transition:transform var(--t),box-shadow var(--t)}
.team-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-l)}
.team-photo{height:280px;background-size:cover;background-position:center top}
.team-info{padding:1.8rem}
.team-info h3{font-size:1.2rem;margin-bottom:.25rem}
.team-role{font-size:.78rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;color:var(--blue);margin-bottom:.9rem;display:block}
.team-bio{font-size:.87rem;color:var(--muted);line-height:1.7;margin-bottom:1rem}
.team-tags{display:flex;flex-wrap:wrap;gap:.4rem}
.team-tag{font-size:.7rem;font-weight:700;padding:.25rem .7rem;border-radius:20px}
.team-tag.cert{background:rgba(0,109,170,.08);color:var(--blue)}
.team-tag.lang{background:rgba(1,153,72,.1);color:var(--green)}

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════════════════════════ */
.contact-layout{display:grid;grid-template-columns:1fr 1.4fr;min-height:80vh;max-width:1200px;margin:0 auto;padding:6rem 2rem;gap:5rem;align-items:start}
.contact-info h2{font-size:clamp(1.8rem,3vw,2.8rem);margin-bottom:1rem}
.contact-info>p{font-size:.95rem;color:var(--muted);line-height:1.8;margin-bottom:2.5rem}
.contact-item{display:flex;align-items:center;gap:1.1rem;padding:1.2rem;border-radius:var(--radius);margin-bottom:.8rem;transition:background var(--t);cursor:pointer}
.contact-item:hover{background:var(--light)}
.contact-item-icon{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1.2rem}
.ci-wa{background:#25D366;color:var(--white)}
.ci-ph{background:var(--blue);color:var(--white)}
.ci-em{background:var(--gold);color:var(--white)}
.contact-item-text strong{display:block;font-size:.85rem;font-weight:700;margin-bottom:.15rem}
.contact-item-text span{font-size:.95rem;color:var(--muted)}

/* Wizard (contact page version) */
.wizard-box{background:var(--blue-ink);border-radius:var(--radius-l);padding:2.5rem;color:var(--white)}
.wizard-box h3{font-size:1.4rem;margin-bottom:.5rem}
.wizard-box>p{font-size:.88rem;color:rgba(255,255,255,.55);margin-bottom:2rem}
.wiz-progress{height:2px;background:rgba(255,255,255,.1);border-radius:2px;margin-bottom:1.8rem}
.wiz-fill{height:100%;background:var(--green);border-radius:2px;transition:width .45s ease}
.wiz-dots{display:flex;gap:.8rem;margin-bottom:2rem}
.wiz-dot{width:30px;height:30px;border-radius:50%;background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.15);color:rgba(255,255,255,.4);font-size:.78rem;font-weight:700;display:flex;align-items:center;justify-content:center;transition:all var(--t)}
.wiz-dot.active{background:var(--green);border-color:var(--green);color:var(--white)}
.wiz-dot.done{background:rgba(1,153,72,.3);border-color:var(--green);color:var(--white)}
.wiz-step{display:none}
.wiz-step.active{display:block}
.wiz-step h4{font-size:1.05rem;margin-bottom:1.2rem;color:var(--white)}
.wiz-dates-row{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;margin-bottom:1rem}
.wiz-dates-row label{display:block;font-size:.68rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;color:rgba(255,255,255,.45);margin-bottom:.35rem}
input[type=date].wiz-input,.wiz-input{width:100%;padding:.75rem 1rem;background:rgba(255,255,255,.07);border:1.5px solid rgba(255,255,255,.15);border-radius:var(--radius);color:var(--white);font-family:inherit;font-size:.9rem;outline:none;transition:border-color var(--t);color-scheme:dark}
.wiz-input::placeholder{color:rgba(255,255,255,.35)}
.wiz-input:focus{border-color:var(--gold)}
.wiz-check{display:flex;align-items:center;gap:.6rem;cursor:pointer;font-size:.85rem;color:rgba(255,255,255,.55);margin-bottom:1.5rem;justify-content:center}
.wiz-check input{accent-color:var(--green)}
.wiz-dest-grid{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;margin-bottom:1.5rem}
.wiz-dest-opt{background:rgba(255,255,255,.06);border:1.5px solid rgba(255,255,255,.12);border-radius:var(--radius);padding:.9rem;font-size:.83rem;font-weight:700;color:var(--white);cursor:pointer;transition:all var(--t);display:flex;align-items:center;gap:.5rem}
.wiz-dest-opt:hover,.wiz-dest-opt.sel{background:var(--green);border-color:var(--green)}
.wiz-counter-row{display:flex;align-items:center;justify-content:center;gap:2rem;margin:1.5rem 0}
.wiz-count-btn{width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.08);border:1.5px solid rgba(255,255,255,.2);color:var(--white);font-size:1.3rem;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all var(--t)}
.wiz-count-btn:hover{background:var(--green);border-color:var(--green)}
#wiz-num{font-family:'Playfair Display',serif;font-size:3.5rem;color:var(--white);min-width:60px;text-align:center}
.wiz-guests-label{font-size:.7rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.35);text-align:center;margin-bottom:1.5rem}
.wiz-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:.8rem;margin-bottom:1.5rem}
.wiz-form-grid .full{grid-column:1/-1}
.wiz-form-grid textarea{height:100px;resize:vertical}
.wiz-nav-row{display:flex;justify-content:space-between;align-items:center;gap:.8rem}
.wiz-nav-center{justify-content:center}
.btn-wiz-next{background:var(--gold);color:var(--white);font-size:.78rem;font-weight:700;letter-spacing:1px;padding:.75rem 1.8rem;border-radius:var(--radius);cursor:pointer;transition:all var(--t)}
.btn-wiz-next:hover{background:var(--gold-d);transform:translateY(-2px)}
.btn-wiz-back{background:rgba(255,255,255,.07);color:rgba(255,255,255,.6);font-size:.78rem;font-weight:700;padding:.75rem 1.4rem;border-radius:var(--radius);border:1px solid rgba(255,255,255,.15);cursor:pointer;transition:all var(--t)}
.btn-wiz-back:hover{background:rgba(255,255,255,.12)}
.btn-wiz-submit{background:var(--green);color:var(--white);font-size:.78rem;font-weight:700;letter-spacing:1.2px;padding:.75rem 1.8rem;border-radius:var(--radius);cursor:pointer;transition:all var(--t)}
.btn-wiz-submit:hover{background:var(--green-l);transform:translateY(-2px)}
.wiz-success{display:none;text-align:center;padding:2rem 0}
.wiz-success.show{display:block}
.wiz-success-icon{width:68px;height:68px;border-radius:50%;background:var(--green);color:var(--white);font-size:1.8rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem}
.wiz-success p{font-size:1.05rem;color:rgba(255,255,255,.8)}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION (full)
════════════════════════════════════════════════════════════ */
.test-section{padding:7rem 2rem;background:var(--light)}
.test-section-inner{max-width:1100px;margin:0 auto;text-align:center}
.test-section-inner h2{font-size:clamp(2rem,3.5vw,3rem);margin-bottom:.8rem}
.test-section-inner>p{color:var(--muted);margin-bottom:4rem}
.test-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.test-card{background:var(--white);border-radius:var(--radius-l);padding:2rem;box-shadow:var(--shadow);text-align:left;position:relative;transition:transform var(--t),box-shadow var(--t)}
.test-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-l)}
.test-q{font-size:3.5rem;color:var(--blue);opacity:.1;font-family:Georgia,serif;line-height:.8;position:absolute;top:1.2rem;right:1.5rem}
.test-stars{color:var(--gold);font-size:1rem;letter-spacing:2px;margin-bottom:.9rem}
.test-text{font-size:.9rem;line-height:1.75;color:var(--muted);margin-bottom:1.5rem;font-style:italic}
.test-auth{display:flex;align-items:center;gap:.8rem}
.test-av{width:42px;height:42px;border-radius:50%;background:var(--blue-ink);color:var(--white);font-size:1rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.test-auth-info strong{display:block;font-size:.88rem}
.test-auth-info span{font-size:.75rem;color:var(--muted)}

/* ════════════════════════════════════════════════════════════
   BLOG PREVIEW
════════════════════════════════════════════════════════════ */
.blog-section{padding:7rem 2rem;background:var(--white)}
.blog-section-inner{max-width:1100px;margin:0 auto}
.blog-section-hdr{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:3rem;gap:1rem}
.blog-section-hdr h2{font-size:clamp(2rem,3.5vw,3rem)}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:2rem}
.blog-card{background:var(--white);border-radius:var(--radius-l);overflow:hidden;box-shadow:var(--shadow);transition:transform var(--t),box-shadow var(--t)}
.blog-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-l)}
.blog-img{height:200px;background-size:cover;background-position:center;transition:transform .6s ease;overflow:hidden}
.blog-card:hover .blog-img{transform:scale(1.04)}
.blog-body{padding:1.4rem}
.blog-cat{display:inline-block;font-size:.65rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--green);background:rgba(1,153,72,.1);padding:.2rem .65rem;border-radius:20px;margin-bottom:.7rem}
.blog-body h3{font-size:1.05rem;margin-bottom:.55rem;line-height:1.35}
.blog-body p{font-size:.83rem;color:var(--muted);line-height:1.65;margin-bottom:1.2rem}
.blog-meta{display:flex;justify-content:space-between;align-items:center;font-size:.75rem}
.blog-meta span{color:var(--muted)}
.blog-meta a{color:var(--blue);font-weight:700;transition:color var(--t)}
.blog-meta a:hover{color:var(--green)}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
#footer{background:var(--blue-ink)}
.footer-body{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:3rem;max-width:1200px;margin:0 auto;padding:5rem 2.5rem 4rem}
.footer-logo{font-family:'Playfair Display',serif;color:var(--gold);font-size:1.15rem;margin-bottom:.8rem}
.footer-desc{font-size:.83rem;line-height:1.75;color:rgba(255,255,255,.4);margin-bottom:1.5rem}
.footer-socials{display:flex;gap:.5rem}
.footer-social{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.5);display:flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;transition:all var(--t)}
.footer-social:hover{background:var(--gold);border-color:var(--gold);color:var(--white)}
.footer-col h4{font-family:'Inter',sans-serif;font-size:.68rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:1.2rem}
.footer-col ul{display:flex;flex-direction:column;gap:.6rem}
.footer-col ul li a{font-size:.83rem;color:rgba(255,255,255,.45);transition:color var(--t)}
.footer-col ul li a:hover{color:var(--gold)}
.footer-contact-item{font-size:.83rem;color:rgba(255,255,255,.45);display:flex;align-items:center;gap:.6rem;margin-bottom:.6rem}
.footer-bar{border-top:1px solid rgba(255,255,255,.06);padding:1.3rem 2.5rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.8rem;max-width:1200px;margin:0 auto}
.footer-bar p{font-size:.75rem;color:rgba(255,255,255,.3)}
.footer-bar-links{display:flex;gap:1.5rem}
.footer-bar-links a{font-size:.75rem;color:rgba(255,255,255,.25);transition:color var(--t)}
.footer-bar-links a:hover{color:var(--gold)}

/* ════════════════════════════════════════════════════════════
   YOTW CARD
════════════════════════════════════════════════════════════ */
.yotw-card{position:fixed;bottom:2rem;right:2rem;z-index:200;background:var(--white);border-radius:var(--radius-l);box-shadow:0 8px 48px rgba(0,0,0,.22);width:290px;overflow:hidden;transform:translateX(140%);transition:transform .55s cubic-bezier(.34,1.56,.64,1)}
.yotw-card.visible{transform:none}
.yotw-close{position:absolute;top:.6rem;right:.6rem;width:26px;height:26px;border-radius:50%;background:rgba(0,0,0,.45);color:var(--white);font-size:.9rem;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:2;border:none}
.yotw-img{height:150px;background-size:cover;background-position:center}
.yotw-top{padding:.5rem 1rem 0;font-size:.6rem;font-weight:700;letter-spacing:1.5px;color:var(--muted);text-transform:uppercase}
.yotw-body{padding:.5rem 1rem 1rem}
.yotw-body h3{font-size:.95rem;margin-bottom:.3rem}
.yotw-body p{font-size:.78rem;color:var(--muted);margin-bottom:.8rem}

/* ════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════════════════════════ */
.wa-float{position:fixed;bottom:2rem;left:2rem;z-index:300;width:54px;height:54px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 24px rgba(37,211,102,.4);animation:waPulse 2.5s infinite;transition:transform var(--t)}
.wa-float:hover{transform:scale(1.1);animation:none}
.wa-float svg{width:28px;height:28px;fill:var(--white)}

/* ════════════════════════════════════════════════════════════
   UTILS & RESPONSIVE
════════════════════════════════════════════════════════════ */
.container{max-width:1200px;margin:0 auto;padding:0 2rem}
.section-pad{padding:7rem 2rem}
.section-pad-top{padding-top:0;padding-bottom:7rem}
.text-center{text-align:center}
.pt-nav{padding-top:72px}
.bg-white{background:var(--white)}
.bg-cream{background:var(--cream)}
.bg-ink{background:var(--blue-ink)}

/* ── Logo tokens ─────────────────────────────────────────── */
.logo-pbc{color:var(--gold);font-family:'Playfair Display',serif;font-weight:700;font-size:1.1rem}
.logo-yacht{color:rgba(255,255,255,.6);font-size:.75rem;letter-spacing:2px;margin-left:.4rem;text-transform:uppercase}

/* ── Eyebrow / section headings ─────────────────────────── */
.eyebrow{display:block;font-size:.68rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--blue);margin-bottom:.9rem}
.eyebrow-gold{color:var(--gold)}
.eyebrow-sm{font-size:.68rem;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:var(--muted);margin-bottom:.4rem;display:block}
.hero-eyebrow{display:inline-block;font-size:.68rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--gold);border:1px solid rgba(201,168,76,.4);padding:.3rem 1.1rem;border-radius:20px;margin-bottom:1.4rem;animation:fadeUp .6s ease both}
.section-heading{text-align:center;max-width:680px;margin:0 auto 4rem}
.section-heading h2{font-size:clamp(2rem,4vw,3rem);margin-bottom:.8rem}
.section-heading-light h2{color:var(--white)}
.section-sub{font-size:1rem;color:var(--muted);line-height:1.75;margin-top:.5rem}

/* ── Btn small ───────────────────────────────────────────── */
.btn-sm{padding:.55rem 1.2rem;font-size:.72rem}

/* ── CTA strip (new full-bleed layout) ───────────────────── */
.cta-strip{background:var(--blue-ink);padding:5rem 2rem}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.cta-inner h2{font-size:clamp(1.8rem,3.5vw,2.8rem);color:var(--white);margin-bottom:.5rem}
.cta-inner p{color:rgba(255,255,255,.6);font-size:.95rem;line-height:1.75}
.cta-inner .btn{flex-shrink:0}

/* ════════════════════════════════════════════════════════════
   FOOTER  (new multi-column)
════════════════════════════════════════════════════════════ */
.footer{background:var(--blue-ink)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.6fr;gap:3rem;padding:5rem 0 4rem}
.footer-brand .nav-logo{margin-bottom:.9rem;display:inline-block}
.footer-brand p{font-size:.83rem;color:rgba(255,255,255,.4);line-height:1.7;margin-top:.6rem}
.footer-socials{display:flex;gap:.5rem;margin-top:1.2rem}
.footer-socials a{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.5);display:flex;align-items:center;justify-content:center;transition:all var(--t)}
.footer-socials a:hover{background:var(--gold);border-color:var(--gold);color:var(--white)}
.footer-nav h4,.footer-dest h4,.footer-contact h4{font-size:.66rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.3);margin-bottom:1.1rem}
.footer-nav ul,.footer-dest ul{display:flex;flex-direction:column;gap:.55rem}
.footer-nav ul a,.footer-dest ul a{font-size:.83rem;color:rgba(255,255,255,.45);transition:color var(--t)}
.footer-nav ul a:hover,.footer-dest ul a:hover{color:var(--gold)}
.footer-contact p{font-size:.83rem;color:rgba(255,255,255,.45);margin-bottom:.5rem}
.footer-contact a{transition:color var(--t)}
.footer-contact a:hover{color:var(--gold)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.06);padding:1.4rem 0;text-align:center}
.footer-bottom p{font-size:.75rem;color:rgba(255,255,255,.25)}

/* ════════════════════════════════════════════════════════════
   DESTINATIONS PAGE  (detailed)
════════════════════════════════════════════════════════════ */
.dest-detail{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start;margin-bottom:5rem}
.dest-detail-img{position:relative;border-radius:var(--radius-l);overflow:hidden;aspect-ratio:4/3}
.dest-detail-img img{width:100%;height:100%;object-fit:cover;transition:transform .8s ease}
.dest-detail-img:hover img{transform:scale(1.04)}
.dest-detail-badge{position:absolute;top:1rem;right:1rem;background:var(--gold);color:var(--white);font-size:.7rem;font-weight:700;letter-spacing:1px;padding:.35rem 1rem;border-radius:20px}
.dest-detail-body h2{font-size:clamp(1.8rem,3.5vw,2.8rem);margin-bottom:1rem}
.dest-detail-body p{font-size:.95rem;line-height:1.85;color:var(--muted);margin-bottom:1rem}
.dest-highlights{list-style:none;margin:1.2rem 0 1.5rem;display:flex;flex-direction:column;gap:.5rem}
.dest-highlights li{font-size:.92rem;color:var(--text);padding:.5rem .7rem;border-radius:8px;background:var(--light)}
.dest-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:1.8rem}
.dest-tags span{background:rgba(0,109,170,.09);color:var(--blue);font-size:.73rem;font-weight:700;padding:.28rem .8rem;border-radius:20px;letter-spacing:.4px}
.dest-routes-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.dest-route-card{position:relative;height:240px;border-radius:var(--radius-l);overflow:hidden;background-size:cover;background-position:center;cursor:pointer;display:flex;align-items:flex-end}
.dest-route-card .route-ol{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,33,58,.85) 0%,rgba(0,33,58,.1) 60%);transition:background var(--t)}
.dest-route-card:hover .route-ol{background:linear-gradient(to top,rgba(0,33,58,.92) 0%,rgba(0,33,58,.2) 60%)}
.dest-route-card .route-body{position:relative;z-index:2;padding:1.4rem;color:var(--white)}
.dest-route-card h3{font-size:1.1rem;margin-bottom:.2rem}
.dest-route-card p{font-size:.78rem;color:rgba(255,255,255,.6)}

/* Best time strip */
.best-time-strip{background:var(--cream);padding:6rem 2rem}
.best-time-strip h2{font-size:clamp(1.8rem,3vw,2.5rem);text-align:center;margin-bottom:3rem}
.besttime-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:900px;margin:0 auto}
.besttime-card{background:var(--white);border-radius:var(--radius-l);padding:2.5rem 2rem;text-align:center;box-shadow:var(--shadow);transition:transform var(--t)}
.besttime-card:hover{transform:translateY(-5px)}
.besttime-icon{font-size:2.5rem;margin-bottom:1rem}
.besttime-card h3{font-size:1.05rem;margin-bottom:.3rem}
.besttime-card p{font-size:1rem;font-weight:700;color:var(--blue);margin:.3rem 0}
.besttime-note{font-size:.8rem!important;font-weight:400!important;color:var(--muted)!important}

/* ════════════════════════════════════════════════════════════
   FLEET PAGE  (detailed cards)
════════════════════════════════════════════════════════════ */
.fleet-img-wrap{position:relative;overflow:hidden;height:230px}
.fleet-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.fleet-card:hover .fleet-img-wrap img{transform:scale(1.05)}
.fleet-badge{position:absolute;top:.8rem;left:.8rem;background:var(--blue-ink);color:var(--white);font-size:.65rem;font-weight:700;letter-spacing:.8px;padding:.28rem .8rem;border-radius:20px;z-index:2}
.fleet-badge-gold{background:var(--gold)}
.fleet-badge-green{background:var(--green)}
.fleet-body{padding:1.5rem}
.fleet-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:1rem}
.fleet-header h3{font-size:1.15rem;line-height:1.3}
.fleet-type{font-size:.65rem;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;color:var(--blue);margin-bottom:.2rem}
.fleet-year{font-size:.75rem;font-weight:700;color:var(--muted);background:var(--light);padding:.2rem .6rem;border-radius:20px;flex-shrink:0}
.fleet-specs{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem;margin-bottom:1rem;padding:1rem;background:var(--light);border-radius:var(--radius)}
.spec-item{text-align:center}
.spec-icon{font-size:1.1rem;display:block;margin-bottom:.2rem}
.spec-val{font-size:.85rem;font-weight:700;color:var(--text);display:block}
.spec-label{font-size:.6rem;font-weight:700;letter-spacing:.6px;text-transform:uppercase;color:var(--muted);display:block;margin-top:.15rem}
.fleet-desc{font-size:.85rem;color:var(--muted);line-height:1.65;margin-bottom:1.2rem}
.fleet-price-row{display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--light);padding-top:1rem}
.fleet-from{font-size:.72rem;color:var(--muted);display:block}
.fleet-price{font-family:'Playfair Display',serif;font-size:1.5rem;color:var(--blue);font-weight:700}
.fleet-per{font-size:.75rem;color:var(--muted)}

/* What's included */
.included-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;max-width:1100px;margin:0 auto}
.included-item{text-align:center;padding:2rem 1.5rem;background:rgba(255,255,255,.04);border-radius:var(--radius-l);border:1px solid rgba(255,255,255,.06);transition:transform var(--t)}
.included-item:hover{transform:translateY(-4px);background:rgba(255,255,255,.07)}
.included-icon{font-size:2.2rem;margin-bottom:.9rem}
.included-item h4{font-size:.95rem;color:var(--white);margin-bottom:.6rem}
.included-item p{font-size:.83rem;color:rgba(255,255,255,.45);line-height:1.65}

/* Add-ons */
.addons-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.addon-card{background:var(--light);border-radius:var(--radius-l);padding:2rem 1.5rem;text-align:center;transition:transform var(--t),box-shadow var(--t)}
.addon-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-l)}
.addon-icon{font-size:2rem;margin-bottom:.8rem}
.addon-card h4{font-size:.95rem;margin-bottom:.5rem}
.addon-card p{font-size:.83rem;color:var(--muted);line-height:1.6;margin-bottom:1rem}
.addon-price{font-size:.8rem;font-weight:700;color:var(--blue);background:rgba(0,109,170,.09);padding:.3rem .9rem;border-radius:20px;display:inline-block}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE  (detailed)
════════════════════════════════════════════════════════════ */
/* Split reverse */
.split-reverse .split-img{order:2}
.split-reverse .split-content{order:1}

/* Values grid */
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.value-card{padding:2.5rem 1.5rem;background:var(--white);border-radius:var(--radius-l);box-shadow:var(--shadow);transition:transform var(--t)}
.value-card:hover{transform:translateY(-5px)}
.value-num{font-family:'Playfair Display',serif;font-size:3.5rem;color:var(--blue);opacity:.12;line-height:1;margin-bottom:.5rem}
.value-card h3{font-size:1rem;margin-bottom:.5rem}
.value-card p{font-size:.85rem;color:var(--muted);line-height:1.65}

/* Process steps (about page — vertical list) */
.process-steps{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:2.5rem}
.proc-step{display:grid;grid-template-columns:80px 1fr;gap:1.5rem;align-items:start}
.proc-num{font-family:'Playfair Display',serif;font-size:3.5rem;color:var(--gold);line-height:1;opacity:.55;text-align:center}
.proc-body h3{font-size:1.1rem;color:var(--white);margin-bottom:.5rem}
.proc-body p{font-size:.9rem;color:rgba(255,255,255,.55);line-height:1.7}

/* Why list (about page) */
.why-list{display:flex;flex-direction:column;gap:1.8rem}
.why-item{display:flex;gap:1.3rem;align-items:flex-start}
.why-num{font-family:'Playfair Display',serif;font-size:2.5rem;color:var(--blue);opacity:.2;line-height:1;flex-shrink:0;width:2.8rem}
.why-item h4{font-size:1rem;margin-bottom:.3rem}
.why-item p{font-size:.87rem;color:var(--muted);line-height:1.65}

/* Team grid (new style) */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.team-card{background:var(--white);border-radius:var(--radius-l);overflow:hidden;box-shadow:var(--shadow);transition:transform var(--t),box-shadow var(--t)}
.team-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-l)}
.team-photo{height:280px;overflow:hidden}
.team-photo img{width:100%;height:100%;object-fit:cover;object-position:top;transition:transform .7s ease}
.team-card:hover .team-photo img{transform:scale(1.05)}
.team-body{padding:1.8rem}
.team-body h3{font-size:1.15rem;margin-bottom:.2rem}
.team-role{font-size:.72rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;color:var(--blue);display:block;margin-bottom:.8rem}
.team-bio{font-size:.85rem;color:var(--muted);line-height:1.65;margin-bottom:1.2rem}
.team-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;border-top:1px solid var(--light);padding-top:1rem}
.team-stats div{text-align:center}
.ts-num{display:block;font-family:'Playfair Display',serif;font-size:1.1rem;color:var(--blue);font-weight:700}
.ts-label{display:block;font-size:.6rem;text-transform:uppercase;letter-spacing:.6px;color:var(--muted);margin-top:.1rem}

/* Testimonials grid */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.test-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.07);border-radius:var(--radius-l);padding:2rem;transition:transform var(--t)}
.test-card:hover{transform:translateY(-4px);background:rgba(255,255,255,.08)}
.test-stars{color:var(--gold);font-size:1rem;letter-spacing:2px;margin-bottom:1rem}
.test-quote{font-size:.9rem;line-height:1.75;color:rgba(255,255,255,.65);font-style:italic;margin-bottom:1.5rem}
.test-author{display:flex;align-items:center;gap:.8rem}
.test-avatar{width:40px;height:40px;border-radius:50%;background:var(--blue);color:var(--white);font-size:.85rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.test-name{font-size:.88rem;font-weight:700;color:var(--white)}
.test-location{font-size:.75rem;color:rgba(255,255,255,.4);margin-top:.1rem}

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE  (detailed)
════════════════════════════════════════════════════════════ */
.page-hero-short{height:50vh;min-height:340px}
.contact-items{display:flex;flex-direction:column;gap:.6rem;margin-bottom:2rem}
.contact-item{display:flex;align-items:center;gap:1rem;padding:1.1rem 1.2rem;border-radius:var(--radius-l);border:1.5px solid var(--light);background:var(--white);transition:all var(--t);cursor:pointer}
.contact-item:hover{border-color:var(--blue);box-shadow:0 4px 20px rgba(0,109,170,.1);transform:translateX(4px)}
.contact-item-wa:hover{border-color:#25D366}
.contact-item-email:hover{border-color:var(--gold)}
.ci-icon{width:52px;height:52px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ci-wa{background:#25D366;color:var(--white)}
.ci-phone{background:var(--blue);color:var(--white)}
.ci-email{background:var(--gold);color:var(--white)}
.ci-body{flex:1}
.ci-label{font-size:.65rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--muted);margin-bottom:.15rem}
.ci-value{font-size:1rem;font-weight:700;color:var(--text)}
.ci-note{font-size:.75rem;color:var(--muted);margin-top:.1rem}
.ci-arrow{font-size:1.2rem;color:var(--muted);transition:transform var(--t)}
.contact-item:hover .ci-arrow{transform:translateX(4px);color:var(--blue)}

/* Response promise */
.response-promise{display:flex;gap:1rem;align-items:flex-start;background:rgba(0,109,170,.06);border-radius:var(--radius-l);padding:1.5rem;margin-bottom:2rem;border-left:3px solid var(--blue)}
.rp-icon{font-size:1.6rem;flex-shrink:0;margin-top:.1rem}
.rp-title{font-weight:700;font-size:.9rem;margin-bottom:.3rem}
.rp-text{font-size:.85rem;color:var(--muted);line-height:1.65}

/* FAQ details */
.contact-faq h3{font-size:1rem;font-weight:700;margin-bottom:1rem}
.faq-item{border-bottom:1px solid var(--light);padding:.8rem 0}
.faq-item summary{font-size:.9rem;font-weight:600;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;color:var(--text)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:1.2rem;color:var(--blue);transition:transform var(--t)}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item p{font-size:.85rem;color:var(--muted);line-height:1.7;margin-top:.6rem;padding-bottom:.4rem}

/* Wizard (contact page) */
.wizard-wrap{position:sticky;top:100px}
.wizard-box{background:var(--blue-ink);border-radius:var(--radius-l);padding:2.5rem;color:var(--white);box-shadow:var(--shadow-l)}
.wiz-header h3{font-size:1.35rem;margin-bottom:.3rem}
.wiz-header p{font-size:.85rem;color:rgba(255,255,255,.5);margin-bottom:1.5rem}
.wiz-progress{margin-bottom:2rem}
.wiz-bar{height:3px;background:rgba(255,255,255,.1);border-radius:2px;margin-bottom:.9rem}
.wiz-fill{height:100%;background:var(--green);border-radius:2px;width:0%;transition:width .45s ease}
.wiz-dots{display:flex;gap:.5rem}
.wiz-dot{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.07);border:1.5px solid rgba(255,255,255,.15);color:rgba(255,255,255,.35);font-size:.75rem;font-weight:700;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all var(--t)}
.wiz-dot.active{background:var(--green);border-color:var(--green);color:var(--white)}
.wiz-dot.done{background:rgba(1,153,72,.25);border-color:var(--green);color:var(--white)}
.wiz-step{display:none;animation:fadeUp .3s ease both}
.wiz-step.active{display:block}
.wiz-step-label{font-size:.65rem;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--gold);margin-bottom:.4rem;display:block}
.wiz-step h4{font-size:1.05rem;color:var(--white);margin-bottom:1.3rem;font-family:'Playfair Display',serif}
.wiz-dest-grid{display:grid;grid-template-columns:1fr 1fr;gap:.6rem;margin-bottom:1.5rem}
.wiz-dest-opt{background:rgba(255,255,255,.05);border:1.5px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:1rem .9rem;cursor:pointer;transition:all var(--t);display:flex;flex-direction:column;align-items:flex-start;gap:.15rem;text-align:left}
.wiz-dest-opt:hover,.wiz-dest-opt.sel{background:var(--green);border-color:var(--green)}
.wdo-icon{font-size:1.4rem}
.wdo-name{font-size:.85rem;font-weight:700;color:var(--white)}
.wdo-sub{font-size:.73rem;color:rgba(255,255,255,.5)}
.wiz-dest-opt.sel .wdo-sub{color:rgba(255,255,255,.7)}
.wiz-type-grid{display:grid;grid-template-columns:1fr 1fr;gap:.6rem;margin-bottom:1.5rem}
.wiz-type-opt{background:rgba(255,255,255,.05);border:1.5px solid rgba(255,255,255,.1);border-radius:var(--radius);padding:1rem .9rem;cursor:pointer;transition:all var(--t);display:flex;flex-direction:column;gap:.15rem;text-align:left}
.wiz-type-opt:hover,.wiz-type-opt.sel{background:var(--blue);border-color:var(--blue)}
.wto-icon{font-size:1.4rem}
.wto-name{font-size:.85rem;font-weight:700;color:var(--white)}
.wto-sub{font-size:.72rem;color:rgba(255,255,255,.5)}
.wiz-field-group{margin-bottom:1rem}
.wiz-field-group label{display:block;font-size:.68rem;font-weight:700;letter-spacing:.8px;text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:.4rem}
.wiz-input{width:100%;padding:.75rem 1rem;background:rgba(255,255,255,.07);border:1.5px solid rgba(255,255,255,.12);border-radius:var(--radius);color:var(--white);font-family:inherit;font-size:.88rem;outline:none;transition:border-color var(--t);color-scheme:dark}
.wiz-input::placeholder{color:rgba(255,255,255,.3)}
.wiz-input:focus{border-color:var(--gold)}
.wiz-textarea{resize:vertical;min-height:90px}
.wiz-stepper{display:flex;align-items:center;gap:1.5rem;background:rgba(255,255,255,.07);border:1.5px solid rgba(255,255,255,.12);border-radius:var(--radius);padding:.6rem 1rem}
.wiz-step-btn{width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.1);border:1.5px solid rgba(255,255,255,.15);color:var(--white);font-size:1.2rem;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all var(--t);flex-shrink:0}
.wiz-step-btn:hover{background:var(--green);border-color:var(--green)}
#wiz-num{font-family:'Playfair Display',serif;font-size:2.2rem;color:var(--white);min-width:40px;text-align:center;flex:1}
.wiz-actions{display:flex;justify-content:space-between;align-items:center;margin-top:1.5rem;gap:.8rem}
.wiz-success{display:none;text-align:center;padding:2.5rem 0}
.wiz-success.show{display:block}
.wiz-success-icon{width:70px;height:70px;border-radius:50%;background:var(--green);color:var(--white);font-size:1.8rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem}
.wiz-success h3{color:var(--white);margin-bottom:.7rem}
.wiz-success p{font-size:.92rem;color:rgba(255,255,255,.65);line-height:1.75}
.wiz-ok-wa{margin-top:1rem;font-size:.88rem;color:rgba(255,255,255,.5)}
.wiz-ok-wa a{color:var(--gold);font-weight:700}

/* Location cards */
.location-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:3rem}
.loc-card{background:var(--white);border-radius:var(--radius-l);padding:2rem;box-shadow:var(--shadow);text-align:center;transition:transform var(--t)}
.loc-card:hover{transform:translateY(-4px)}
.loc-flag{font-size:2.5rem;margin-bottom:.8rem}
.loc-card h4{font-size:1rem;margin-bottom:.5rem}
.loc-card p{font-size:.83rem;color:var(--muted);line-height:1.6}

@media(max-width:1200px){
  .addons-grid{grid-template-columns:repeat(2,1fr)}
  .included-grid{grid-template-columns:repeat(2,1fr)}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .location-cards{grid-template-columns:repeat(2,1fr)}
  .values-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:1024px){
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item{border-bottom:1px solid rgba(255,255,255,.06)}
  .dest-cards{grid-template-columns:1fr 1fr}
  .dest-section.active{grid-template-columns:1fr}
  .dest-detail{grid-template-columns:1fr}
  .dest-routes-grid{grid-template-columns:1fr 1fr}
  .footer-body{grid-template-columns:1fr 1fr;gap:2.5rem}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2.5rem}
  .contact-layout{grid-template-columns:1fr}
  .wizard-wrap{position:static}
  .split{grid-template-columns:1fr}
  .split-img{min-height:400px;position:relative}
  .split-reverse .split-img{order:0}
  .split-reverse .split-content{order:0}
  .about-story-inner{grid-template-columns:1fr}
  .why-list{grid-template-columns:1fr}
  .process-timeline{grid-template-columns:repeat(3,1fr)}
  .process-timeline::before{display:none}
  .testimonials-grid{grid-template-columns:1fr 1fr}
  .besttime-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-center{display:none}
  .nav-right{display:none!important}
  .burger{display:flex}
  .dest-cards{grid-template-columns:1fr}
  .split-content{padding:4rem 2rem}
  .trust-grid{grid-template-columns:1fr 1fr}
  .wiz-dates-row,.wiz-dest-grid,.wiz-form-grid,.wiz-type-grid{grid-template-columns:1fr}
  .footer-body{grid-template-columns:1fr;padding:4rem 1.5rem 3rem}
  .footer-grid{grid-template-columns:1fr;gap:2rem}
  .footer-bar{flex-direction:column;text-align:center}
  .blog-section-hdr{flex-direction:column;align-items:flex-start}
  .dest-tabs{overflow-x:auto;justify-content:flex-start}
  .process-timeline{grid-template-columns:1fr}
  .process-timeline::before{display:none}
  .fleet-specs{grid-template-columns:repeat(2,1fr)}
  .addons-grid{grid-template-columns:1fr 1fr}
  .team-grid{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr 1fr}
  .testimonials-grid{grid-template-columns:1fr}
  .location-cards{grid-template-columns:1fr 1fr}
  .cta-inner{flex-direction:column;text-align:center}
  .dest-routes-grid{grid-template-columns:1fr}
  .besttime-grid{grid-template-columns:1fr}
}
@media(max-width:480px){
  .hero-btns{flex-direction:column;align-items:stretch}
  .hero-btns .btn{text-align:center;justify-content:center}
  .trust-grid{grid-template-columns:1fr}
  .trust-item{border-right:none}
  .addons-grid{grid-template-columns:1fr}
  .included-grid{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .location-cards{grid-template-columns:1fr}
  .fleet-specs{grid-template-columns:repeat(4,1fr)}
}
