/* ==========================================================================
   Divine Taxi Services — stylesheet
   ========================================================================== */

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

:root{
  --navy:#0B1F3A;
  --navy-2:#12294D;
  --navy-3:#1B3A66;
  --gold:#C8952C;
  --gold-light:#E4C588;
  --gold-dark:#a97a1f;
  --cream:#FAF9F7;
  --paper:#F3F1EC;
  --ink:#181B22;
  --muted:#5C6270;
  --muted-light:#8A90A0;
  --line:#E4E1D8;
  --white:#ffffff;
  --radius:14px;
  --radius-sm:8px;
  --shadow-soft: 0 10px 30px rgba(11,31,58,0.10);
  --shadow-strong: 0 22px 50px rgba(11,31,58,0.28);
  --maxw:1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color:var(--ink);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }

h1,h2,h3,h4{
  font-family:'Fraunces', Georgia, serif;
  color:var(--navy);
  margin:0 0 14px;
  line-height:1.15;
  font-weight:600;
}
h1{ font-size:clamp(34px,5.4vw,58px); }
h2{ font-size:clamp(26px,3.6vw,38px); }
h3{ font-size:20px; }
p{ margin:0 0 14px; color:var(--muted); }
.lede{ font-size:18px; color:var(--muted); max-width:640px; }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  letter-spacing:1.6px;
  text-transform:uppercase;
  color:var(--gold-dark);
  font-weight:700;
  margin-bottom:12px;
}
.eyebrow::before{
  content:"";
  width:26px; height:2px;
  background:var(--gold);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:50px;
  font-weight:700;
  font-size:14.5px;
  letter-spacing:0.2px;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn svg{ width:17px; height:17px; flex-shrink:0; }
.btn-gold{ background:var(--gold); color:var(--navy); }
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px); box-shadow:0 10px 22px rgba(200,149,44,0.35); }
.btn-outline-light{ border-color:rgba(255,255,255,0.55); color:#fff; background:transparent; }
.btn-outline-light:hover{ border-color:#fff; background:rgba(255,255,255,0.08); transform:translateY(-2px); }
.btn-navy{ background:var(--navy); color:#fff; }
.btn-navy:hover{ background:var(--navy-3); transform:translateY(-2px); box-shadow:var(--shadow-soft); }
.btn-outline-navy{ border-color:var(--navy); color:var(--navy); background:transparent; }
.btn-outline-navy:hover{ background:var(--navy); color:#fff; transform:translateY(-2px); }
.btn-block{ width:100%; }
.btn-lg{ padding:16px 30px; font-size:15.5px; }

/* ---------- Top bar ---------- */
.topbar{
  background:var(--navy);
  color:#cfd8e8;
  font-size:12.5px;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px; padding-bottom:8px;
  gap:14px;
}
.topbar a{ color:#fff; font-weight:600; }
.topbar .tb-item{ display:flex; align-items:center; gap:6px; }
.topbar svg{ width:13px; height:13px; opacity:0.85; }
.topbar .tb-mid{ display:none; }
@media(min-width:720px){ .topbar .tb-mid{ display:flex; } }

/* ---------- Header / Nav ---------- */
header.site-header{
  position:sticky; top:0; z-index:1000;
  background:transparent;
  transition:background .3s ease, box-shadow .3s ease, padding .3s ease;
}
header.site-header.is-solid{
  background:rgba(255,255,255,0.97);
  box-shadow:0 2px 18px rgba(11,31,58,0.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:20px;
}
.brand img{ height:44px; width:auto; }
.brand{ display:flex; align-items:center; }
nav.main-nav{ display:none; align-items:center; gap:30px; }
nav.main-nav a{
  font-size:14.5px; font-weight:600; color:var(--navy);
  position:relative; padding:6px 0;
}
.transparent-mode nav.main-nav a{ color:#fff; }
nav.main-nav a.active::after,
nav.main-nav a:hover::after{
  content:""; position:absolute; left:0; right:0; bottom:-3px; height:2px; background:var(--gold);
}
@media(min-width:940px){ nav.main-nav{ display:flex; } }

.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-cta .btn{ padding:11px 20px; font-size:13.5px; }
.hide-mobile{ display:none; }
@media(min-width:940px){ .hide-mobile{ display:inline-flex; } }

.burger{
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:10px; border:1.5px solid currentColor;
  background:transparent; cursor:pointer; color:var(--navy);
}
.transparent-mode .burger{ color:#fff; }
header.site-header.is-solid .burger{ color:var(--navy); }
.burger svg{ width:20px; height:20px; }
@media(min-width:940px){ .burger{ display:none; } }

.mobile-menu{
  display:none;
  position:fixed; inset:0; z-index:1100;
  background:var(--navy);
  padding:24px;
  flex-direction:column;
}
.mobile-menu.open{ display:flex; }
.mobile-menu .mm-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:36px; }
.mobile-menu .mm-close{ width:42px; height:42px; border-radius:10px; border:1.5px solid rgba(255,255,255,0.5); color:#fff; background:transparent; display:flex; align-items:center; justify-content:center; cursor:pointer; }
.mobile-menu .mm-close svg{ width:20px; height:20px; }
.mobile-menu a{ color:#fff; font-family:'Fraunces',serif; font-size:26px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,0.12); }
.mobile-menu .mm-actions{ margin-top:28px; display:flex; flex-direction:column; gap:12px; }

/* ---------- Hero (home) ---------- */
.hero{
  position:relative;
  min-height:92vh;
  display:flex; align-items:center;
  color:#fff;
  margin-top:-86px; /* pull up under sticky header for full-bleed */
  padding-top:86px;
  overflow:hidden;
}
.hero .hero-bg{
  position:absolute; inset:0;
  background-image:url('../img/hero.jpg');
  background-size:cover;
  background-position:center 40%;
}
@media(max-width:760px){
  .hero .hero-bg{
    background-image:url('../img/hero-crop.jpg');
    background-position:center 30%;
  }
}
.hero .hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(6,14,28,0) 46%, rgba(6,14,28,0.55) 74%, rgba(6,14,28,0.86) 100%);
}
.hero-content{
  position:relative; z-index:2;
  padding:0 0 60px;
  width:100%;
  min-height:92vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.hero-content .sr-copy{
  position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0);
}
@media(max-width:760px){
  .hero-content .sr-copy{
    position:relative; width:auto; height:auto; overflow:visible; clip:auto;
  }
  .hero-content h1.sr-copy{
    color:var(--gold); font-size:clamp(30px,8vw,42px); margin-bottom:10px; line-height:1.15;
  }
  .hero-content p.sr-copy{
    color:#fff; font-size:15px; margin-bottom:28px; max-width:320px;
  }
}
.hero .hero-actions{
  display:flex; flex-wrap:wrap; gap:14px;
  opacity:0;
  animation:riseIn .8s ease forwards .3s;
  padding-top:130px;
}
@media(max-width:760px){
  .hero .hero-actions{ padding-top:0; }
}
@keyframes riseIn{
  from{ opacity:0; transform:translateY(18px); }
  to{ opacity:1; transform:translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .hero .hero-actions{ animation:none; opacity:1; }
}

/* Booking card overlapping hero bottom */
.booking-card{
  position:relative; z-index:3;
  margin-top:-150px;
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow-strong);
  padding:28px;
}
.booking-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  padding:28px;
}
.bc-head{ display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.bc-head svg{ width:22px; height:22px; color:var(--gold-dark); flex-shrink:0; }
.bc-head h3{ margin:0; font-size:19px; }
.bc-head p{ margin:2px 0 0; font-size:13px; }

.form-grid{
  display:grid; grid-template-columns:1fr; gap:14px;
}
@media(min-width:760px){
  .form-grid{ grid-template-columns:repeat(4,1fr); }
  .form-grid .span-2{ grid-column:span 2; }
  .form-grid .span-4{ grid-column:span 4; }
}
.field label{
  display:block; font-size:12px; font-weight:700; text-transform:uppercase;
  letter-spacing:0.5px; color:var(--navy); margin-bottom:6px;
}
.field input, .field select, .field textarea{
  width:100%; padding:12px 14px; border:1.5px solid var(--line); border-radius:var(--radius-sm);
  font-family:inherit; font-size:14.5px; color:var(--ink); background:var(--cream);
  transition:border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--gold); background:#fff;
}
.field textarea{ resize:vertical; min-height:80px; }
.form-foot{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; margin-top:18px; }
.form-note{ font-size:12.5px; color:var(--muted-light); max-width:340px; margin:0; }
.form-msg{ font-size:13.5px; padding:10px 14px; border-radius:var(--radius-sm); display:none; margin-top:14px; }
.form-msg.show{ display:block; }
.form-msg.error{ background:#FBEAEA; color:#8a2222; display:block; }

/* ---------- Sections generic ---------- */
section{ padding:88px 0; }
.section-alt{ background:var(--paper); }
.section-navy{ background:var(--navy); color:#fff; }
.section-navy h2, .section-navy h3{ color:#fff; }
.section-navy p{ color:#c7cede; }
.section-head{ max-width:680px; margin:0 auto 48px; text-align:center; }
.section-head.left{ margin:0 0 44px; text-align:left; }

/* thin gold "road swoosh" divider echoing the logo mark */
.swoosh{
  width:64px; height:14px; margin:0 auto 20px;
  display:block;
}
.section-head.left .swoosh{ margin:0 0 18px; }

/* ---------- Trust strip ---------- */
.trust-strip{ padding:40px 0; background:var(--cream); border-bottom:1px solid var(--line); border-top:1px solid var(--line); }
.trust-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
@media(min-width:760px){ .trust-grid{ grid-template-columns:repeat(4,1fr); } }
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-item .ic{
  width:44px; height:44px; border-radius:12px; background:var(--navy); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.trust-item .ic svg{ width:22px; height:22px; }
.trust-item strong{ display:block; font-size:14.5px; color:var(--navy); }
.trust-item span{ font-size:12.5px; color:var(--muted); }

/* ---------- About snippet / two-col ---------- */
.two-col{ display:grid; grid-template-columns:1fr; gap:44px; align-items:center; }
@media(min-width:860px){ .two-col{ grid-template-columns:1fr 1fr; } }
.about-visual{
  position:relative; border-radius:var(--radius); overflow:hidden;
  aspect-ratio:4/3; background:var(--navy);
}
.about-visual img{ width:100%; height:100%; object-fit:cover; opacity:0.9; }
.about-visual .badge{
  position:absolute; bottom:18px; left:18px;
  background:rgba(255,255,255,0.95); border-radius:var(--radius-sm);
  padding:12px 16px; box-shadow:var(--shadow-soft);
}
.about-visual .badge strong{ display:block; font-family:'Fraunces',serif; font-size:22px; color:var(--navy); }
.about-visual .badge span{ font-size:11.5px; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; }

/* ---------- Service cards ---------- */
.services-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
@media(min-width:720px){ .services-grid{ grid-template-columns:1fr 1fr; } }
.service-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:30px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-soft); border-color:transparent; }
.service-card .ic{
  width:56px; height:56px; border-radius:14px; background:var(--paper); color:var(--gold-dark);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.service-card .ic svg{ width:28px; height:28px; }
.service-card.dark{ background:var(--navy); border-color:var(--navy); }
.service-card.dark h3{ color:#fff; }
.service-card.dark p, .service-card.dark li{ color:#c7cede; }
.service-card.dark .ic{ background:rgba(255,255,255,0.08); color:var(--gold-light); }
.service-card ul{ margin:14px 0 18px; }
.service-card li{ display:flex; gap:8px; font-size:14px; color:var(--muted); margin-bottom:8px; }
.service-card.dark li{ color:#c7cede; }
.service-card li svg{ width:16px; height:16px; color:var(--gold-dark); flex-shrink:0; margin-top:2px; }
.service-card.dark li svg{ color:var(--gold-light); }
.service-card .learn{ font-weight:700; font-size:13.5px; color:var(--navy); display:inline-flex; align-items:center; gap:6px; }
.service-card.dark .learn{ color:var(--gold-light); }
.service-card .learn svg{ width:14px; height:14px; transition:transform .15s ease; }
.service-card:hover .learn svg{ transform:translateX(4px); }

/* ---------- Why choose us ---------- */
.why-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
@media(min-width:760px){ .why-grid{ grid-template-columns:1fr 1fr; } }
.why-item{ display:flex; gap:14px; align-items:flex-start; }
.why-item .ic{ width:38px; height:38px; border-radius:10px; background:rgba(200,149,44,0.16); color:var(--gold-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.why-item .ic svg{ width:19px; height:19px; }
.why-item strong{ display:block; color:#fff; font-size:15.5px; margin-bottom:2px; }
.why-item p{ margin:0; font-size:13.5px; }

/* ---------- Areas list ---------- */
.pill-grid{ display:flex; flex-wrap:wrap; gap:12px; }
.pill{
  background:#fff; border:1.5px solid var(--line); border-radius:50px;
  padding:10px 18px; font-size:14px; font-weight:600; color:var(--navy);
  display:inline-flex; align-items:center; gap:8px;
}
.pill svg{ width:15px; height:15px; color:var(--gold-dark); }

/* ---------- Testimonials ---------- */
.testi-grid{ display:grid; grid-template-columns:1fr; gap:22px; }
@media(min-width:820px){ .testi-grid{ grid-template-columns:repeat(3,1fr); } }
.testi-card{ background:var(--paper); border-radius:var(--radius); padding:26px; }
.testi-card .stars{ display:flex; gap:3px; color:var(--gold); margin-bottom:14px; }
.testi-card .stars svg{ width:16px; height:16px; }
.testi-card p{ font-style:italic; color:var(--ink); }
.testi-card .who{ font-weight:700; font-size:13.5px; color:var(--navy); margin-top:12px; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius:var(--radius);
  padding:52px 36px;
  text-align:center;
}
.cta-banner h2{ color:var(--navy); }
.cta-banner p{ color:#5b4419; }
.cta-banner .cta-actions{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-top:8px; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner{
  position:relative; color:#fff; padding:150px 0 70px;
  margin-top:-86px;
}
.page-banner .pb-bg{ position:absolute; inset:0; background-image:url('../img/hero-crop.jpg'); background-size:cover; background-position:center 30%; }
.page-banner .pb-scrim{ position:absolute; inset:0; background:linear-gradient(100deg, rgba(6,14,28,0.93) 0%, rgba(6,14,28,0.86) 45%, rgba(6,14,28,0.62) 100%); }
.page-banner .pb-content{ position:relative; z-index:2; }
.page-banner .eyebrow{ color:var(--gold-light); }
.page-banner h1{ color:#fff; font-size:clamp(30px,5vw,46px); }
.breadcrumb{ font-size:13px; color:#c7cede; margin-top:6px; }
.breadcrumb a{ color:var(--gold-light); font-weight:600; }

/* ---------- Service detail blocks ---------- */
.svc-block{ display:grid; grid-template-columns:1fr; gap:36px; align-items:center; padding:56px 0; border-bottom:1px solid var(--line); }
.svc-block:last-child{ border-bottom:none; }
@media(min-width:860px){ .svc-block{ grid-template-columns:0.85fr 1.15fr; } }
.svc-block.reverse .svc-visual{ order:2; }
@media(min-width:860px){ .svc-block.reverse .svc-text{ order:1; } .svc-block.reverse .svc-visual{ order:2; } }
.svc-visual{
  background:linear-gradient(150deg, var(--navy), var(--navy-3));
  border-radius:var(--radius);
  min-height:230px;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light);
}
.svc-visual svg{ width:88px; height:88px; }
.svc-text .num{ font-family:'Fraunces',serif; font-size:15px; color:var(--gold-dark); font-weight:700; margin-bottom:8px; display:block; }
.svc-text ul{ margin:16px 0 22px; }
.svc-text li{ display:flex; gap:10px; margin-bottom:10px; font-size:14.5px; color:var(--muted); }
.svc-text li svg{ width:17px; height:17px; color:var(--gold-dark); flex-shrink:0; margin-top:2px; }

/* ---------- FAQ accordion ---------- */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding:20px 0; display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-family:'Fraunces',serif; font-size:17px; color:var(--navy); font-weight:600;
}
.faq-q svg{ width:18px; height:18px; flex-shrink:0; transition:transform .2s ease; color:var(--gold-dark); }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-a p{ padding-bottom:20px; margin:0; }
.faq-item.open .faq-a{ max-height:260px; }

/* ---------- Contact page ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr; gap:40px; }
@media(min-width:900px){ .contact-grid{ grid-template-columns:0.85fr 1.15fr; } }
.contact-info-card{ background:var(--navy); color:#fff; border-radius:var(--radius); padding:34px; }
.contact-info-card h3{ color:#fff; }
.info-row{ display:flex; gap:14px; margin-bottom:22px; align-items:flex-start; }
.info-row .ic{ width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,0.1); color:var(--gold-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-row .ic svg{ width:19px; height:19px; }
.info-row strong{ display:block; font-size:14.5px; margin-bottom:2px; }
.info-row span, .info-row a{ font-size:13.5px; color:#c7cede; }
.map-wrap{ border-radius:var(--radius); overflow:hidden; margin-top:56px; border:1px solid var(--line); }
.map-wrap iframe{ width:100%; height:360px; border:0; display:block; }

/* ---------- Footer ---------- */
footer.site-footer{ background:var(--navy); color:#c7cede; padding:64px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:36px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,0.1); }
@media(min-width:760px){ .footer-grid{ grid-template-columns:1.3fr 0.8fr 1fr; } }
.footer-brand img{ height:40px; margin-bottom:14px; background:#fff; padding:8px 12px; border-radius:8px; }
.footer-brand p{ font-size:13.5px; max-width:280px; }
.footer-col h4{ color:#fff; font-family:'Fraunces',serif; font-size:15px; margin-bottom:16px; }
.footer-col ul li{ margin-bottom:10px; }
.footer-col a{ font-size:13.5px; color:#c7cede; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{ display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between; padding:20px 0; font-size:12.5px; color:#8a92a6; }

/* ---------- WhatsApp float button ---------- */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:900;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(0,0,0,0.28);
  transition:transform .18s ease;
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; }

/* ---------- Utility ---------- */
.mt-0{ margin-top:0; }
.center{ text-align:center; }
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }
