/* =========================================================
   JS Travels — SLK Agency
   Design tokens: deep navy + brushed gold, echoing the crest
   logo's crown, road and gear motifs.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --navy-950:#081426;
  --navy-900:#0A1830;
  --navy-800:#12274A;
  --navy-700:#1B3562;
  --gold-600:#B4881E;
  --gold-500:#C9A227;
  --gold-400:#D9B84A;
  --gold-300:#E7C766;
  --cream-50:#FBF5E8;
  --cream-100:#F1E3C2;
  --ink-900:#151A22;
  --ink-700:#3B4351;
  --gray-500:#6B7280;
  --gray-300:#D8D6CC;
  --white:#FFFFFF;

  --font-display:"Fraunces", "Iowan Old Style", serif;
  --font-body:"Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm:4px;
  --radius-md:8px;
  --shadow-soft:0 12px 32px rgba(10,24,48,0.14);
  --shadow-tight:0 4px 14px rgba(10,24,48,0.10);
  --container:1180px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink-900);
  background:var(--cream-50);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4{font-family:var(--font-display);margin:0 0 .5em;line-height:1.15;color:var(--navy-900);font-weight:600;}
p{margin:0 0 1em;color:var(--ink-700);}
button{font-family:inherit;}

:focus-visible{
  outline:3px solid var(--gold-500);
  outline-offset:2px;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold-600);
}
.eyebrow::before{
  content:"";
  width:22px;height:2px;
  background:var(--gold-500);
  display:inline-block;
}

/* =========================================================
   Signature element: the "winding road" rule
   A dashed lane line inside a gold-to-navy road bar, echoing
   the road motif under the crest in the logo. Used to divide
   sections and underline key headings.
   ========================================================= */
.road-rule{
  position:relative;
  height:6px;
  border-radius:3px;
  background:linear-gradient(90deg,var(--navy-900) 0%,var(--navy-800) 55%,var(--gold-500) 100%);
  overflow:hidden;
  margin:0 0 2.5rem;
  max-width:140px;
}
.road-rule::after{
  content:"";
  position:absolute;
  top:50%;left:0;
  width:200%;
  height:2px;
  transform:translateY(-50%);
  background-image:repeating-linear-gradient(90deg,var(--cream-50) 0 10px, transparent 10px 20px);
  opacity:.85;
}
.road-rule.road-rule--light{
  background:linear-gradient(90deg,var(--gold-500) 0%,var(--gold-300) 100%);
}

/* Gear-bullet list, echoing the gear icon in the logo */
.gear-list li{
  position:relative;
  padding-left:34px;
  margin-bottom:.85rem;
  color:var(--ink-700);
}
.gear-list li::before{
  content:"";
  position:absolute;
  left:0;top:2px;
  width:20px;height:20px;
  background:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23C9A227" stroke-width="2"><path d="M12 2l1.2 3.2 3.3-1.2.7 3.4 3.4.7-1.2 3.3L22 13l-2.6 2.4 1.2 3.3-3.4.7-.7 3.4-3.3-1.2L12 24l-1.2-3.4-3.3 1.2-.7-3.4-3.4-.7 1.2-3.3L2 13l2.6-2.6-1.2-3.3 3.4-.7.7-3.4 3.3 1.2z" opacity="0"/><circle cx="12" cy="12" r="9"/><circle cx="12" cy="12" r="3.2"/><path d="M12 3v2.2M12 18.8V21M21 12h-2.2M5.2 12H3M18.4 5.6l-1.6 1.6M7.2 16.8l-1.6 1.6M18.4 18.4l-1.6-1.6M7.2 7.2 5.6 5.6"/></svg>') no-repeat center/contain;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:2px;
  font-weight:700;
  font-size:.92rem;
  letter-spacing:.02em;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-400),var(--gold-600));
  color:var(--navy-950);
}
.btn-gold:hover{transform:translateY(-2px);box-shadow:var(--shadow-tight);}
.btn-outline{
  background:transparent;
  border-color:rgba(248,246,239,.5);
  color:var(--cream-50);
}
.btn-outline:hover{border-color:var(--gold-400);color:var(--gold-300);}
.btn-outline-dark{
  background:transparent;
  border-color:var(--navy-800);
  color:var(--navy-900);
}
.btn-outline-dark:hover{background:var(--navy-900);color:var(--cream-50);}
.btn-navy{
  background:var(--navy-900);
  color:var(--cream-50);
}
.btn-navy:hover{background:var(--navy-800);transform:translateY(-2px);}
.btn-block{width:100%;justify-content:center;}
.btn-sm{padding:10px 18px;font-size:.82rem;}

