/* ============================================
   MISTERFARE — Homepage design pass (static)
   ============================================ */

:root{
  --navy:#1B2A5E;
  --navy-dark:#131F47;
  --orange:#F15A24;
  --orange-dark:#D64E1C;
  --navy-tint:#E7EAF4;
  --orange-tint:#FEEDE6;
  --white:#fff;
  --cream:#FAFAF8;
  --gray-100:#F1F1EF;
  --gray-300:#DCDCD8;
  --gray-500:#767680;
  --gray-700:#3E3E46;
  --text:#1D1D24;
  --radius:16px;
  --radius-pill:999px;
  --shadow:0 8px 24px rgba(27,42,94,.10);
  --shadow-lg:0 16px 40px rgba(27,42,94,.16);
  --max:1180px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,-apple-system,Segoe UI,sans-serif;
  background:var(--cream);
  color:var(--text);
  font-size:15px;
  line-height:1.6;
  overflow-x:hidden;
}
h1,h2,h3,.logo-name{font-family:'Fraunces',Georgia,serif}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font-family:inherit;cursor:pointer}
.wrap{max-width:var(--max);margin:0 auto;padding:0 20px}

/* ============ HEADER ============ */
.site-header{background:var(--navy);position:sticky;top:0;z-index:300}
.header-row{
  max-width:var(--max);margin:0 auto;padding:14px 20px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.logo{display:flex;align-items:center;gap:10px}
.logo-mark{
  width:38px;height:38px;background:var(--orange);border-radius:10px;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.logo-mark svg{width:22px;height:22px}
.logo-name{font-size:20px;font-weight:600;color:#fff;letter-spacing:-.3px}
.logo-name span{color:var(--orange)}

.header-right{display:flex;align-items:center;gap:8px}

.selector{position:relative}
.selector-btn{
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);
  color:#fff;font-size:12.5px;font-weight:500;padding:8px 12px;border-radius:var(--radius-pill);
  display:flex;align-items:center;gap:6px;white-space:nowrap;
}
.selector-btn:hover{background:rgba(255,255,255,.15)}
.selector-btn svg{width:12px;height:12px;opacity:.8}
.selector-menu{
  display:none;position:absolute;top:calc(100% + 8px);right:0;background:#fff;
  border-radius:12px;box-shadow:var(--shadow-lg);min-width:160px;padding:6px;z-index:50;
}
.selector.open .selector-menu{display:block}
.selector-menu button{
  display:flex;width:100%;align-items:center;justify-content:space-between;
  background:none;border:none;text-align:start;padding:9px 10px;border-radius:8px;
  font-size:13px;color:var(--gray-700);font-weight:500;
}
.selector-menu button:hover{background:var(--navy-tint);color:var(--navy)}
.selector-menu button[disabled]{color:var(--gray-300);cursor:not-allowed}
.selector-menu button[disabled]:hover{background:none}
.selector-menu .soon{font-size:10px;font-weight:700;text-transform:uppercase;color:var(--gray-300);letter-spacing:.4px}

.hamburger{
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);
  border-radius:10px;width:38px;height:38px;display:flex;align-items:center;justify-content:center;
}
.hamburger svg{width:18px;height:18px;stroke:#fff}

/* ============ SUB NAV STRIP ============ */
.subnav{background:var(--navy-dark)}
.subnav-scroll{
  max-width:var(--max);margin:0 auto;padding:0 20px;
  display:flex;gap:6px;overflow-x:auto;scrollbar-width:none;
}
.subnav-scroll::-webkit-scrollbar{display:none}
.subnav-link{
  flex-shrink:0;color:rgba(255,255,255,.75);font-size:13px;font-weight:500;
  padding:11px 14px;border-bottom:2px solid transparent;white-space:nowrap;
}
.subnav-link:hover,.subnav-link.on{color:#fff;border-bottom-color:var(--orange)}

/* mobile drawer */
.mobile-drawer{
  display:none;position:fixed;inset:0;background:rgba(19,31,71,.6);z-index:400;
}
.mobile-drawer.open{display:block}
.mobile-drawer-panel{
  position:absolute;top:0;right:0;bottom:0;width:78%;max-width:320px;background:#fff;
  padding:20px;overflow-y:auto;
}
.mobile-drawer-close{
  background:var(--navy-tint);border:none;border-radius:var(--radius-pill);
  width:34px;height:34px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.mobile-drawer a{
  display:block;padding:13px 4px;font-size:15px;font-weight:600;color:var(--navy);
  border-bottom:1px solid var(--gray-100);
}

/* ============ HERO ============ */
.hero{
  background:linear-gradient(180deg,var(--navy) 0%,var(--navy) 42%,#fff 100%);
  padding:76px 20px 90px;text-align:center;color:#fff;position:relative;overflow:hidden;
}
.hero::after{
  content:'';position:absolute;bottom:-30%;left:50%;transform:translateX(-50%);
  width:900px;height:300px;background:radial-gradient(ellipse at center,rgba(241,90,36,.12) 0%,transparent 70%);
  pointer-events:none;
}
.hero-inner{max-width:760px;margin:0 auto;position:relative}
.page-kicker{
  display:inline-block;background:rgba(255,255,255,.12);color:#fff;font-size:11.5px;font-weight:800;
  text-transform:uppercase;letter-spacing:1.2px;padding:6px 14px;border-radius:var(--radius-pill);margin-bottom:16px;
}
.hero h1{font-size:clamp(30px,5.5vw,50px);font-weight:600;letter-spacing:-1px;line-height:1.12;margin-bottom:16px;color:#fff}
.hero p{font-size:17px;color:rgba(255,255,255,.82);max-width:460px;margin:0 auto 30px}

/* ---- hero search widget ---- */
.hero-search{
  background:#fff;border-radius:20px;max-width:720px;margin:0 auto;
  box-shadow:0 24px 50px rgba(10,16,40,.28);overflow:hidden;text-align:start;
}
.search-tabs{
  display:flex;overflow-x:auto;gap:8px;background:#fff;padding:16px 16px 4px;scrollbar-width:none;
}
.search-tabs::-webkit-scrollbar{display:none}
.search-tab{
  flex:0 0 auto;display:inline-flex;align-items:center;gap:6px;
  background:var(--navy-tint);border:none;padding:9px 16px;border-radius:var(--radius-pill);
  font-size:12.5px;font-weight:700;color:var(--navy);white-space:nowrap;transition:.15s;
}
.search-tab svg{width:14px;height:14px;stroke:currentColor;flex-shrink:0}
.search-tab:hover{background:#DEE3F1}
.search-tab.on{background:var(--orange);color:#fff;box-shadow:0 6px 16px rgba(241,90,36,.35)}
.search-tab.on:hover{background:var(--orange)}
.search-form{padding:20px}
.search-fields{display:none;flex-wrap:wrap;gap:12px;margin-bottom:16px}
.search-fields.active{display:flex}
.field{flex:1 1 170px;display:flex;flex-direction:column;gap:5px;text-align:start}
.field.field-narrow{flex:1 1 130px}
.field label{font-size:10.5px;font-weight:800;color:var(--gray-500);text-transform:uppercase;letter-spacing:.5px}
.field input,.field select{
  border:1.5px solid var(--gray-100);background:var(--cream);border-radius:10px;
  padding:11px 12px;font-size:13.5px;font-family:inherit;color:var(--text);width:100%;
}
.field input:focus,.field select:focus{outline:none;border-color:var(--orange);background:#fff}
.search-submit{width:100%;justify-content:center}

@media(min-width:640px){
  .search-form{padding:22px 24px}
}
.btn{
  display:inline-flex;align-items:center;gap:8px;border:none;border-radius:var(--radius-pill);
  font-size:14.5px;font-weight:700;padding:14px 30px;transition:.15s;
}
.btn-orange{background:var(--orange);color:#fff;box-shadow:0 10px 26px rgba(241,90,36,.35)}
.btn-orange:hover{background:var(--orange-dark);transform:translateY(-1px)}
.btn-outline-w{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.4)}

/* ============ SECTION SHELL ============ */
.sec{padding:28px 20px 48px}
.sec-gray{background:var(--white)}
.sec-head{max-width:560px;margin:0 auto 30px;text-align:center}
.eyebrow{font-size:11.5px;font-weight:800;color:var(--orange);text-transform:uppercase;letter-spacing:1.4px;margin-bottom:8px}
.eyebrow::before{content:'';display:inline-block;width:16px;height:2px;background:var(--orange);margin-inline-end:7px;vertical-align:middle;border-radius:2px}
.sec-h{font-size:clamp(24px,3.6vw,32px);font-weight:600;color:var(--navy);letter-spacing:-.5px;line-height:1.25;margin-bottom:8px}
.sec-sub{color:var(--gray-500);font-size:14.5px;line-height:1.6}

@media(min-width:900px){
  .sec{padding:40px 20px 64px}
}

/* ============ SERVICES GRID ============ */
.services-grid{
  max-width:var(--max);margin:0 auto;display:grid;
  grid-template-columns:repeat(2,1fr);gap:20px;
}
.svc-card{
  background:#fff;border-radius:var(--radius);padding:36px 22px;display:flex;flex-direction:column;
  align-items:center;text-align:center;gap:16px;
  transition:.2s;box-shadow:0 2px 10px rgba(27,42,94,.06);
}
.svc-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.svc-icon{
  width:52px;height:52px;border-radius:14px;background:var(--navy-tint);
  display:flex;align-items:center;justify-content:center;
}
.svc-icon svg{width:26px;height:26px;stroke:var(--navy)}
.svc-card:nth-child(odd) .svc-icon{background:var(--orange-tint)}
.svc-card:nth-child(odd) .svc-icon svg{stroke:var(--orange-dark)}
.svc-name{font-size:15px;font-weight:700;color:var(--navy)}
.svc-desc{font-size:12.5px;color:var(--gray-500);line-height:1.55;max-width:220px}
.svc-card.full{
  grid-column:1 / -1;flex-direction:row;align-items:center;text-align:start;
  background:var(--navy);color:#fff;box-shadow:none;
}
.svc-card.full .svc-desc{max-width:none}
.svc-card.full .svc-icon{background:rgba(255,255,255,.14)}
.svc-card.full .svc-icon svg{stroke:#fff}
.svc-card.full .svc-name{color:#fff;font-size:16px}
.svc-card.full .svc-desc{color:rgba(255,255,255,.7)}

@media(min-width:640px){
  .services-grid{grid-template-columns:repeat(3,1fr)}
}
@media(min-width:900px){
  .services-grid{grid-template-columns:repeat(4,1fr);gap:22px}
}

/* ============ CAROUSELS ============ */
.carousel-wrap{max-width:var(--max);margin:0 auto}
.carousel{
  display:flex;gap:16px;overflow-x:auto;padding:4px 20px 14px;margin:0 -20px;
  scroll-snap-type:x mandatory;scrollbar-width:none;
}
.carousel::-webkit-scrollbar{display:none}
.carousel-card{
  flex:0 0 240px;scroll-snap-align:start;background:#fff;border-radius:var(--radius);
  overflow:hidden;box-shadow:0 2px 10px rgba(27,42,94,.07);transition:.2s;
}
.carousel-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.carousel-img{
  aspect-ratio:4/3;width:100%;position:relative;overflow:hidden;background:var(--gray-100);
}
.carousel-img img{width:100%;height:100%;object-fit:cover;display:block}
.carousel-img .ph-badge{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  background:rgba(19,31,71,.82);color:#fff;font-size:10.5px;font-weight:600;
  padding:5px 10px;border-radius:var(--radius-pill);white-space:nowrap;pointer-events:none;
}
.carousel-body{padding:14px 16px 16px}
.carousel-title{font-size:14.5px;font-weight:700;color:var(--navy);margin-bottom:4px}
.carousel-price{font-size:13.5px;font-weight:700;color:var(--orange-dark)}

/* section header with inline "See all" link */
.sec-head-row{
  max-width:var(--max);margin:0 auto 24px;display:flex;align-items:flex-end;
  justify-content:space-between;gap:16px;text-align:start;
}
.sec-head-row .sec-h,.sec-head-row .eyebrow{margin-bottom:0}
.sec-head-row .eyebrow{margin-bottom:6px}
.see-all{
  display:inline-flex;align-items:center;gap:5px;color:var(--orange-dark);
  font-size:13px;font-weight:700;white-space:nowrap;flex-shrink:0;padding-bottom:4px;
}
.see-all:hover{text-decoration:underline}

/* ============ EVENTS SECTION ============ */
.events-hero{
  max-width:var(--max);margin:0 auto;background:var(--navy);border-radius:24px;
  padding:36px 28px;text-align:center;color:#fff;
}
.events-hero h3{font-size:clamp(19px,2.6vw,24px);font-weight:600;max-width:480px;margin:0 auto;line-height:1.4}
.events-grid{
  max-width:var(--max);margin:22px auto 0;display:grid;grid-template-columns:repeat(2,1fr);gap:12px;
}
@media(min-width:640px){.events-grid{grid-template-columns:repeat(4,1fr)}}
.event-card{
  background:#fff;border-radius:14px;padding:18px 14px;text-align:center;
  box-shadow:0 2px 10px rgba(27,42,94,.07);transition:.2s;
}
.event-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.event-card .ic{font-size:26px;margin-bottom:8px}
.event-card .nm{font-size:13.5px;font-weight:700;color:var(--navy)}

/* ============ TRUST STRIP ============ */
.trust-strip{
  max-width:var(--max);margin:0 auto;display:flex;flex-wrap:wrap;gap:14px;
  justify-content:center;align-items:stretch;
}
.trust-item{
  flex:1 1 260px;background:#fff;border:1px solid var(--gray-100);border-radius:14px;
  padding:18px 20px;display:flex;gap:12px;align-items:flex-start;box-shadow:var(--shadow);
}
.trust-item .ic{
  width:38px;height:38px;border-radius:10px;background:var(--orange-tint);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.trust-item .ic svg{width:18px;height:18px;stroke:var(--orange-dark)}
.trust-item p{font-size:13.5px;font-weight:600;color:var(--navy);line-height:1.5}
.trust-item{transition:.2s}
.trust-item:hover{transform:translateY(-2px);box-shadow:var(--shadow-lg)}

/* ============ TOUR GRID (UK Day Tours catalogue) ============ */
.tour-grid{
  max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:repeat(1,1fr);gap:20px;
}
@media(min-width:640px){.tour-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.tour-grid{grid-template-columns:repeat(3,1fr)}}
.tour-card{
  background:#fff;border-radius:var(--radius);overflow:hidden;
  box-shadow:0 2px 10px rgba(27,42,94,.07);transition:.2s;
}
.tour-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.tour-img{aspect-ratio:4/3;width:100%;position:relative;overflow:hidden;background:var(--gray-100)}
.tour-img img{width:100%;height:100%;object-fit:cover;display:block}
.tour-img .ph-badge{
  position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);
  background:rgba(19,31,71,.82);color:#fff;font-size:10.5px;font-weight:600;
  padding:5px 10px;border-radius:var(--radius-pill);white-space:nowrap;pointer-events:none;
}
.tour-body{padding:20px}
.tour-name{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:6px;font-family:'Fraunces',Georgia,serif}
.airport-code{
  font-family:'Inter',sans-serif;font-size:10.5px;font-weight:700;color:var(--gray-500);
  background:var(--gray-100);padding:2px 7px;border-radius:6px;margin-inline-start:4px;vertical-align:middle;
}
.tour-desc{font-size:12.5px;color:var(--gray-500);line-height:1.55;margin-bottom:16px;min-height:38px}
.tour-toggle{display:inline-flex;background:var(--gray-100);border-radius:var(--radius-pill);padding:3px;margin-bottom:14px}
.toggle-btn{
  background:none;border:none;padding:7px 16px;border-radius:var(--radius-pill);
  font-size:12px;font-weight:700;color:var(--gray-500);transition:.15s;
}
.toggle-btn.on{background:var(--navy);color:#fff}
.tour-price{display:flex;align-items:baseline;gap:6px;margin-bottom:16px}
.price-amount{font-size:22px;font-weight:800;color:var(--orange-dark)}
.price-label{font-size:12px;color:var(--gray-500);font-weight:500}
.tour-book-btn{width:100%;justify-content:center;padding:11px 20px;font-size:13.5px}

/* ---- hourly packages (Chauffeur by the Hour) ---- */
.package-card{position:relative;text-align:center}
.package-card.featured{border:2px solid var(--orange);box-shadow:0 8px 24px rgba(241,90,36,.18)}
.popular-tag{
  position:absolute;top:0;left:50%;transform:translate(-50%,-50%);
  background:var(--orange);color:#fff;font-size:10.5px;font-weight:800;text-transform:uppercase;
  letter-spacing:.4px;padding:5px 14px;border-radius:var(--radius-pill);white-space:nowrap;
}
.package-hours{font-size:34px;font-weight:800;color:var(--navy);font-family:'Fraunces',Georgia,serif;margin-bottom:10px}
.package-hours span{font-size:14px;font-weight:600;color:var(--gray-500);font-family:'Inter',sans-serif}
.package-includes{list-style:none;text-align:start;margin:0 0 18px;padding:0}
.package-includes li{
  font-size:12.5px;color:var(--gray-700);padding:6px 0 6px 22px;position:relative;border-bottom:1px solid var(--gray-100);
}
.package-includes li:last-child{border-bottom:none}
.package-includes li::before{
  content:'✓';position:absolute;inset-inline-start:0;color:var(--orange-dark);font-weight:800;
}
.package-note{
  max-width:var(--max);margin:26px auto 0;font-size:12px;color:var(--gray-500);line-height:1.7;
  text-align:center;padding:0 20px;
}

/* ============ UNIVERSITY DIRECTORY ============ */
.uni-grid{
  max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:repeat(1,1fr);gap:10px;
}
@media(min-width:640px){.uni-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:960px){.uni-grid{grid-template-columns:repeat(3,1fr)}}
.uni-chip{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  background:#fff;border:1px solid var(--gray-100);border-radius:12px;padding:16px 18px;
  transition:.15s;
}
.uni-chip:hover{border-color:var(--orange);box-shadow:0 4px 14px rgba(241,90,36,.12);transform:translateY(-1px)}
.uni-name{font-size:13.5px;font-weight:700;color:var(--navy)}
.uni-cta{font-size:11.5px;font-weight:700;color:var(--orange-dark);white-space:nowrap;flex-shrink:0}

/* ============ DETAIL PAGE TEMPLATE (tour / university / event detail) ============ */

/* breadcrumb */
.crumb-bar{background:#fff;border-bottom:1px solid var(--gray-100)}
.crumb-inner{max-width:var(--max);margin:0 auto;padding:12px 20px;font-size:12.5px;color:var(--gray-500);display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.crumb-inner a{color:var(--gray-500);font-weight:500}
.crumb-inner a:hover{color:var(--orange-dark)}
.crumb-sep{color:var(--gray-300)}
.crumb-current{color:var(--navy);font-weight:700}

/* hero image with overlay title */
.detail-hero{position:relative;height:340px;overflow:hidden}
.detail-hero img{width:100%;height:100%;object-fit:cover}
.detail-hero-badge{position:absolute;top:16px;left:16px}
.detail-hero-overlay{
  position:absolute;inset:0;background:linear-gradient(0deg,rgba(19,31,71,.82) 0%,rgba(19,31,71,.1) 55%,transparent 100%);
  display:flex;align-items:flex-end;
}
.detail-hero-inner{max-width:var(--max);margin:0 auto;padding:28px 20px;width:100%}
.detail-hero-inner h1{color:#fff;font-size:clamp(28px,4.5vw,42px);font-weight:600;letter-spacing:-.5px;margin-bottom:8px}
.detail-hero-inner p{color:rgba(255,255,255,.85);font-size:15px;max-width:520px}

@media(min-width:900px){.detail-hero{height:420px}}

/* photo gallery */
.gallery-grid{max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:repeat(2,1fr);gap:10px}
@media(min-width:640px){.gallery-grid{grid-template-columns:repeat(3,1fr)}}
.gallery-item{aspect-ratio:1;position:relative;overflow:hidden;border-radius:12px;background:var(--gray-100)}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block}
.gallery-item .ph-badge{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);font-size:10px;padding:4px 9px}

/* generic content block (overview / inclusions / exclusions) */
.detail-block{max-width:var(--max);margin:0 auto}
.detail-block .eyebrow{justify-content:flex-start}
.detail-text{font-size:14.5px;color:var(--gray-700);line-height:1.75;max-width:760px}

.incl-excl-grid{
  max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:1fr;gap:32px;
}
@media(min-width:768px){.incl-excl-grid{grid-template-columns:1fr 1fr}}
.check-list,.cross-list{list-style:none;margin-top:14px}
.check-list li,.cross-list li{
  font-size:13.5px;color:var(--gray-700);padding:9px 0 9px 26px;position:relative;
  border-bottom:1px solid var(--gray-100);line-height:1.5;
}
.check-list li:last-child,.cross-list li:last-child{border-bottom:none}
.check-list li::before{content:'✓';position:absolute;inset-inline-start:0;color:var(--orange-dark);font-weight:800}
.cross-list li::before{content:'✕';position:absolute;inset-inline-start:0;color:var(--gray-300);font-weight:800}

/* duration + toggle + price card */
.price-card{
  max-width:480px;margin:0 auto;background:#fff;border-radius:var(--radius);padding:28px 24px;
  box-shadow:var(--shadow-lg);text-align:center;
}
.duration-pills{
  display:inline-flex;background:var(--gray-100);border-radius:var(--radius-pill);padding:3px;margin-bottom:12px;
}
.big-price{justify-content:center;margin:18px 0}
.big-price .price-amount{font-size:32px}
.price-card .search-submit{margin-top:6px}

/* booking form */
.booking-form{
  max-width:760px;margin:0 auto;background:#fff;border-radius:var(--radius);padding:28px 24px;
  box-shadow:var(--shadow);display:grid;grid-template-columns:1fr;gap:16px;
}
@media(min-width:640px){.booking-form{grid-template-columns:1fr 1fr;padding:32px}}

/* FAQ accordion */
.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
.faq-item{background:#fff;border-radius:12px;padding:16px 18px;box-shadow:0 2px 10px rgba(27,42,94,.06)}
.faq-item summary{
  font-size:14px;font-weight:700;color:var(--navy);cursor:pointer;list-style:none;
  display:flex;justify-content:space-between;align-items:center;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'+';font-size:20px;font-weight:400;color:var(--orange-dark);flex-shrink:0;margin-inline-start:12px}
.faq-item[open] summary::after{content:'−'}
.faq-item p{font-size:13px;color:var(--gray-500);line-height:1.6;margin-top:12px}

/* ============ TIMELINE (Student Arrival journey) ============ */
.timeline{max-width:720px;margin:0 auto;position:relative}
.timeline::before{
  content:'';position:absolute;inset-inline-start:27px;top:8px;bottom:8px;width:2px;
  background:var(--gray-300);
}
.timeline-step{display:flex;gap:20px;padding-bottom:38px;position:relative}
.timeline-step:last-child{padding-bottom:0}
.timeline-num{
  width:56px;height:56px;border-radius:50%;background:var(--navy);flex-shrink:0;
  display:flex;align-items:center;justify-content:center;position:relative;z-index:2;
  box-shadow:0 6px 16px rgba(27,42,94,.28);
}
.timeline-num svg{width:26px;height:26px;stroke:#fff}
.timeline-step:nth-child(even) .timeline-num{background:var(--orange);box-shadow:0 6px 16px rgba(241,90,36,.3)}
.timeline-body{padding-top:12px}
.timeline-title{font-size:17px;font-weight:700;color:var(--navy);margin-bottom:8px;font-family:'Fraunces',Georgia,serif}
.timeline-desc{font-size:13.5px;color:var(--gray-500);line-height:1.65;margin-bottom:12px;max-width:480px}
.notify-chip{
  display:inline-flex;align-items:center;gap:6px;background:var(--orange-tint);color:var(--orange-dark);
  font-size:11.5px;font-weight:700;padding:6px 13px;border-radius:var(--radius-pill);
}
.notify-chip svg{width:13px;height:13px;flex-shrink:0}

@media(max-width:480px){
  .timeline::before{inset-inline-start:23px}
  .timeline-num{width:48px;height:48px}
  .timeline-num svg{width:22px;height:22px}
  .timeline-step{gap:14px}
}

/* ============ JOURNAL / BLOG ============ */
.journal-grid{
  max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:repeat(1,1fr);gap:16px;
}
@media(min-width:640px){.journal-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:900px){.journal-grid{grid-template-columns:repeat(4,1fr)}}
.journal-card{
  display:block;background:#fff;border-radius:var(--radius);overflow:hidden;
  box-shadow:0 2px 10px rgba(27,42,94,.07);position:relative;transition:.2s;
}
.journal-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.journal-img{aspect-ratio:16/10;width:100%;overflow:hidden;background:var(--gray-100)}
.journal-img img{width:100%;height:100%;object-fit:cover;display:block}
.journal-body{padding:16px}
.journal-title{font-size:14.5px;font-weight:700;color:var(--navy);line-height:1.4;margin-bottom:6px}
.journal-excerpt{font-size:12.5px;color:var(--gray-500);line-height:1.5}
.draft-tag{
  position:absolute;top:10px;left:10px;z-index:2;background:rgba(255,255,255,.92);color:var(--gray-700);
  font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.4px;
  padding:4px 9px;border-radius:var(--radius-pill);
}

/* ============ REVIEWS ============ */
.reviews-grid{
  max-width:var(--max);margin:0 auto;display:grid;grid-template-columns:repeat(1,1fr);gap:16px;
}
@media(min-width:640px){.reviews-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:900px){.reviews-grid{grid-template-columns:repeat(4,1fr)}}
.review-card{
  background:#fff;border-radius:var(--radius);padding:20px;position:relative;
  box-shadow:0 2px 10px rgba(27,42,94,.07);transition:.2s;
}
.review-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.review-card .draft-tag{position:static;display:inline-block;margin-bottom:12px;background:var(--orange-tint);color:var(--orange-dark)}
.review-quote{font-size:13.5px;color:var(--gray-700);line-height:1.6;font-style:italic;margin-bottom:14px}
.review-by{font-size:12.5px;font-weight:700;color:var(--navy)}

.stars{display:inline-flex;gap:3px;margin-bottom:10px}
.review-card .stars{display:flex}
.star{width:15px;height:15px;fill:none;stroke:var(--gray-300);stroke-width:1.3}
.star.filled{fill:var(--orange);stroke:var(--orange)}

.overall-rating{
  display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:9px;margin-top:14px;
}
.overall-rating .draft-tag{position:static}
.overall-rating .stars{margin-bottom:0}
.overall-rating .star{width:17px;height:17px}
.rating-score{font-size:16px;font-weight:800;color:var(--navy)}
.rating-outof{font-size:12px;font-weight:600;color:var(--gray-500)}
.rating-count{font-size:12.5px;color:var(--gray-500);font-weight:500}

/* ============ FOOTER ============ */
footer{background:var(--navy-dark);color:rgba(255,255,255,.6);padding:36px 20px 22px;margin-top:20px}
.footer-inner{max-width:var(--max);margin:0 auto;text-align:center}
.footer-inner .logo-name{color:#fff;font-size:18px;margin-bottom:8px;display:inline-block}
.footer-inner .logo-name span{color:var(--orange)}
.footer-note{font-size:12px;margin-top:10px;color:rgba(255,255,255,.4)}

/* ============ DESIGN-REVIEW BANNER (remove before real launch) ============ */
.review-banner{
  background:#FFF6E5;border-bottom:1px solid #F0DDA0;color:#6B4E00;
  font-size:12.5px;text-align:center;padding:8px 16px;font-weight:600;
}

/* ============ RTL FOUNDATION (Arabic) ============
   Most layout (flex/grid row order, margin-inline, text-align:start)
   mirrors automatically once [dir="rtl"] sets direction:rtl on <html>.
   Only physically-positioned exceptions need explicit overrides below. */
[dir="rtl"] body{direction:rtl}

[dir="rtl"] .selector-menu{right:auto;left:0}
[dir="rtl"] .mobile-drawer-panel{right:auto;left:0}
[dir="rtl"] .draft-tag{left:auto;right:10px}
[dir="rtl"] .review-card .draft-tag{left:auto;right:auto}

/* directional icons (arrows) flip so they still point "forward" */
[dir="rtl"] .btn svg,
[dir="rtl"] .see-all svg{transform:scaleX(-1)}

/* Arabic script needs a font that actually has Arabic glyphs —
   Inter/Fraunces don't, so fall back to the system Arabic-capable stack */
[dir="rtl"]{
  font-family:'Segoe UI','Tahoma','Geeza Pro',system-ui,sans-serif;
}
[dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3{font-family:'Segoe UI',system-ui,sans-serif}
