/* =========================================================
   JS TRAVELS · SLK AGENCY — Stylesheet
   Palette:  Navy #0B1B3A / Deep Navy #071229 / Gold #C9A227
             Gold Light #E6C766 / Ivory #F7F4EC / Charcoal #1B1F27
   Type:     Display — 'Playfair Display'  |  Body — 'Inter'
   ========================================================= */

:root{
  --navy: #0B1B3A;
  --navy-deep: #071229;
  --navy-soft: #16294f;
  --gold: #C9A227;
  --gold-light: #E6C766;
  --ivory: #F7F4EC;
  --white: #FFFFFF;
  --charcoal: #1B1F27;
  --slate: #5B6472;
  --slate-light: #99A1AF;
  --line: #E4E0D4;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 4px;
  --shadow-soft: 0 20px 50px -20px rgba(7, 18, 41, 0.35);
  --shadow-card: 0 12px 32px -18px rgba(7, 18, 41, 0.28);
  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{ font-family: var(--serif); margin:0 0 .5em; font-weight: 700; color: var(--navy); line-height: 1.15; }
p{ margin:0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section{ padding: 96px 0; }
.section-alt{ background: var(--ivory); }
.section-navy{ background: var(--navy); color: rgba(255,255,255,.86); }
.section-navy h2, .section-navy h3{ color: var(--white); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior:auto !important; }
}

/* ---------- Eyebrow / Labels ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before{ content:""; width:26px; height:1px; background: var(--gold); display:inline-block; }
.section-navy .eyebrow{ color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 32px; font-family: var(--sans); font-weight:600; font-size:14px;
  letter-spacing:.04em; border-radius: var(--radius); border:1px solid transparent;
  cursor:pointer; transition: all .25s ease; white-space:nowrap;
}
.btn-gold{ background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover{ background: var(--gold-light); transform: translateY(-2px); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-light); }
.btn-navy{ background: var(--navy); color: var(--white); }
.btn-navy:hover{ background: var(--navy-soft); transform: translateY(-2px); }
.btn-block{ width:100%; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky; top:0; z-index: 999;
  background: rgba(7,18,41,.96);
  border-bottom: 1px solid rgba(201,162,39,.18);
  backdrop-filter: blur(6px);
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding: 10px 28px; max-width: var(--container); margin:0 auto; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:56px; width:auto; }
.brand-text{ font-family: var(--serif); color: var(--white); line-height:1.1; }
.brand-text strong{ display:block; font-size:19px; letter-spacing:.03em; }
.brand-text span{ display:block; font-family: var(--sans); font-size:10px; letter-spacing:.24em; text-transform:uppercase; color: var(--gold-light); margin-top:3px; }

.main-nav ul{ display:flex; gap:2px; align-items:center; }
.main-nav a{
  display:inline-block; padding: 12px 16px; font-size: 13.5px; font-weight:500;
  letter-spacing:.02em; color: rgba(255,255,255,.78); border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.main-nav a:hover, .main-nav a.active{ color: var(--white); border-color: var(--gold); }
.nav-cta{ margin-left: 8px; }
.nav-toggle{ display:none; }

@media (max-width: 900px){
  .main-nav{ position:fixed; inset: 72px 0 0 0; background: var(--navy-deep); transform: translateY(-110%); transition: transform .3s ease; overflow-y:auto; }
  .main-nav.open{ transform: translateY(0); }
  .main-nav ul{ flex-direction:column; padding: 12px 28px 32px; align-items:stretch; }
  .main-nav a{ padding: 16px 4px; border-bottom:1px solid rgba(255,255,255,.08); }
  .nav-cta{ margin: 18px 4px 0; }
  .nav-toggle{
    display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px;
  }
  .nav-toggle span{ width:24px; height:2px; background: var(--gold); display:block; }
  .brand img{ height:44px; }
  .brand-text strong{ font-size:16px; }
}

/* ---------- Hero (Home) ---------- */
.hero{
  position: relative; min-height: 86vh; display:flex; align-items:center;
  background: linear-gradient(120deg, rgba(7,18,41,.94), rgba(11,27,58,.82)), url('https://loremflickr.com/1800/1100/luxury,car,night?lock=12') center/cover no-repeat;
  color: var(--white); overflow:hidden;
}
.hero::after{
  content:""; position:absolute; right:-10%; bottom:-20%; width:60%; height:140%;
  background: radial-gradient(circle, rgba(201,162,39,.16), transparent 65%);
  pointer-events:none;
}
.hero-inner{ max-width: 640px; padding: 120px 28px 100px; position:relative; z-index:2; }
.hero h1{ color: var(--white); font-size: clamp(34px, 5vw, 56px); }
.hero .lede{ font-size: 18px; color: rgba(255,255,255,.82); max-width: 520px; }
.hero-actions{ display:flex; gap:16px; margin-top: 34px; flex-wrap:wrap; }

/* Road / blueprint signature divider */
.route-divider{ width:100%; height:64px; display:block; }
.route-divider path{ vector-effect:non-scaling-stroke; }

/* ---------- Split intro (Home: Travels & MEPC columns) ---------- */
.split-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px){ .split-grid{ grid-template-columns: 1fr; } }