/* =========================================================
   Pre-header (utility bar)
   ========================================================= */
.pre-header{
  background:var(--navy-950);
  border-bottom:1px solid rgba(201,162,39,.15);
  color:var(--cream-100);
  font-size:.78rem;
}
.pre-header .container{
  display:flex;align-items:center;justify-content:space-between;
  padding:8px 24px;flex-wrap:wrap;gap:8px;
}
.pre-header .pre-left{display:flex;align-items:center;gap:22px;flex-wrap:wrap;}
.pre-header .pre-left a{display:inline-flex;align-items:center;gap:6px;opacity:.85;transition:opacity .15s ease,color .15s ease;}
.pre-header .pre-left a:hover{opacity:1;color:var(--gold-300);}
.pre-header .pre-left svg{width:13px;height:13px;flex:none;color:var(--gold-400);}
.pre-header .pre-right{display:flex;align-items:center;gap:14px;}
.pre-header .pre-right a{
  width:26px;height:26px;border-radius:50%;border:1px solid rgba(201,162,39,.35);
  display:flex;align-items:center;justify-content:center;opacity:.85;
}
.pre-header .pre-right a:hover{background:var(--gold-500);color:var(--navy-950);opacity:1;border-color:var(--gold-500);}
@media (max-width:700px){
  .pre-header .pre-left span:not(:first-child){display:none;}
}

/* =========================================================
   Scroll reveal animation (section-to-section)
   ========================================================= */
.reveal{
  opacity:0;
  transform:translateY(34px);
  transition:opacity .7s cubic-bezier(.16,.8,.34,1), transform .7s cubic-bezier(.16,.8,.34,1);
  will-change:opacity, transform;
}
.reveal.in-view{opacity:1;transform:translateY(0); background: #EFF2F1; /*#fff;*/}
.reveal-stagger > *{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal-stagger.in-view > *{opacity:1;transform:translateY(0);}
.reveal-stagger.in-view > *:nth-child(1){transition-delay:.05s;}
.reveal-stagger.in-view > *:nth-child(2){transition-delay:.15s;}
.reveal-stagger.in-view > *:nth-child(3){transition-delay:.25s;}
.reveal-stagger.in-view > *:nth-child(4){transition-delay:.35s;}
.reveal-stagger.in-view > *:nth-child(5){transition-delay:.45s;}
.reveal-stagger.in-view > *:nth-child(6){transition-delay:.55s;}
@media (prefers-reduced-motion: reduce){
  .reveal,.reveal-stagger > *{opacity:1 !important;transform:none !important;transition:none !important;}
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header{
  position:sticky;top:0;z-index:100;
  background:#EFF2F1; /*#fff;*/
  border-bottom:7px solid rgb(249 249 247 / 25%); /*1px solid rgba(201,162,39,.25);*/
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:0px 10px;
  max-width:var(--container);
  margin:0 auto;
  gap:20px;
}
.brand{display:flex;align-items:center;gap:12px; width: 220px;
    height: 70px;
    overflow: hidden;}
.brand video {
    width: 220px;
    height: 50px;
    object-fit: contain;
    display: block;
     transform: scale(2.0);
}
.brand img{height:105px;width:auto;}
.brand-text{display:flex;flex-direction:column;line-height:1.1;}
.brand-text .brand-name{font-family:var(--font-display);color:var(--cream-50);font-size:1.28rem;font-weight:700;}
.brand-text .brand-tag{font-size:.62rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold-400);margin-top:3px;}

.main-nav{display:flex;align-items:center;gap:2px;}
.main-nav > ul{display:flex;align-items:center;gap:2px;}
.main-nav a{
  display:flex;align-items:center;gap:6px;
  padding:14px 16px;
  color:var(--navy-950);
  font-size:.88rem;
  font-weight:600;
  letter-spacing:.01em;
  border-bottom:2px solid transparent;
  transition:color .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.main-nav a:hover,.main-nav a.active{color:var(--gold-300);border-color:var(--gold-500);}
.has-sub{position:relative;}
.has-sub > a::after{content:"";width:6px;height:6px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);margin-left:2px;margin-top:-4px;}
.submenu{
  position:absolute;top:100%;left:0;
  min-width:250px;
  background:var(--navy-900);
  border:1px solid rgba(201,162,39,.28);
  border-top:2px solid var(--gold-500);
  box-shadow:var(--shadow-soft);
  padding:8px;
  opacity:0;visibility:hidden;transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:50;
}
.has-sub:hover .submenu,.has-sub:focus-within .submenu{opacity:1;visibility:visible;transform:translateY(0);}
.submenu a{
  display:flex;align-items:center;gap:10px;
  padding:11px 12px;
  border-radius:3px;
  border-bottom:none;
  font-size:.95rem;
  color:var(--cream-100);
}
.submenu a:hover{background:rgba(201,162,39,.12);color:var(--gold-300);}
.submenu .sub-icon{
  width:16px;height:16px;flex:none;
  color:var(--gold-500);
}
.nav-cta{margin-left:10px;}
.nav-toggle{display:none;}

@media (max-width:980px){
  .nav-toggle{
    display:flex;align-items:center;justify-content:center;
    width:42px;height:42px;
    background:transparent;border:1px solid rgba(201,162,39,.4);
    border-radius:3px;color:var(--cream-50);
  }
  .main-nav{
    position:fixed;inset:0 0 0 auto;
    width:min(320px,86vw);height:100vh;
    background:var(--navy-950);
    flex-direction:column;align-items:stretch;
    padding:90px 22px 30px;
    transform:translateX(100%);
    transition:transform .28s ease;
    overflow-y:auto;
  }
  .main-nav.open{transform:translateX(0);}
  .main-nav > ul{flex-direction:column;align-items:stretch;gap:0;width:100%;}
  .main-nav a{padding:14px 6px;border-bottom:1px solid rgba(255,255,255,.06);width:100%;}
  .submenu{
    position:static;opacity:1;visibility:visible;transform:none;
    box-shadow:none;border:none;background:rgba(255,255,255,.03);
    display:none;margin:0 0 8px;
  }
  .has-sub.open .submenu{display:block;}
  .has-sub > a::after{margin-left:auto;}
  .nav-cta{margin:16px 0 0;}
}

/* =========================================================
   FULL WIDTH HOME HERO SLIDER
========================================================= */
.home-hero-slider {
    position: relative;
    width: 100%;
    height: min(760px, 82vh);
    min-height: 600px;
    overflow: hidden;
    background: #07182f;
}
.home-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 6s ease;
}
.home-hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.home-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(4, 17, 34, 0.94) 0%,
            rgba(4, 17, 34, 0.78) 35%,
            rgba(4, 17, 34, 0.35) 65%,
            rgba(4, 17, 34, 0.12) 100%
        );
}
.home-hero-content {
    position: relative;
    z-index: 2;
    min-height: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
    padding: 80px 0;
}
.home-hero-content .eyebrow {
    margin-bottom: 18px;
}
.home-hero-content h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -2px;
}
.home-hero-content h1 em {
    color: var(--gold-500, #e4bd3e);
    font-style: normal;
}
.home-hero-content p {
    max-width: 620px;
    margin: 0 0 34px;
    color: rgba(255,255,255,0.86);
    font-size: 20px;
    line-height: 1.7;
}
.home-hero-content .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/* Arrows */
.home-hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    background: rgba(7,24,47,0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}
.home-hero-arrow:hover {
    background: var(--gold-500, #e4bd3e);
    color: #07182f;
    border-color: var(--gold-500, #e4bd3e);
}
.home-hero-prev {
    left: 30px;
}
.home-hero-next {
    right: 30px;
}
/* Dots */
.home-hero-dots {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.home-hero-dots button {
    width: 36px;
    height: 4px;
    padding: 0;
    border: 0;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}
.home-hero-dots button.active {
    width: 60px;
    background: var(--gold-500, #e4bd3e);
}
/* Mobile */
@media (max-width: 768px) {
    .home-hero-slider {
        height: 680px;
        min-height: 680px;
    }
    .home-hero-slide {
        background-position: center;
    }
    .home-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4,17,34,0.90),
                rgba(4,17,34,0.58)
            );
    }
    .home-hero-content {
        min-height: 680px;
        padding: 70px 24px 100px;
        justify-content: center;
    }
    .home-hero-content h1 {
        font-size: clamp(42px, 12vw, 62px);
        letter-spacing: -1px;
    }
    .home-hero-content p {
        font-size: 17px;
        line-height: 1.6;
    }
    .home-hero-arrow {
        width: 44px;
        height: 44px;
    }
    .home-hero-prev {
        left: 15px;
    }
    .home-hero-next {
        right: 15px;
    }
    .home-hero-dots {
        bottom: 24px;
    }
}

/* =========================================================
   Image-based content cards
   ========================================================= */
.img-card{
  display:block;
  border-radius:5px;overflow:hidden;
  background:var(--white);border:1px solid var(--gray-300);
  transition:transform .25s ease, box-shadow .25s ease;
}
.img-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-soft);}
.img-card .img-card-media{aspect-ratio:4/3;overflow:hidden;}
.img-card .img-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
.img-card:hover .img-card-media img{transform:scale(1.06);}
.img-card .img-card-body{padding:26px 24px;}
.img-card.on-navy{background:var(--navy-900);border-color:rgba(201,162,39,.22);}
.img-card.on-navy h3{color:var(--cream-50);}
.img-card.on-navy p{color:var(--cream-100);opacity:.78;}