.pillar-card{
  position:relative; border-radius: var(--radius); overflow:hidden;
  background: var(--white); box-shadow: var(--shadow-card);
  border: 1px solid var(--line); display:flex; flex-direction:column;
}
.pillar-media{ position:relative; height: 260px; overflow:hidden; }
.pillar-media img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.pillar-card:hover .pillar-media img{ transform: scale(1.06); }
.pillar-tag{
  position:absolute; top:18px; left:18px; background: var(--gold); color: var(--navy-deep);
  font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; padding:7px 14px; border-radius:2px;
}
.pillar-body{ padding: 32px 30px 34px; flex:1; display:flex; flex-direction:column; }
.pillar-body h3{ font-size: 26px; }
.pillar-body .loc{ font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--slate); margin-bottom:14px; font-weight:600; }
.pillar-body p{ color: var(--slate); flex:1; }
.pillar-list{ margin: 6px 0 22px; }
.pillar-list li{ padding: 7px 0 7px 22px; position:relative; font-size:14.5px; color: var(--charcoal); border-top:1px solid var(--line); }
.pillar-list li:first-child{ border-top:none; }
.pillar-list li::before{ content:"—"; position:absolute; left:0; color: var(--gold); font-weight:700; }

/* ---------- Section headers ---------- */
.section-head{ max-width: 640px; margin: 0 0 52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ color: var(--slate); font-size:17px; }
.section-navy .section-head p{ color: rgba(255,255,255,.72); }

/* ---------- Feature / value grid ---------- */
.feature-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 980px){ .feature-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .feature-grid{ grid-template-columns: 1fr; } }
.feature{ padding: 30px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.feature .num{ font-family: var(--serif); font-size: 34px; color: var(--gold); margin-bottom: 10px; }
.feature h4{ font-size: 17px; margin-bottom:8px; }
.feature p{ color: var(--slate); font-size: 14.5px; margin:0; }

/* ---------- Fleet / service cards ---------- */
.card-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px){ .card-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .card-grid{ grid-template-columns: 1fr; } }

.item-card{ background: var(--white); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-card); }
.item-media{ height: 200px; overflow:hidden; }
.item-media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.item-card:hover .item-media img{ transform: scale(1.07); }
.item-body{ padding: 22px 22px 24px; }
.item-body .cat{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); font-weight:700; }
.item-body h4{ font-size:19px; margin: 6px 0 8px; }
.item-body p{ color: var(--slate); font-size: 14px; margin-bottom: 14px; }
.item-foot{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--line); padding-top:14px; }
.item-foot .price{ font-family: var(--serif); color: var(--navy); font-weight:700; font-size:17px; }
.item-foot .price span{ font-family: var(--sans); font-size:12px; color:var(--slate); font-weight:400; }

/* ---------- Process steps (MEPC) ---------- */
.process{ display:grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: step; }
@media (max-width: 900px){ .process{ grid-template-columns: 1fr; } }
.process-step{ position:relative; padding: 0 26px 0 0; border-right:1px solid var(--line); }
.process-step:last-child{ border-right:none; }
@media (max-width: 900px){ .process-step{ border-right:none; border-bottom:1px solid var(--line); padding: 0 0 28px 0; margin-bottom:28px; } }
.process-step .step-no{ font-family: var(--serif); font-size:15px; color: var(--gold); font-weight:700; letter-spacing:.08em; margin-bottom:10px; }
.process-step h4{ font-size:17px; margin-bottom:8px; }
.process-step p{ color: var(--slate); font-size:14px; }