/* =========================================================
   Split card — image on one side, content on the other
   (Home page "What We Do" section). Must stay below the
   .img-card rules so these overrides win.
   ========================================================= */
.split-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
}
.split-card .img-card-media{
  position:relative;
  aspect-ratio:auto;
  min-height:340px;
}
.split-card .img-card-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.split-card .img-card-body{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:44px 48px;
}
.split-card .img-card-body h3{
  font-size:clamp(1.4rem,2.4vw,1.9rem);
}
.split-card .img-card-body p{
  max-width:46ch;
}
.split-card .card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px 32px;
  margin-top:8px;
}
.split-card .card-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold-600);
  font-weight:700;
}
.split-card .card-link svg{transition:transform .2s ease;}
.split-card .card-link:hover svg{transform:translateX(4px);}

@media (max-width:768px){
  .split-card{grid-template-columns:1fr;}
  .split-card .img-card-media{min-height:240px;}
  .split-card .img-card-body{padding:26px 24px 30px;}
}

/* smaller page hero used across interior pages */
.page-hero{
  background:linear-gradient(160deg,var(--navy-950),var(--navy-800));
  color:var(--cream-50);
  padding:64px 110px 58px;
  position:relative;
}
.page-hero .eyebrow{color:var(--gold-400);}
.page-hero h1{color:var(--cream-50);font-size:clamp(2rem,3.4vw,2.7rem);margin-bottom:.4em;}
.page-hero p{color:var(--cream-100);opacity:.82;max-width:60ch;margin-bottom:0;}
.breadcrumb{font-size:.8rem;color:var(--gold-300);letter-spacing:.03em;margin-bottom:14px;}
.breadcrumb a{color:var(--cream-100);opacity:.75;}
.breadcrumb a:hover{color:var(--gold-300);}

/* =========================================================
   Sections
   ========================================================= */
section{padding:40px 0;}
.section-tight{padding:60px 0;}
.section-navy{background:var(--navy-900);color:var(--cream-50);}
.section-navy h2{color:#9b7218;}
.section-navy p{color:#9b7218;opacity:.82;}
.section-cream{background:var(--cream-100);}
.section-head{max-width:640px;margin-bottom:48px;}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.section-head.center .road-rule{margin-left:auto;margin-right:auto;}
.section-head h2{font-size:clamp(1.7rem,3vw,2.3rem);}

/* =========================================================
   Cards
   ========================================================= */
.grid{display:grid;gap:28px;}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

.card{
  background:var(--white);
  border:1px solid var(--gray-300);
  border-radius:var(--radius-sm);
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{transform:translateY(-5px);box-shadow:var(--shadow-soft);}

.service-card{
  background:var(--navy-900);
  color:var(--cream-50);
  border-radius:4px;
  border:1px solid rgba(201,162,39,.2);
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover{transform:translateY(-6px);border-color:var(--gold-500);box-shadow:var(--shadow-soft);}
.service-card .sc-media{aspect-ratio:16/11;overflow:hidden;}
.service-card .sc-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
.service-card:hover .sc-media img{transform:scale(1.07);}
.service-card .sc-body{padding:28px 26px 30px;}
.service-icon{
  width:52px;height:52px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(201,162,39,.12);
  border:1px solid rgba(201,162,39,.35);
  border-radius:50%;
  color:var(--gold-400);
  margin-bottom:22px;
}
.service-card h3{color:var(--cream-50);font-size:1.24rem;}
.service-card p{color:var(--cream-100);opacity:.78;font-size:.94rem;}
.service-card .card-link{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--gold-400);font-weight:700;font-size:.84rem;
  margin-top:14px;letter-spacing:.02em;
}
.service-card .card-link svg{width:14px;height:14px;transition:transform .2s ease;}

/* =========================================================
   FAQ Accordion
   ========================================================= */
.faq-list{max-width:820px;margin:0 auto;display:flex;flex-direction:column;gap:14px;}
.faq-item{
  background:var(--white);
  border:1px solid var(--gray-300);
  border-radius:var(--radius-sm);
  padding:4px 26px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open]{border-color:var(--gold-500);box-shadow:var(--shadow-soft);}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:20px 0;
  font-weight:700;
  color:var(--navy-900);
  font-size:1.02rem;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item .faq-chevron{flex-shrink:0;color:var(--gold-600);transition:transform .25s ease;}
.faq-item[open] .faq-chevron{transform:rotate(180deg);}
.faq-item p{padding:0 0 22px;margin:0;color:var(--gray-500);}
.service-card:hover .card-link svg{transform:translateX(4px);}

.vehicle-card{display:block;background:var(--white);border-radius:5px;overflow:hidden;border:1px solid var(--gray-300);transition:transform .2s ease, box-shadow .2s ease;}
.vehicle-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-soft);}
.vehicle-card .vehicle-media{aspect-ratio:16/10;background:var(--cream-100);display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;}
.vehicle-card .vehicle-media img{width:100%;height:100%;object-fit:cover;}
.vehicle-tag{
  position:absolute;top:14px;left:14px;
  background:var(--navy-950);color:var(--gold-300);
  font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;font-weight:700;
  padding:6px 12px;border-radius:2px;
}
.vehicle-body{padding:22px 24px 26px;}
.vehicle-body h3{font-size:1.12rem;margin-bottom:.3em;}
.vehicle-meta{display:flex;gap:14px;flex-wrap:wrap;margin:12px 0 16px;}
.vehicle-meta span{
  font-size:.76rem;color:var(--navy-800);font-weight:600;
  background:var(--cream-100);padding:5px 10px;border-radius:2px;
  border:1px solid var(--gray-300);
}
.price-note{
  font-size:.82rem;color:var(--gold-600);font-weight:700;
  display:flex;align-items:center;gap:6px;
}

/* =========================================================
   Cab category card (Travels page)
   ========================================================= */
.cab-card{display:block;background:var(--white);border-radius:6px;overflow:hidden;border:1px solid var(--gray-300);transition:transform .2s ease, box-shadow .2s ease;}
.cab-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-soft);}
.cab-card .cab-media{aspect-ratio:16/11;overflow:hidden;}
.cab-card .cab-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
.cab-card:hover .cab-media img{transform:scale(1.06);}
.cab-card .cab-body{padding:24px 26px 28px;}
.cab-card h3{font-size:1.18rem;letter-spacing:.01em;margin-bottom:8px;}
.cab-card .cab-desc{color:var(--gray-500);font-size:.92rem;line-height:1.55;margin-bottom:18px;min-height:2.8em;}
.cab-stats{display:flex;gap:28px;padding:16px 0;border-top:1px solid var(--gray-300);border-bottom:1px solid var(--gray-300);margin-bottom:20px;}
.cab-stats .cab-stat b{display:block;font-family:var(--font-display);font-size:1.35rem;color:var(--navy-900);line-height:1;}
.cab-stats .cab-stat span{font-size:.68rem;letter-spacing:.08em;text-transform:uppercase;color:var(--gray-500);}
.cab-card .cab-actions{display:flex;gap:10px;}
.cab-card .cab-actions .btn{flex:1;}

.blog-card .card-media{aspect-ratio:16/10;overflow:hidden;}
.blog-card .card-media img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
.blog-card:hover .card-media img{transform:scale(1.06);}
.blog-card .card-body{padding:24px 24px 28px;}
.blog-card .cat{
  display:inline-block;font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;
  color:var(--gold-600);font-weight:700;margin-bottom:10px;
}
.blog-card h3{font-size:1.15rem;margin-bottom:.5em;}
.blog-card .meta{font-size:.78rem;color:var(--gray-500);margin-top:14px;}
.blog-card .read-more{font-size:.84rem;font-weight:700;color:var(--navy-800);display:inline-flex;align-items:center;gap:6px;margin-top:14px;}
.blog-card:hover .read-more{color:var(--gold-600);}