/* ---------- Locations strip ---------- */
.locations{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
@media (max-width: 800px){ .locations{ grid-template-columns: 1fr; } }
.location-card{ padding: 28px; border:1px solid rgba(255,255,255,.14); border-radius: var(--radius); }
.location-card h4{ color: var(--gold-light); font-size:19px; margin-bottom:10px; }
.location-card p{ color: rgba(255,255,255,.72); font-size:14px; margin:0; }

/* ---------- Testimonial ---------- */
.quote-block{ max-width: 760px; margin: 0 auto; text-align:center; }
.quote-block blockquote{ font-family: var(--serif); font-size: clamp(20px,2.6vw,28px); color: var(--navy); font-style:italic; margin: 0 0 20px; }
.quote-block cite{ font-style:normal; font-size:13px; letter-spacing:.1em; text-transform:uppercase; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band{ background: linear-gradient(120deg, var(--navy-deep), var(--navy)); color: var(--white); text-align:center; padding: 86px 0; }
.cta-band h2{ color: var(--white); }
.cta-band p{ color: rgba(255,255,255,.75); max-width:560px; margin: 0 auto 30px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  background: linear-gradient(120deg, rgba(7,18,41,.92), rgba(11,27,58,.86)), var(--bg-img, none) center/cover;
  color:var(--white); padding: 92px 0 70px; position:relative;
}
.page-hero .eyebrow{ color: var(--gold-light); }
.page-hero h1{ color: var(--white); font-size: clamp(30px,4.4vw,46px); max-width:680px; }
.page-hero p.lede{ color: rgba(255,255,255,.78); max-width:560px; font-size:16.5px; }
.breadcrumb{ font-size:12.5px; letter-spacing:.08em; text-transform:uppercase; color: rgba(255,255,255,.55); margin-bottom:18px; }
.breadcrumb a:hover{ color: var(--gold-light); }

/* ---------- Gallery ---------- */
.gallery-filter{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 40px; }
.gallery-filter button{
  font-family: var(--sans); font-size:13px; font-weight:600; letter-spacing:.03em;
  padding: 10px 20px; border-radius: 30px; border:1px solid var(--line); background: var(--white); cursor:pointer;
  color: var(--slate); transition: all .2s ease;
}
.gallery-filter button.active, .gallery-filter button:hover{ background: var(--navy); border-color: var(--navy); color: var(--white); }
.gallery-grid{ column-count: 3; column-gap: 22px; }
@media (max-width: 900px){ .gallery-grid{ column-count:2; } }
@media (max-width: 560px){ .gallery-grid{ column-count:1; } }
.gallery-item{ break-inside: avoid; margin-bottom: 22px; border-radius: var(--radius); overflow:hidden; position:relative; box-shadow: var(--shadow-card); }
.gallery-item img{ width:100%; display:block; transition: transform .5s ease; }
.gallery-item:hover img{ transform: scale(1.05); }
.gallery-cap{ position:absolute; left:0; right:0; bottom:0; padding: 16px; background: linear-gradient(0deg, rgba(7,18,41,.86), transparent); color:var(--white); font-size:13px; letter-spacing:.03em; }

/* ---------- Blog ---------- */
.blog-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:30px; }
@media (max-width: 980px){ .blog-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .blog-grid{ grid-template-columns: 1fr; } }
.post-card{ background:var(--white); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; }
.post-media{ height:190px; overflow:hidden; }
.post-media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.post-card:hover .post-media img{ transform: scale(1.06); }
.post-body{ padding:22px 22px 26px; }
.post-meta{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--gold); font-weight:700; margin-bottom:10px; }
.post-body h3{ font-size:19px; margin-bottom:10px; }
.post-body p{ color:var(--slate); font-size:14px; margin-bottom:14px; }
.post-link{ font-size:13px; font-weight:700; color: var(--navy); letter-spacing:.03em; border-bottom:1px solid var(--gold); padding-bottom:2px; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items:flex-start; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.info-card{ display:flex; gap:16px; padding: 20px 0; border-top:1px solid var(--line); }
.info-card:first-child{ border-top:none; }
.info-card .ic{ width:42px; height:42px; border-radius:50%; background: var(--navy); color: var(--gold-light); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.info-card h4{ font-size:15.5px; margin-bottom:4px; }
.info-card p{ color: var(--slate); font-size:14px; margin:0; }

.form-card{ background: var(--ivory); border:1px solid var(--line); border-radius: var(--radius); padding: 38px; }
.field{ margin-bottom: 20px; }
.field label{ display:block; font-size:12.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color: var(--navy); margin-bottom:8px; }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 14px; border:1px solid var(--line); border-radius: 3px; font-family: var(--sans);
  font-size: 14.5px; background: var(--white); color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: 2px solid var(--gold); outline-offset:1px; border-color: var(--gold); }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:520px){ .field-row{ grid-template-columns:1fr; } }
.form-note{ font-size:13px; color: var(--slate); margin-top:14px; }
.form-success{ background:#eef7ee; border:1px solid #bfe3bf; color:#2b5e2b; padding:14px 18px; border-radius:4px; font-size:14px; margin-bottom:20px; }

.map-embed{ border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; margin-top: 28px; }
.map-embed iframe{ width:100%; height:280px; border:0; display:block; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-deep); color: rgba(255,255,255,.68); padding: 70px 0 26px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 860px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-grid h5{ color: var(--white); font-family: var(--sans); font-size:13px; letter-spacing:.12em; text-transform:uppercase; margin-bottom:18px; font-weight:700; }
.footer-grid li{ margin-bottom: 11px; font-size: 14px; }
.footer-grid a:hover{ color: var(--gold-light); }
.footer-brand img{ height:50px; margin-bottom:16px; }
.footer-brand p{ font-size:13.5px; max-width: 280px; }
.social-row{ display:flex; gap:10px; margin-top:18px; }
.social-row a{ width:36px; height:36px; border:1px solid rgba(255,255,255,.2); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; transition: all .2s ease; }
.social-row a:hover{ background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:12.5px; }
.footer-bottom a:hover{ color: var(--gold-light); }

/* ---------- Utility ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.badge{ font-size:12px; font-weight:600; letter-spacing:.05em; border:1px solid var(--line); padding:6px 14px; border-radius:20px; color: var(--slate); }
:focus-visible{ outline: 2px solid var(--gold); outline-offset: 2px; }