.value-row{display:flex;gap:20px;align-items:flex-start;}
.value-row .num{
  font-family:var(--font-display);font-size:1.6rem;color:var(--gold-500);
  border:1.5px solid var(--gold-500);width:52px;height:52px;flex:none;
  display:flex;align-items:center;justify-content:center;border-radius:50%;
}

.testimonial{
  background:var(--white);border:1px solid var(--gray-300);
  padding:30px 28px;border-radius:4px;
}
.testimonial p{font-style:italic;color:var(--ink-700);}
.testimonial .who{display:flex;align-items:center;gap:12px;margin-top:16px;}
.testimonial .avatar{
  width:42px;height:42px;border-radius:50%;
  background:var(--navy-800);color:var(--gold-300);
  display:flex;align-items:center;justify-content:center;font-weight:700;font-family:var(--font-display);
}
.testimonial .who b{display:block;font-size:.9rem;color:var(--navy-900);}
.testimonial .who span{font-size:.78rem;color:var(--gray-500);}

/* =========================================================
   Forms
   ========================================================= */
.form-panel{
  background:var(--white);
  border:1px solid var(--gray-300);
  border-radius:5px;
  padding:36px;
}
.form-panel.on-navy{background:var(--navy-800);border-color:rgba(201,162,39,.3);}
.form-panel.on-navy label{color:var(--cream-100);}
.form-panel.on-navy .field input,
.form-panel.on-navy .field select,
.form-panel.on-navy .field textarea{
  background:var(--navy-900);border-color:rgba(201,162,39,.3);color:var(--cream-50);
}
.field{margin-bottom:18px;}
.field label{
  display:block;font-size:.8rem;font-weight:700;letter-spacing:.02em;
  margin-bottom:7px;color:var(--navy-800);
}
.field .req{color:var(--gold-600);}
.field input,.field select,.field textarea{
  width:100%;padding:12px 14px;
  border:1.4px solid var(--gray-300);border-radius:3px;
  font-family:var(--font-body);font-size:.92rem;color:var(--ink-900);
  background:var(--cream-50);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--gold-500);outline:none;
  box-shadow:0 0 0 3px rgba(201,162,39,.18);
}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.form-note{font-size:.78rem;color:var(--gray-500);margin-top:14px;}
.alert{
  padding:14px 18px;border-radius:3px;font-size:.9rem;margin-bottom:20px;
  border-left:4px solid;
}
.alert-success{background:#EAF6EE;border-color:#2E9E5B;color:#1D6B3E;}
.alert-error{background:#FCEBEA;border-color:#C0392B;color:#8E2A20;}
.honeypot{position:absolute;left:-9999px;top:-9999px;opacity:0;height:0;}

/* =========================================================
   Misc components
   ========================================================= */
.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.tag-list{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.tag-list span{
  font-size:.76rem;font-weight:700;letter-spacing:.03em;
  padding:7px 13px;border-radius:20px;
  background:rgba(201,162,39,.12);color:var(--gold-600);
  border:1px solid rgba(201,162,39,.3);
}
.media-frame{
  border-radius:5px;overflow:hidden;border:1px solid var(--gray-300);
  box-shadow:var(--shadow-tight);
}
.cta-band{
  background:linear-gradient(120deg,var(--navy-950),var(--navy-800) 70%);
  color:var(--cream-50);padding:64px 0;text-align:center;position:relative;overflow:hidden;
}
.cta-band::before{
  content:"";position:absolute;inset:0;
  background:repeating-linear-gradient(115deg,rgba(201,162,39,.06) 0 2px, transparent 2px 34px);
}
.cta-band .container{position:relative;z-index:2;}
.cta-band h2{color:var(--cream-50);}
.cta-band p{color:var(--cream-100);opacity:.82;max-width:56ch;margin-left:auto;margin-right:auto;}
.cta-actions{display:flex;gap:14px;justify-content:center;margin-top:26px;flex-wrap:wrap;}

/* =========================================================
   Full-width photo banner
   ========================================================= */
.photo-banner{
  position:relative;
  min-height:420px;
  display:flex;align-items:center;
  background-size:cover;background-position:center;
  overflow:hidden;
  padding:0;
}
.photo-banner::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(100deg,rgba(7,15,31,.88) 0%,rgba(7,15,31,.62) 45%,rgba(7,15,31,.22) 100%); background-repeat: no-repeat;
}
.photo-banner .container{position:relative;z-index:2;}
.photo-banner-inner{max-width:520px;}
.photo-banner .eyebrow{color:var(--gold-400);}
.photo-banner h2{color:var(--cream-50);font-size:clamp(1.9rem,3.4vw,2.6rem);margin:10px 0 16px;}
.photo-banner p{color:var(--cream-100);opacity:.88;margin-bottom:26px;}
.photo-banner.align-right .photo-banner-inner{margin-left:auto;text-align:right;}
.photo-banner.align-right::before{background:linear-gradient(260deg,rgba(7,15,31,.88) 0%,rgba(7,15,31,.62) 45%,rgba(7,15,31,.22) 100%);}
.photo-banner.align-right .cta-actions{justify-content:flex-end;}
@media(max-width:768px){
  .photo-banner{min-height:340px;}
  .photo-banner::before{background:linear-gradient(180deg,rgba(7,15,31,.5) 0%,rgba(7,15,31,.88) 70%);}
  .photo-banner.align-right::before{background:linear-gradient(180deg,rgba(7,15,31,.5) 0%,rgba(7,15,31,.88) 70%);}
  .photo-banner-inner{max-width:100%;}
  .photo-banner.align-right .photo-banner-inner{margin-left:0;text-align:left;}
  .photo-banner.align-right .cta-actions{justify-content:flex-start;}
}

.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.gallery-grid .g-item{
  border-radius:4px;overflow:hidden;position:relative;aspect-ratio:1/1;
  background:linear-gradient(150deg,var(--navy-800),var(--navy-950));
  border:1px solid var(--gray-300);
}
.gallery-grid .g-item img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease;}
.gallery-grid .g-item:hover img{transform:scale(1.06);}
.gallery-grid .g-item.tall{grid-row:span 2;}
.g-caption{
  position:absolute;left:0;right:0;bottom:0;
  padding:14px 14px 12px;
  background:linear-gradient(0deg,rgba(8,20,38,.88),transparent);
  color:var(--cream-50);font-size:.8rem;font-weight:700;
  opacity:0;transform:translateY(6px);
  transition:opacity .2s ease, transform .2s ease;
}
.g-item:hover .g-caption{opacity:1;transform:translateY(0);}

.filter-bar{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:36px;}
.filter-bar a{
  padding:9px 18px;border-radius:20px;font-size:.82rem;font-weight:700;
  border:1.4px solid var(--gray-300);color:var(--navy-800);
}
.filter-bar a.active,.filter-bar a:hover{background:var(--navy-900);color:var(--gold-300);border-color:var(--navy-900);}

.timeline{border-left:2px dashed var(--gold-500);padding-left:26px;margin-left:6px;}
.timeline .t-item{position:relative;padding-bottom:30px;}
.timeline .t-item::before{
  content:"";position:absolute;left:-33px;top:2px;
  width:13px;height:13px;border-radius:50%;background:var(--gold-500);
  box-shadow:0 0 0 4px var(--cream-50);
}
.timeline .t-item h4{margin-bottom:.25em;font-size:1.02rem;}

.map-frame{border-radius:5px;overflow:hidden;border:1px solid var(--gray-300);height:340px;}
.map-frame iframe{width:100%;height:100%;border:0;}

.contact-info-list{margin-top:26px;}
.contact-info-list li{display:flex;gap:14px;margin-bottom:20px;align-items:flex-start;}
.contact-info-list .ci-icon{
  width:40px;height:40px;flex:none;border-radius:50%;
  background:rgba(201,162,39,.14);color:var(--gold-500);
  display:flex;align-items:center;justify-content:center;
}
.contact-info-list b{display:block;font-size:.92rem;color:var(--navy-900);}
.contact-info-list span{font-size:.86rem;color:var(--gray-500);}

/* =========================================================
   Footer
   ========================================================= */
.site-footer{background:var(--navy-950);color:var(--cream-100);padding-top:64px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,.08);}
.footer-brand .brand{margin-bottom:14px;}
.footer-brand p{color:var(--cream-100);opacity:.7;font-size:.9rem;max-width:32ch;}
.site-footer h5{color:var(--gold-300);font-family:var(--font-body);font-size:.78rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:18px;}
.site-footer ul li{margin-bottom:11px;}
.site-footer a{color:var(--cream-100);opacity:.78;font-size:.9rem;}
.site-footer a:hover{color:var(--gold-300);opacity:1;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:22px 0;font-size:.8rem;color:var(--cream-100);opacity:.6;flex-wrap:wrap;gap:10px;}
.social-row{display:flex;gap:10px;margin-top:16px;}
.social-row a{
  width:36px;height:36px;border-radius:50%;border:1px solid rgba(201,162,39,.35);
  display:flex;align-items:center;justify-content:center;opacity:1;
}
.social-row a:hover{background:var(--gold-500);color:var(--navy-950);border-color:var(--gold-500);}

/* =========================================================
   Floating WhatsApp button
   ========================================================= */
.whatsapp-float{
  position:fixed;
  left:22px;bottom:22px;
  z-index:200;
  width:58px;height:58px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{transform:translateY(-4px) scale(1.05);box-shadow:0 12px 30px rgba(0,0,0,.35);}
@media (max-width:640px){
  .whatsapp-float{left:16px;bottom:16px;width:52px;height:52px;}
  .whatsapp-float svg{width:24px;height:24px;}
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{max-width:420px;margin:0 auto;}
  .split{grid-template-columns:1fr;gap:36px;}
  .grid-3,.grid-4{grid-template-columns:repeat(2,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:640px){
  .grid-3,.grid-4,.grid-2{grid-template-columns:1fr;}
  .field-row{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  section{padding:60px 0;}
  .hero{padding:70px 0 80px;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .gallery-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:768px){
  .reveal,.reveal-stagger > *{opacity:1 !important;transform:none !important;transition:none !important;}
}
@media (max-width:980px){
  .split{grid-template-columns:1fr !important;gap:32px !important;}
}
.call-float{
  position:fixed;
  left:22px;bottom:92px;
  z-index:200;
  width:58px;height:58px;
  border-radius:50%;
  background:var(--navy-900);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.28);
  transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.call-float:hover{transform:translateY(-4px) scale(1.05);box-shadow:0 12px 30px rgba(0,0,0,.35);background:var(--gold-600);}
@media (max-width:640px){
  .call-float{left:16px;bottom:78px;width:52px;height:52px;}
  .call-float svg{width:22px;height:22px;}
}

/* =========================================================
   CLIENT LOGOS
========================================================= */

.client-logos-section {
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
}

.client-logos-section .section-head {
    margin-bottom: 28px;
}

.client-logos-section .section-head p {
    font-size: 14px;
}


/* Logo Slider */

.client-logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}


/* Fade edges */

.client-logo-slider::before,
.client-logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.client-logo-slider::before {
    left: 0;
    background: linear-gradient(
        to right,
        #ffffff,
        rgba(255,255,255,0)
    );
}

.client-logo-slider::after {
    right: 0;
    background: linear-gradient(
        to left,
        #ffffff,
        rgba(255,255,255,0)
    );
}


/* Moving Track */

.client-logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clientLogoScroll 28s linear infinite;
}


/* Individual Logo */

.client-logo {
    width: 180px;
    height: 90px;
    margin: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 10px;

    padding: 15px;

    flex-shrink: 0;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.client-logo:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);
}


/* Logo Image */

.client-logo img {
    max-width: 100%;
    max-height: 60px;

    width: auto;
    height: auto;

    object-fit: contain;

    display: block;

    /*filter: grayscale(100%);
    opacity: .75;*/

    transition:
        filter .25s ease,
        opacity .25s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}


/* Automatic Scrolling */

@keyframes clientLogoScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* Pause when mouse is over logos */

.client-logo-slider:hover .client-logo-track {
    animation-play-state: paused;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .client-logos-section {
        padding: 35px 0;
    }

    .client-logo-track {
        animation-duration: 24s;
    }

    .client-logo {
        width: 145px;
        height: 75px;
        margin: 0 10px;
        padding: 12px;
    }

    .client-logo img {
        max-height: 48px;
    }

    .client-logo-slider::before,
    .client-logo-slider::after {
        width: 45px;
    }

}
