/* ============================================================
   style.css — Amit Tour & Travels
   Design: Warm travel brand · Golden accent · Dark navbar
   Fonts: Playfair Display (headlines) + DM Sans (body)
   ============================================================ */

/* CSS VARIABLES ─────────────────────────────────────*/
:root {
  --brand:        #DA251C;
  --brand-dark:   #C8281E;
  --brand-light:  #fff5e0;
  --dark:         #111827;
  --dark-2:       #1C1C29;
  --dark-3:       #374151;
  --text:         #374151;
  --text-muted:   #6b7280;
  --text-white:   #ffffff;
  --text-light:   #9ca3af;
  --bg:           #ffffff;
  --bg-soft:      #FFFDF4;
  --bg-cream:     #fffbf4;
  --border:       #e5e7eb;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow:       0 4px 20px 0 4px 10px rgba(218, 37, 28, 0.08);
  --shadow-lg:    0 12px 40px  rgba(218, 37, 28, 0.14);
  --transition:   .25s ease;
  --container:    1670px;
  --font-head:    "Fraunces", serif;
  --font-body:    "Sora", sans-serif;
  --font-inter:   "Inter", sans-serif;
  --font-playful : "Playfair Display", serif;

}

/* RESET & BASE ───────────────────────────────────────*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-inter);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

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

/* BUTTONS ─*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--font-inter);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
/* .btn--primary {
  background: var(--brand);
  color: #fff;
} */
.btn--large {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
}
.btn--white {
  color: var(--dark);
  background: #fff;
}
/* .btn--primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px  rgba(218, 37, 28, 0.14);
} */
.btn--ghost {
  background:   rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
}
.btn--outline {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand);
}
.btn--outline:hover {
  background: var(--brand);
  color: #fff;
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.15);
}
.btn--lg { padding: 15px 32px; font-size: 15px; }
.btn--sm { padding: 8px 18px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }
.btn--offer {
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  transition: var(--transition);
}
.btn--offer:hover { background: rgba(0,0,0,.07); }

/* SECTION HELPERS ────────────────────────────────────*/
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-family: var(--font-playful);
  font-size:  40px;
  color: var(--dark);
  line-height: 1.25;
}
.section-head p {
  color: var(--text-muted);
  margin-top: 6px;
  /* max-width: 520px; */
  font-family: var(--font-inter);
  font-size: 18px;
}

.section-head--center { flex-direction: column; align-items: center; text-align: center; }
/* .section-head--center p { max-width: 600px; } */
.section-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-badge--light { background: var(--brand-light); color: var(--brand-dark); }
.highlight { color: var(--brand); }

/* TOP BAR ─*/
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: 14px;
  padding: 10px 0;
  height: 50px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar__left { display: flex; gap: 20px; }
.topbar__left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.topbar__left a:hover { color: var(--brand); }
.topbar__right { display: flex; align-items: center; gap: 16px; }
.topbar__cta { color: rgba(255,255,255,.65); font-size: 12px; display: flex; gap:10px; }
.topbar__login {
  background: var(--brand);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  transition: var(--transition);
}
.topbar__login:hover { background: var(--brand-dark); }

/* NAVBAR ──*/
.navbar {
  z-index: 999;
  background: transparent;
  padding: 14px 0;
  transition: box-shadow var(--transition), padding var(--transition), background var(--transition), top var(--transition);
  position: absolute;
  height: 30px;
  width: 100%;
  top: 50px;
  left: 0;
  right: 0;
}
.navbar.scrolled {
  position: fixed;
  top: 0;
  background: var(--dark);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  height: 75px;;
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar__logo .logo-icon img {
    max-height: 55px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-brand {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.logo-sub { font-size: 11.5px; color: rgba(255,255,255,1); letter-spacing: .04em; text-transform: uppercase; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: auto;
}
.navbar__nav a {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  font-weight: 600;
  transition: color var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width var(--transition);
  border-radius: 2px;
}
.navbar__nav a:hover { color: #fff; }
.navbar__nav a:hover::after { width: 100%; }

.navbar__actions { display: flex; align-items: center; gap: 10px; }
.nav-mobile-actions { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO ─────*/
.hero {
  position: relative;
  min-height: 92vh;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(245,166,35,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Ticker */
.hero__ticker {
  background: var(--dark-2);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 90s linear infinite;
}
.ticker-track span {
  display: inline-block;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
  letter-spacing: .03em;
  align-items: center;
  vertical-align: middle;
}
.ticker-track span::after {
  content: " ✦";
  color: gold;
  font-size: 24px;
  margin-left: 10%;
  font-weight: 500;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 760px;
}
.hero__badge {
  display: inline-block;
  background: rgba(245,166,35,.2);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
}
.hero__headline-accent { color: var(--brand); }
.hero__sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat__num {
  font-family: var(--font-inter);
  font-size: 22px;
  line-height: 18px;
  font-weight: 500;
  color: var(--text-white);
  line-height: 1;
}
.stat__label { font-size: 16px; color: var(--text-white); margin-top: 4px; font-weight: 400; font-family: var(--font-inter); }
.stat__divider {
  width: 1px; 
  height: 42px;
  background:rgba(228, 228, 231, 1);
  flex-shrink: 0;
}

/* TOUR CATEGORIES ────────────────────────────────────*/
.categories {
  /* background: var(--bg-cream); */
  padding: 80px 0;
}
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* .tour-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.666) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  width: 100%;
  height: 208px; /* 👈 only bottom 40% * /
  left: 0;
  top:auto;
  bottom: 0;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.tour-card {
  /* height: 200px; * /
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  border-radius: 24px;
  /* position: relative; * /
}
.tour-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--brand);
  color: #1a0f00;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.tour-card__body { padding: 10px 15px 18px; z-index: 2; position: relative; }
.tour-card__body h3 {
  font-family: var(--font-inter);
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 6px;
  z-index: 2;
  font-weight: 500;
}
.tour-card__category { font-size: 13px; color: var(--dark); background-color: rgba(255, 245, 0, 1); margin-bottom: 6px; width: fit-content; padding: 6px 14px; border-radius: 50px; }
.tour-card__meta { font-size: 13px; color: var(--text-white); margin-bottom: 6px; }
.tour-card__price { font-size: 14px; color: var(--text-white); }
.tour-card__price strong { color: var(--brand-dark); font-size: 16px; } */
.travel-card{
    width:420px;
    height:500px;
    border-radius:32px;
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(circle at top left,
            rgba(226,35,26,.10),
            transparent 30%),

        linear-gradient(
            180deg,
            #162033 0%,
            #111827 45%,
            #0c1321 100%
        );

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 20px 50px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.04);
}

/* LEFT RED GLOW */

.card-border{
    position:absolute;
    left:0;
    top:28px;
    bottom:28px;
    width:4px;

    background:linear-gradient(
        to bottom,
        transparent,
        var(--red),
        transparent
    );

    border-radius:20px;
}

/* CONTENT */

.travel-content{
    position:relative;
    z-index:2;
    padding:42px 38px;
    height:100%;
    display:flex;
    flex-direction:column;
}

/* BADGE */

.travel-badge{
    width:max-content;
    background:var(--yellow);
    color:#000;

    padding:14px 24px;
    border-radius:16px;

    display:flex;
    align-items:center;
    gap:10px;

    font-size:15px;
    font-weight:700;

    margin-bottom:42px;
}

/* TITLE */

.travel-title{
    margin:0;
    font-size:88px;
    line-height:.9;
    letter-spacing:-4px;
    font-weight:800;
    color:var(--white);
}

.travel-title span{
    display:block;
    color:var(--red);
    margin-top:6px;
}

/* SUBTITLE */

.travel-subtitle{
    margin-top:28px;
    margin-bottom:44px;

    color:rgba(255,255,255,.92);

    font-size:32px;
    font-weight:500;
    letter-spacing:1px;
}

/* DIVIDER */

.travel-divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.10);
    position:relative;
    margin-bottom:52px;
}

.travel-divider span{
    position:absolute;
    left:0;
    top:0;

    width:130px;
    height:2px;

    background:var(--red);
}

/* PRICE */

.travel-label{
    margin:0 0 14px;

    color:rgba(255,255,255,.7);

    letter-spacing:6px;
    font-size:14px;
    font-weight:500;
}

.travel-price{
    margin:0;

    font-size:74px;
    line-height:1;
    color:var(--yellow);
    font-weight:800;
}

.travel-price small{
    font-size:24px;
    color:rgba(255,255,255,.75);
    font-weight:500;
}

.travel-card-link{
    text-decoration:none;
    display:block;
}

/* CARD */

.tour-card{
    position:relative;
    overflow:hidden;
    /* min-height:460px; */
    border-radius:var(--radius-lg);
    background:
        radial-gradient(
            circle at top left,
            rgba(218, 37, 28, .14),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #1a2438 0%,
            var(--dark) 48%,
            #0d1422 100%
        );

    border:1px solid rgba(255,255,255,.06);
    box-shadow:var(--shadow-lg);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    isolation:isolate;
}


.tour-card:hover{
    transform:translateY(-6px);

    box-shadow:
        0 18px 50px rgba(0,0,0,.35);
}

/* LEFT RED GLOW */

.tour-card__glow{
    position:absolute;
    left:0;
    top:28px;
    bottom:28px;
    width:4px;

    border-radius:20px;

    background:linear-gradient(
        to bottom,
        transparent,
        var(--brand),
        transparent
    );

    opacity:.95;
}

/* BODY */

.tour-card__body{
    position:relative;
    z-index:2;

    height:100%;

    padding:38px 34px;

    display:flex;
    flex-direction:column;
}

/* BADGE */

.tour-card__category{
    width:max-content;
    display:inline-flex;
    align-items:center;
    background:#fff500;
    color:#000 !important;
    padding:12px 20px;
    border-radius:999px;
    /* font-family:var(--font-body); */
    font-size:.85rem;
    font-weight:500;
    /* letter-spacing:.3px; */
    text-transform:capitalize;
}

/* TITLE */

.tour-card__title{
    margin:30px 0 0;
    color:var(--text-white) !important;
    /* font-family:var(--font-head); */
    font-size:clamp(1.2rem, 6vw, 1.4rem);
    line-height:1;
    /* letter-spacing:-3px; */
    font-weight:600;

    word-break:break-word;
}

/* BOTTOM SECTION */

.tour-card__bottom{
    margin-top:auto;
    padding-top:32px;
    /* border-top:1px solid rgba(255,255,255,.08); */
}

/* LABEL */

.tour-card__label{
    margin:0 0 14px;
    color:rgba(255,255,255,.72) !important;
    font-family:var(--font-inter);
    font-size:12px;
    font-weight:500;
    /* letter-spacing:5px; */
    text-transform:uppercase;
}

/* PRICE */

.tour-card__price{
    margin:0;
    color:#fff500 !important;
    font-family:var(--font-body);
    font-size:1.3rem;
    line-height:1;
    font-weight:600;
}

/* PERSON */

.tour-card__price small{
    font-size:1.15rem;

    color:rgba(255,255,255,.7);

    font-weight:500;
}

/* MOBILE */

@media (max-width:768px){
    .tour-card{
        min-height:390px;
    }
    .tour-card__body{
        padding:28px;
    }
    .tour-card__title{
        margin-top:24px;
        font-size:3.6rem;
    }
    .tour-card__price{
        font-size:3.2rem;
    }
}
/* DEPARTING SOON ─────────────────────────────────────*/
.departing {
  padding: 80px 0;
  background:#F9F6EF;
}
.departing__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dep-card {
  display: flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.dep-card:hover { box-shadow: var(--shadow-lg); }
.dep-card__img {
  width: 220px;
  /* flex-shrink: 0; */
  /* background-size: cover;
  background-position: center;
  background-color: #ccc; */
  position: relative;
  padding: 16px;
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
  /* border-radius: 20px; */
}
.dep-card__img img {
  width: 100%;
  height: 100%;
  /* max-height: 128px; */
  object-fit: cover;
  border-radius: 20px ;
  /* padding: 20px; */
}
.dep-card__dest {
  /* position: absolute; */
  top: 12px; left: 12px;
  /* background: rgba(0,0,0,.65); */
  color: var(--brand);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  /* padding: 3px 10px; */
  border-radius: 50px;
  letter-spacing: .04em;
}
.dep-card__body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  justify-content: space-between;
}
.dep-card__body h3 {
  font-family: var(--font-inter);
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 600;
  /* margin-bottom: 10px; */
}
.dep-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  /* margin-bottom: 16px; */
}
.dep-card__tags span:not(:last-child)::after {
  content: "•";
  position: relative;
  top: 50%;
  left: 8px;
  transform: translate(-50%, -50%);
  color: rgba(217, 217, 217, 1);
}
.dep-card__tags span { display: flex; align-items: center; gap: 5px; }
.tag-pill {
  background: #f3f4f6;
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 12px;
}
.dep-card__footer {
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.seats-badge {
  background: rgba(219, 219, 219, 1);
  color: #27272A;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 50px;
}
.dep-card__seats {
  display: flex;  
  gap: 8px;
}
.dep-card__price-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dep-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}
.dep-card__price small { font-size: 12px; font-weight: 400; color: var(--text-muted); }

/* WHY CHOOSE US ──────────────────────────────────────*/
.why-us {
  background:var(--dark-2);
  padding: 90px 0;
  color: #fff;
}
.why-us .section-head h2 { color: var(--text-white) }
.why-us .section-head p { color: var(--text-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  /*  */
  border-radius: var(--radius);
  overflow: hidden;
}
.why-card {
  background: #212133;
  padding: 34px;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
  height:325px;
  border-radius: 24px;
  border: #FFFFFF1A 1px solid;
  justify-content: space-between;
}
.why-card:hover { background: #DA251C; cursor: pointer; }
.why-card__icon {
  width: 74px; 
  height: 74px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #1a0f00;
  margin-bottom: 50px;
  border-radius: 50px;
  padding: 12px;
}
.why-card__icon svg {
    fill: #da281f;
}
.why-card:hover .why-card__icon svg {
    fill: #000;
}
.why-card h3 {
  font-family: var(--font-inter);
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}
.why-card p { font-size: 15.5px; color:#A1A1AA; line-height: 1.65; }
.why-card:hover p, .why-card:hover h3 { color: #fff; }
/* 4 STEPS ─*/
.steps {
  background: var(--bg);
  padding: 90px 0;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step-counter;
}
.step-card {
  background: #F9F6EF;
  /* border: 1px solid var(--border); */
  border-radius: 24px;
  padding: 36px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 32px;
  counter-increment: step-counter;
  justify-content: space-between;
}
.step-card:not(:last-child) { margin-right: 20px; }
.step-card:hover { box-shadow: var(--shadow-lg); }
.step-card .step-card__num {
    position: absolute; 
    
 }
.step-card .step-card__num::before {
    content: counter(step-counter);
    top: 18px;
    right: 0;
    width: 300px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 104px;
    font-weight: 600;
    z-index: 1;
    color: #0000000D;
    transform: translateX(50%);
    left: auto;
    font-family: var(--font-playful);
}
.step-card__icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: var(--brand-dark);
  color: #fff;
  /* margin: 16px; */
}
.step-card h3 {
  font-family: var(--font-inter);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-card p { font-size: 16px; color: #52525B; line-height: 1.6;  }
/* .step-card__arrow {
  position: absolute;
  right: -22px; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--brand);
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(245,166,35,.4);
} */

/* OFFERS ──*/
.offers {
  padding: 90px 0;
  background: var(--bg-cream);
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns = 2×2 grid */
  gap: 16px;
}
.offer-card {
  background: #fff;
  border: 1px solid #f0ede8;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

/* .offer-card__img { width: 238px; height: 238px; border-radius: 10px; object-fit: cover; flex-shrink: 0; } */
.offer-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns = 2×2 grid */
  gap: 16px;
}
/* Decorative blob (top-right accent circle) */
.offer-card__icon {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  background: #f3ede3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 32px;
}

.offer-card__img { width: 238px; height: 238px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }

.offer-card--red   .offer-card__icon { background: #fdecea; color: #C0392B; }
.offer-card--blue  .offer-card__icon { background: #e6f1fb; color: #185FA5; }
.offer-card--amber .offer-card__icon { background: #faeeda; color: #BA7517; }
.offer-card--green .offer-card__icon { background: #eaf3de; color: #3B6D11; }

/* Image / icon thumbnail */

.offer-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
.offer-card__body .btn {
  width: fit-content;
}
/* Pill tag */
.offer-card__tag {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: #1a1a1a;
  color: #fff;
  letter-spacing: 0.03em;
}

.offer-card h3 {
  font-size: 20px;
  font-weight: 600;
  /* margin: 0 0 6px; */
  color: #27272A;
  text-align: left;
  line-height: 1.3;
}

.offer-card p {
  font-size: 16px;
  color: #52525B;
  text-align: left;
  /* margin: 0 0 12px; */
  line-height: 1.5;
}

/* CTA button */
.btn--offer {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.15s, transform 0.1s;
      width: fit-content;
}
.btn--offer:hover  { opacity: 0.88; }
.btn--offer:active { transform: scale(0.97); }

/* Per-card accent colors */
.offer-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.offer-card--red::before    { background: #E24B4A; }
.offer-card--blue::before   { background: #378ADD; }
.offer-card--amber::before  { background: #EF9F27; }
.offer-card--green::before  { background: #639922; }

.offer-card--red   .btn--offer { background: #C0392B; }
.offer-card--blue  .btn--offer { background: #185FA5; }
.offer-card--amber .btn--offer { background: #BA7517; }
.offer-card--green .btn--offer { background: #3B6D11; }

/* STATS BAR ─ */
.stats-bar {
  background: var(--dark-2);
  padding: 48px 0;
}
.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item { text-align: center; padding: 0 100px; }
.stat-item__num {
  display: block;
  font-family: var(--font-inter);
  font-size: 2.4rem;
  font-weight: 700;
  color: #F5C800;
}
.stat-item__label {
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,1);
  /* margin-top: 4px; */
}
.stat-item__sep { width: 1px; height: 54px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* TESTIMONIALS ───────────────────────────────────────*/
.testimonials {
  padding: 90px 0;
  background: var(--bg);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonials .section-head h2 { font-weight: 500; }
.review-card {
  background: #FFFDF4;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.review-card__stars {
  color: #e8192c;
  font-size: 16px;
  display: flex;
  gap: 4px;
}

.review-card__stars .is-empty {
  color: #D4D4D8;
}

.review-card__text {
  font-size: 18px;
  line-height: 1.6;
  color: #27272A;
  flex: 1;
  font-weight: 300;
  font-family: var(--font-inter);
  margin: 0;
  padding-bottom: 20px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e5e7eb;
  padding-top: 10px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  color: #374151;
}

.review-card__author strong {
  display: block;
  font-size: 16px;
  color: #27272A;
  font-weight: 500;
}

.review-card__author span {
  font-size: 14px;
  color: #52525B;
}

/* AGENT SECTION ──────────────────────────────────────*/
.agent-section {
  background: #FFFDF4;
  padding: 90px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.agent-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%);
  pointer-events: none;
}
.agent-section__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.agent-section__left h2 {
  font-family: var(--font-playful);
  font-size:  40px;
  color: #27272A;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 14px;
}
.agent-section__sub { color: #71717A; font-size: 20px; margin-bottom: 32px; }
.agent-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  padding: 16px 0;
  gap: 20px;
}

.agent-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.agent-benefit:hover {
  background: #1a1f2e;
  border-color: #1a1f2e;
  color: #fff;
  cursor: pointer;
}

/* .agent-benefit:first-child p {
  color: #c0c6d4;
} */

.agent-benefit__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}
.agent-benefit__icon svg {
  fill: #fff;
  height: 100%;
}
.agent-benefit strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #27272A;
  
}
.agent-benefit:hover strong, .agent-benefit:hover p {
  color: var(--text-white);
}

.agent-benefit p {
  margin: 0;
  font-size: 15px;
  color: #27272A ;
  line-height: 1.4;
  text-wrap: wrap;
  max-width: 280px;
}
.you-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  /* background: rgba(245,166,35,.1); */
  /* border: 1px solid rgba(245,166,35,.25); */
  /* border-radius: var(--radius); */
  padding: 16px 24px;
  justify-self: center;
}
.you-node {
  width: 54px; height: 54px;
  background: var(--brand);
  color: white;
  font-weight: 400;
  font-size: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.you-spokes { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.you-spokes img {
  max-width: 60px;
}

/* Agent form */
.agent-form-card {
  background: var(--bg);
  border-radius: calc(var(--radius-lg) * 2 );
  padding: 40px 36px;
  border: 1px solid #E4E4E7;
  position: relative;
  z-index: 2;
}
.agent-form-card h3 {
  font-family: var(--font-inter);
  font-size: 22px;
  color: var(--dark);
  text-align: center;
  margin-bottom: 6px;
}
.agent-form-card > p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: center;
}
.form-group {
  position: relative;
  margin-bottom: 12px;
}

.form-group input {
  width: 100%;
  padding: 16px 12px; /* ← more top padding */
  font-size: 14px;
  border: 1.5px solid #E4E4E7;
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  background: #FAFAFA;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #A1A1AA;
  background: #FAFAFA;
  padding: 0 4px;
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 1; /* ← label above input background, below input text */
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label ,

.form-group select:focus + label,
.form-group select:not(:placeholder-shown) + label {
  top: 0;
  left: 4px;
  transform: translateY(-50%);  /* ← add this */
  font-size: 12px;
  color: #e8192c;
  background: linear-gradient(to bottom, #ffffff 3%, #FAFAFA 100%
100%
);
}

.form-group input:focus {
  border-color: #e8192c;
}
.req { color: #e11d48; }
.opt { color: var(--text-muted); font-weight: 400; }
.form-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.form-msg--error { background: #fee2e2; color: #b91c1c; }
.form-msg--success { background: #dcfce7; color: #166534; }
.form-privacy {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  font-weight: 300; 
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

/* FINAL CTA ─ */
.final-cta {
  background: var(--dark-2);
  padding: 90px 0 0;
  overflow: hidden;
}
.final-cta__inner {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
.final-cta__text {
  flex: 1;
  padding-bottom: 80px;
  color: #fff;
}
.final-cta__text h2 {
  font-family: var(--font-playful);
  font-size: 40px;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.final-cta__text p {
  color: var(--text-white);
  font-size: 16px;
  /* max-width: 520px; */
  margin-bottom: 32px;
  line-height: 1.7;
  margin-right: 25rem;
}
.final-cta__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.final-cta__image {
  width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  align-self: flex-end;
  right: 10rem;
  position: absolute;
}
.final-cta__image img {
  width: 100%;
  object-fit: cover;
  filter: drop-shadow(0 -20px 40px rgba(0,0,0,.4));
}

/* FOOTER ──*/
.footer {
  background: #F8F8F8;
  color: #444;
  padding: 70px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #E0E0E0;
}

/* Brand column */
.footer__desc {
  font-size: 16px;
  color: #27272A;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 44px; height: 44px;
  background: #1a1a1a;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: var(--transition);
}
.footer__social a:hover { background: var(--brand); color: #fff; }

/* Column headings */
.footer__col h4 {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 500;
  /* letter-spacing: .08em; */
  text-transform: uppercase;
  color: var(--brand);          /* red accent, matches the image */
  margin-bottom: 18px;
}

/* Links */
.footer__col ul {
  list-style-type: disc;
  font-size: 16px;
  color: #DA251C;
  list-style-position: inside;
  margin-left: -15px;
  list-style-position: outside;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 13.5px;
  color: #27272A;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--brand); }

/* Contact column */
.footer__contact address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #27272A;
  margin-bottom: 10px;
  line-height: 1.55;
  font-style: normal;
}
.footer__contact address p.list {
  flex-direction: column;
}
.footer__contact address i {
  color: var(--brand);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer__contact address a { color: #27272A; }
.footer__contact address a:hover { color: var(--brand); }

/* Bottom bar */
.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid #E0E0E0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer__bottom p { font-size: 15px; color: #52525B; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a {
  font-size: 12.5px;
  color: #888;
  transition: color var(--transition);
}
.footer__bottom-links a:hover { color: var(--brand); }

.footer .logo-brand {
  color: var(--brand);
}
.footer .logo-sub { font-size: 11.5px; color: rgba(0,0,0,1); letter-spacing: .04em; text-transform: uppercase; }

.splide__slide {
  position: relative;
}

.splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  width: 100%;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.slide-content h1 {
  font-size: 64px;
  line-height: 84px;
  font-weight: 600;
  font-family: var(--font-playful);
}

.slide-content p:not(.slide-ribbon) {
  margin: 00px 0 30px 0;
  font-size: 18px;
  line-height: 28px;
}

p.slide-ribbon {
  padding: 12px 20px;
  background-color: var(--text-white);
  border-radius: 50px;
  width: fit-content;
  color: var(--dark);
  font-size: 16px;

}
.slide-content button {
  padding: 14px 20px;
  /* background: var(--brand); */
  border: none;
  /* color: white; */
  cursor: pointer;
  font-size: 18px;
  font-weight: normal;
}
.splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2)
  );
}
.highlighted {
  color: var(--brand-dark);
}
.highlighted-yellow {
  color:#F5C800;
}
.d-flex {
  display: flex;
}
.gap-20 {
  gap: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}


/* === Sidebar === */
.filters-sidebar {
  /* width: 220px; */
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* === Card === */
.filter-card {
  background: #fff;
  border: 1px solid #f0eded;
  border-radius: 12px;
  padding: 14px 16px;
}

/* === Section title === */
.filter-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c0392b;
  margin-bottom: 10px;
}

/* === Category list === */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.category-item:hover { background: #fdf5f5; }

.cat-icon { font-size: 16px; width: 24px; text-align: center; }

.cat-label {
  flex: 1;
  font-size: 13px;
  color: #333;
}

.cat-count {
  font-size: 12px;
  font-weight: 600;
  color: #c0392b;
  background: #fdecea;
  padding: 2px 8px;
  border-radius: 10px;
}

/* === Budget slider === */
.budget-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.budget-slider {
  width: 100%;
  accent-color: #c0392b;
}

.budget-hint {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin-top: 4px;
}

/* === Checkboxes === */
.check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}

.check input[type="checkbox"] {
  accent-color: #c0392b;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
  /* Open trigger button */
  .open-btn {
    /* border: none; */
    /* border-radius: 12px; */
    /* font-family: 'DM Sans', sans-serif; */
    font-size: 15px;
    /* font-weight: 600; */
    /* cursor: pointer; */
    /* letter-spacing: 0.01em; */
    /* transition: background 0.15s, transform 0.1s; */
  }
  .open-btn:hover, .btn:hover { background: #e2231a; color: white; }
  /* 
  .open-btn:active { transform: scale(0.98); }
  */
  /* Backdrop */
  .backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(30, 20, 15, 0.45);
    backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
    padding: 1rem;
    z-index: 99999;
  }
  .backdrop.open { display: flex; }
 
  /* Modal */
  .modal {
    background: #fff;
    border-radius: 24px;
    width: 100%; max-width: 440px;
    display: block;
    height: auto;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
    position: relative;
    animation: modalIn 0.28s cubic-bezier(.34,1.36,.64,1) both;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }
 
  /* Header */
  .modal-header {
    background: #C62828;
    padding: 2rem 2rem 1.6rem;
    position: relative; 
    overflow: hidden;
    display: block;
  }
  .modal-header::after {
    content: ''; position: absolute; right: -40px; bottom: -40px;
    width: 150px; height: 150px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
  .modal-header::before {
    content: ''; position: absolute; right: 30px; bottom: -60px;
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
  }
 
  .brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
  .brand-pill {
    height: 32px; padding: 0 14px; border-radius: 99px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  }
  .brand-pill.you { background: rgba(255,255,255,0.18); color: #fff; }
  .brand-pill.at  { background: #FFD600; color: #C62828; }
  .brand-handshake { font-size: 20px; animation: pulse 2.5s ease-in-out infinite; }
  @keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
 
  .header-title { font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; line-height: 1.2; }
  .header-sub { font-size: 13px; color: rgba(255,255,255,0.72); margin-top: 4px; line-height: 1.5; }
  .header-sub b { color: #fff; font-weight: 500; }
 
  /* Pill tabs */
  .tab-switcher {
    background: rgba(255,255,255,0.12);
    border-radius: 99px;
    display: inline-flex;
    padding: 3px;
    margin-top: 1.25rem;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .tab-pill {
    padding: 7px 22px; border-radius: 99px;
    font-size: 13px; font-weight: 500;
    border: none; cursor: pointer;
    transition: all 0.25s ease;
    color: rgba(255,255,255,0.75);
    background: transparent;
    letter-spacing: 0.01em;
  }
  .tab-pill.active { background: #fff; color: #C62828; }
 
  /* Body */
  .modal-body { padding: 1.75rem 2rem 2rem; }
 
  .pane { display: none; animation: fadeUp 0.25s ease; }
  .pane.active { display: block; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* Social */
  .social-row { display: flex; gap: 10px; margin-bottom: 1.25rem; }
  .social-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 8px; border: 1px solid #e5e5e5; border-radius: 10px;
    background: #fafafa; font-size: 13px; font-weight: 500;
    color: #333; cursor: pointer; transition: border-color 0.15s, background 0.15s;
  }
  .social-btn:hover { border-color: #ccc; background: #f2f2f2; }
  .social-icon { width: 18px; height: 18px; flex-shrink: 0; }
 
  /* Divider */
  .divider { display: flex; align-items: center; gap: 10px; margin: 0 0 1.25rem; }
  .divider-line { flex: 1; height: 1px; background: #ebebeb; }
  .divider-label { font-size: 12px; color: #aaa; white-space: nowrap; }
 
  /* Fields */
  .field-group { margin-bottom: 12px; }
  .field-row { display: flex; gap: 10px; }
  .field-row .field-group { flex: 1; }
  .field-label {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: #888; margin-bottom: 5px;
  }
  .field-input {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid #e8e8e8; border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    color: #1a1a1a; background: #fafafa; outline: none;
    transition: border-color 0.15s, background 0.15s;
  }
  .field-input:focus { border-color: #C62828; background: #fff; }
  .field-input::placeholder { color: #c0c0c0; }
 
  .forgot-link {
    display: block; text-align: right; font-size: 12px;
    color: #C62828; text-decoration: none;
    margin-top: -6px; margin-bottom: 14px; cursor: pointer;
  }
  .forgot-link:hover { text-decoration: underline; }
 
  /* CTA */
  .cta-btn {
    width: 100%; padding: 13px;
    background: #C62828; color: #fff; border: none;
    border-radius: 12px; font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600; cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.15s, transform 0.1s;
    position: relative; overflow: hidden;
  }
  .cta-btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-btn:hover { background: #b71c1c; }
  .cta-btn:active { transform: scale(0.98); }
 
  .privacy-note {
    display: flex; align-items: center; justify-content: center; gap: 5px;
    font-size: 12px; color: #aaa; margin-top: 14px;
  }
 
  .close-btn {
    position: absolute; top: 14px; right: 16px;
    width: 28px; height: 28px; border-radius: 50%;
    border: none; background: rgba(255,255,255,0.15);
    color: #fff; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
  }
  .close-btn:hover { background: rgba(255,255,255,0.25); }

/* PACKAGE LISTING PAGE ───────────────────────────────*/
.listing-hero {
  position: relative;
  padding: 210px 0 120px;
  color: #fff;
  background: url("img/ea615a50eeb1c5a103805700496e35bbaf8fd428.jpg") center/cover no-repeat;
  overflow: hidden;
  text-align: center;
}
.listing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 70% 10%, rgba(0,0,0,.18), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.78) 100%);
}
.listing-hero .container { position: relative; z-index: 1; text-align: center; }
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs .sep { opacity: .6; }
.listing-hero h1 {
  margin-top: 14px;
  font-family: var(--font-playful);
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.listing-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.85);
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 20px auto;
}
/* .searchbar {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
  gap: 10px;
  backdrop-filter: blur(10px);
  max-width: 125vh;
  min-width: 80%;
  width: 100%;
  margin: 26px auto;
}
.searchbar .field {
  border-radius: 14px;
  background: transparent;
  border: 1px solid #ececec;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.searchbar .field::after {
  content: "";
  position: absolute;
  top: 14%;
  bottom: 14%;
  right: -6px;
  width: 1px;
  background: #e5e7eb;
  pointer-events: none;
}

.searchbar .field:last-of-type::after { display: none; }

.searchbar .field label {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  font-family: var(--font-inter);
  /* letter-spacing: .06em; * /
  text-transform: capitalize;
  color: #A1A1AA;
}
.searchbar .field select,
.searchbar .field input {
  border: none;
  outline: none;
  font-family: var(--font-inter);
  font-size: 14px;
  color: var(--dark);
  background: transparent;
}
.searchbar .field input::placeholder { color: #9ca3af; }
.searchbar .btn { height: 100%; border-radius: 14px; } */

.searchbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  background: #fff;
  padding: 10px 10px 10px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.10);
  gap: 0;
    max-width: 125vh;
  min-width: 80%;
  width: 100%;
  margin: 26px auto;
}

.field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 20px 8px 0;
  flex: 1;
  min-width: 0;
}

/* Dividers between fields */
.field--divider {
  padding-left: 20px;
  border-left: 1px solid #eee;
}

.field .field-group {
  display: flex;
  gap: 10px;
}
.field label {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 4px;
  text-align: left;
  white-space: nowrap;
}

/* Wrapper to align input/select + icon side by side */
.field-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-inner select,
.field-inner input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.field-inner input::placeholder {
  color: #222;
  font-weight: 500;
}

.chevron,
.icon-sm {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.5;
  pointer-events: none;
}

/* Button */
.btn--primary {
  background: #e2231a;
  color: #fff;
  /* border: none; */
  /* padding: 14px 28px; */
  border-radius: 10px;
  font-size: 15px;
  /* font-weight: 600; */
  /* cursor: pointer; */
  /* white-space: nowrap; */
  /* flex-shrink: 0; */
  /* margin-left: 12px; */
}

.btn--primary:hover {
  background: #c91d16;
}
.listing {
  padding: 48px 0 80px;
  background: #fbfaf6;
}
.listing__layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: start;
}
.filter {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.filter__card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(17,24,39,.06);
}
.filter__title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.filter__list { display: flex; flex-direction: column; gap: 10px; }
.filter__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background var(--transition);
}
.filter__item:hover { background: #fafafa; }
.filter__item .left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #111827;
}
.filter__item .icon { width: 18px; height: 18px; display: grid; place-items: center; color: var(--brand); }
.filter__item .count {
  width: 28px;
  height: 22px;
  border-radius: 50px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #7c2d12;
  background: #fff7ed;
  border: 1px solid #ffedd5;
}
.filter__range {
  display: grid;
  gap: 10px;
}
.filter__range .range-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.filter__range input[type="range"] { width: 100%; }
.filter__checks { display: grid; gap: 10px; }
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #111827;
  font-size: 14px;
}
.check input { accent-color: var(--brand); }
.check small { color: var(--text-muted); font-weight: 600; }

.results__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 6px 18px;
}
.results__top .meta {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
}
.sort {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.pill {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid #e7e7e7;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.pill:hover { transform: translateY(-1px); border-color: #ddd; }
.pill--active { background: var(--brand); color: #fff; border-color: var(--brand); }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pkg-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(17,24,39,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 60px rgba(17,24,39,.10);
}
.pkg-card__media {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.pkg-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.pkg-card__body p.top {
  display: flex;
  justify-content: space-between;
  /* gap: 12rem; */
  flex-direction: row;
}
.pkg-badge {
  position: relative;
  width: fit-content;
  height: fit-content;
  /* top: 12px;
  left: 12px; */
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: #111827;
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
}
.pkg-rating {
  position: relative;
  /* top: 12px;
  right: 12px; */
  padding: 6px 0;
  border-radius: 999px;
  /* background: rgba(17,24,39,.65); */
  color: #27272A;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pkg-rating i { color: #fbbf24 !important; }
.pkg-card__body { padding: 16px 16px 14px; flex-direction: column; display: flex ; gap: 6px;  }
.pkg-card__title {
  font-family: var(--font-inter);
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin: 8px 0 10px;
}
.pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pkg-tag {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}
.pkg-meta {
  display: inline-flex;
  align-items: end;
  justify-content: end;
  /* gap: 4px; */
  /* margin-top: 10px; */
  color: var(--text-muted);
  font-weight: 700;
  font-size: 12px;
  flex-direction: column;
}
.pkg-meta span { display: inline-flex; align-items: center; gap: 6px; }
.pkg-meta i { color: #94a3b8; }
.pkg-card__foot {
  padding: 12px 16px 16px;
  border-top: 1px solid #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pkg-price {
  display: grid;
  line-height: 1.2;
}
.pkg-price small { color: var(--text-muted); font-weight: 700; font-size: 12px; }
.pkg-price strong { color: #111827; font-size: 16px; }
.pkg-card__foot .btn { padding: 10px 14px; border-radius: 12px; }

/* BOOKING PAGE ───────────────────────────────────────*/
.booking-hero {
  position: relative;
  padding: 210px 0 100px;
  color: #fff;
  background: url("img/7402.jpg") center/cover no-repeat;
  overflow: hidden;
}
.booking-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 700px at 70% 10%, rgba(0,0,0,.18), rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.82) 100%);
}
.booking-hero .container { position: relative; z-index: 1; }
.booking-hero h1 {
  margin-top: 14px;
  font-family: var(--font-playful);
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.booking-hero h1 .accent { color: #ffd400; }
.booking-hero p {
  margin-top: 12px;
  max-width: 860px;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.75;
}

.booking {
  padding: 44px 0 80px;
  background: #fbfaf6;
}
.trip-strip {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(17,24,39,.06);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
  margin-top: -58px;
  position: relative;
  z-index: 2;
}
.trip-strip .item {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #f1f1f1;
  background: #fff;
}
.trip-strip .k {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9ca3af;
}
.trip-strip .v {
  margin-top: 6px;
  font-weight: 900;
  color: #111827;
  font-size: 14px;
}
.trip-strip .sub {
  margin-top: 2px;
  font-weight: 700;
  color: #9ca3af;
  font-size: 12px;
}
.trip-strip .pill-seat {
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid #f1f1f1;
  background: #fff;
}
.trip-strip .pill-seat strong { font-size: 20px; color: var(--brand); }
.trip-strip .pill-seat small { font-weight: 800; color: #9ca3af; }

.booking__layout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 22px;
  align-items: start;
}
.panel {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(17,24,39,.06);
  overflow: hidden;
}
.panel__head {
  padding: 14px 18px;
  background: #0b1a2b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.panel__head h3 { font-size: 14px; font-weight: 900; letter-spacing: .02em; }
.panel__head small { color: rgba(255,255,255,.75); font-weight: 700; }
.panel__body { padding: 16px 18px 18px; }

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 8px 0 14px;
  color: #6b7280;
  font-weight: 800;
  font-size: 12px;
}
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.dot--avail { background: #eaffea; border: 1px solid #34c759; }
.dot--sel { background: #e6f0ff; border: 1px solid #2563eb; }
.dot--booked { background: #f3f4f6; border: 1px solid #cbd5e1; }
.dot--ladies { background: #ffe4f2; border: 1px solid #ff3ea5; }

.seat-area {
  background: #fbfbfb;
  border: 1px solid #f0f0f0;
  border-radius: 16px;
  padding: 18px;
}
.seat-grid {
  display: grid;
  grid-template-columns: 40px repeat(9, 46px);
  gap: 12px;
  align-items: start;
  justify-content: center;
}
.wheel {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eee;
  display: grid;
  place-items: center;
  color: #9ca3af;
}
.aisle { grid-column: span 1; }
.seat-col {
  display: grid;
  grid-template-rows: repeat(4, 38px);
  gap: 10px;
  justify-items: center;
}
.seat:hover { transform: translateY(-1px); }
/* .seat--available { border-color: #34c759; background: #eaffea; } */
/* .seat--selected { border-color: #2563eb; background: #e6f0ff; }
.seat--booked { border-color: #cbd5e1; background: #f3f4f6; cursor: not-allowed; color: #94a3b8; }
.seat--ladies { border-color: #ff3ea5; background: #ffe4f2; } */

.tabs {
  margin-top: 18px;
  border-top: 1px solid #f2f2f2;
}
.tabs__head {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
}
.tab {
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 900;
  color: #475569;
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.tab.active { color: var(--brand); border-bottom-color: var(--brand); }
.tabs__body { padding: 16px 18px; }
.perk {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f4f4f4;
}
.perk:last-child { border-bottom: none; }
.perk .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  background: var(--brand);
  color: #fff;
}
.perk h4 { font-size: 13px; font-weight: 900; color: #111827; }
.perk p { font-size: 12px; color: #64748b; margin-top: 4px; }

.side {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sum {
  padding: 14px 16px;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}
.chip button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
}
.bill {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-weight: 800;
  font-size: 12px;
}
.bill .row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bill .total { margin-top: 4px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.18); color: #ffd400; font-size: 13px; }

.form {
  padding: 14px 16px 16px;
}
.form .grid { display: grid; gap: 10px; }
.form label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.inp, .sel {
  width: 100%;
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-inter);
  font-size: 13px;
  outline: none;
  background: #fff;
}
.inp:focus, .sel:focus { border-color: rgba(218, 37, 28, .55); box-shadow: 0 0 0 4px rgba(218, 37, 28, .08); }
.form .row2 { display: grid; grid-template-columns: 1fr 110px 110px; gap: 10px; }
.form .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
.btn--muted { background: #fff; border: 1px solid #eee; color: #111827; }

.panel--dark .panel__head { background: #0b1a2b; }
.panel--dark .panel__body { background: #0b1a2b; color: #fff; }

section.newsletter {
    background-color: #1C1C29;
    height: 360px;
    padding: 80px 160px;
    display: flex;
    /* margin-top: 170px; */
    /* overflow: hidden; */
}
section.newsletter h3 {
    color: #fff;
    font-family: var(--font-playful);
    font-size: 40px;
    line-height: 1.3;
}
section.newsletter p {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    margin-top: 12px;   
}
section.newsletter .newsletter__inner {
    display: flex;
    gap: 12px;
    flex-direction: column;
    justify-content: space-between;
}
section.newsletter div img {
    position: relative;
    bottom: 185px;
    width: 400px;
}
/* section.newsletter .newsletter__inner div {
  display: flex;
  gap: 12px;
  flex-direction: column;
} */
.newsletter__cta {
    display: flex;
    gap: 10px;
}

/* TRIP META */
.tour-details { background:#F9F6EF; margin-bottom: 170px; }
.trip-meta{background:#F9F6EF;border-bottom:1px solid #eee;padding:16px 40px;display:flex;gap:40px;align-items:flex-start}
.meta-item{display:flex;flex-direction:column;gap:2px}
.meta-label{font-size:10px;font-weight:600;letter-spacing:.06em;color:#aaa;text-transform:uppercase}
.meta-value{font-size:15px;font-weight:700;color:#222}
.meta-sub{font-size:11px;color:#999}
.meta-item--bus .meta-value{color:#e2231a}
.trip-meta .seats-badge{background:#e2231a;color:#fff;border-radius:8px;padding:8px 14px;text-align:center;margin-left:auto;flex-shrink:0}
.trip-meta .seats-badge .num{font-size:28px;font-weight:700;line-height:1}
.trip-meta .seats-badge .lbl{font-size:10px}
.main{display:grid;grid-template-columns:1fr 500px;gap:20px;padding:20px 40px;margin:0 auto}
.seat-panel{background:#fff;border-radius:10px;overflow:hidden;border:1px solid #eee}
.seat-panel__head{background:#2b2d42;color:#fff;padding:14px 20px;display:flex;justify-content:space-between;align-items:center}
.seat-panel__head h3{font-size:14px;font-weight:600}
.seat-panel__head p{font-size:11px;color:#aaa;margin-top:2px}
.seat-panel__head .avail{font-size:22px;font-weight:700;color:#e2c94e;text-align:right;line-height:1}
.seat-panel__head .avail span{display:block;font-size:10px;color:#aaa;font-weight:400}
 .legend{display:flex;gap:24px;padding:12px 20px;font-size:12px;color:#555; background: #FFFDF4; margin: 15px 12rem;border-radius: 8px; justify-content: space-between }
.legend-item{display:flex;align-items:center;gap:6px}
.seat-icon{width:16px;height:16px;border-radius:3px;border:1.5px solid}
.seat-icon--avail{border-color:#4caf50;background:#f0fbf1}
.seat-icon--sel{border-color:#1565c0;background:#e3f0ff}
.seat-icon--booked{border-color:#ccc;background:#f0f0f0}
.seat-icon--ladies{border-color:#d81b60;background:#fce4ec}
.travel-date-select{max-width:340px;margin-top:10px}
.seat-map{padding:16px 20px 20px;display:flex;gap:16px;align-items:flex-start;justify-content:space-between; max-width: 760px;margin: 0 auto;}
.seat-map__decks{width:100%}
.seat-map__legend-hint{font-size:11px;margin-bottom:10px}
.seat-matrix{display:flex;flex-direction:row;gap:14px}
.seat-matrix__row{flex-direction: column-reverse;display: flex;grid-auto-flow:row;gap:12px;align-items:center;justify-content:center;justify-items:center}
.seat-spacer{width:42px;height:42px}
.seat-col{display:flex;flex-direction:column;gap:8px;align-items:center}
.seat-col.aisle{width:24px;justify-content:center;padding-top:24px}
.steering{color:#bbb;font-size:18px;line-height:1}
.seat-row{display:flex;gap:8px}
.seat svg{width:45px;height:45px;opacity:0.5;}
.seat{cursor:pointer;transition:all .15s;position:relative;display:grid;place-items:center}
.seat--aisle-gap{margin-right:20px}
/* .seat::before{content:'';position:absolute;top:0;left:3px;right:3px;height:6px;border-radius:2px;background:rgba(0,0,0,0.06)} */
.seat:hover{border-color:#555;color:#555}
.seat--available svg{border-color:#4caf50;background:#f0fbf1;color:#4caf50}
.seat--selected svg{border-color:#1565c0;color:#1565c0}
.seat--selected svg path{fill:#1565c020;color:#1565c0}
.seat_number_text {
  position: absolute;
  bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  left: 20px;
  width: 20px;
  text-align: center;
}
.seat-matrix__row.seat-matrix__row--driver {
    margin: 5px 24px;
    align-items: flex-start;
}
.seat-gap {
  width:  45px;
  height:  45px;
}
.seat.seat--available .seat_number_text {
  color: #4caf50;
}
.seat.seat--selected .seat_number_text {
  color: #1565c0;
}
.seat--booked svg{border-color:#ccc;background:#f0f0f0;color:#B0B0B0;cursor:not-allowed}
.seat--ladies svg{border-color:#d81b60;background:#fce4ec;color:#d81b60}
.lower-upper{display:flex;flex-direction:row;gap:24px}
.deck-label{font-size:10px;color:#999;text-align:center;margin-bottom:6px;font-weight:500;letter-spacing:.04em}
 
/* TABS */
.tabs{margin-top:16px}
.tabs__nav{display:flex;border-bottom:2px solid #eee;background:#fff;border-radius:10px 10px 0 0;overflow-x:auto}
.tabs__nav button{padding:12px 18px;border:none;background:none;font-size:12px;font-weight:500;color:#888;cursor:pointer;white-space:nowrap;border-bottom:2px solid transparent;margin-bottom:-2px;font-family:inherit}
.tabs__nav button.active{color:#e2231a;border-bottom-color:#e2231a}
.tabs__body{background:#fff;border-radius:0 0 10px 10px;padding:16px 20px;border:1px solid #eee;border-top:none}
.is-hidden{display:none}
.list-compact{margin-left:18px;line-height:1.8}
.point-details{font-size:11px;line-height:1.4;margin-top:2px}
.hr-soft{border:0;border-top:1px solid #f0f0f0;margin:12px 0}
.discount-item--noborder{border-bottom:0}
.discount-text--full{width:100%}
.review-form__row{display:grid;grid-template-columns:1fr 120px;gap:10px}
.u-mt10{margin-top:10px}
.review-form__note{margin-left:10px;font-size:12px}
.adults-select{width:120px;padding:8px 10px}
.payment-timer{font-variant-numeric:tabular-nums}
.drop-note{font-size:13px;color:#b7b7b7;margin-bottom:8px}
.discount-item{display:flex;gap:14px;align-items:flex-start;padding:10px 0;border-bottom:1px solid #f5f5f5}
.discount-item:last-child{border-bottom:none}
.badge{font-size:10px;font-weight:700;padding:4px 8px;border-radius:5px;white-space:nowrap;letter-spacing:.03em}
.badge--journalist{background:#d32f2f;color:#fff}
.badge--senior{background:#e65100;color:#fff}
.badge--early{background:#2e7d32;color:#fff}
.badge--group{background:#1565c0;color:#fff}
.discount-text h5{font-size:13px;font-weight:600;color:#222;margin-bottom:2px}
.discount-text p{font-size:11px;color:#888;line-height:1.5}
 
/* RIGHT PANEL */
.right-col{display:flex;flex-direction:column;gap:14px}
.mobile-sheet-head{display:none}
.panel{background:#2b2d42;border-radius:10px;padding:18px;color:#fff}
.panel h4{font-size:13px;font-weight:600;color:#fff;margin-bottom:14px}
#selectedSeatsTags {
  display:inline-flex;align-items:center;gap:6px;
  flex-wrap: wrap;
}
.selected-seat-tag{display:inline-flex;align-items:center;gap:6px;background:#fff;color:#222;border-radius:6px;padding:4px 10px;font-size:13px;font-weight:600;margin-bottom:14px}
.selected-seat-tag button{background:none;border:none;color:#e2231a;font-size:14px;cursor:pointer;padding:0;line-height:1;font-weight:700}
.fare-row{display:flex;justify-content:space-between;align-items:center;padding:6px 0;font-size:13px;color:#ccc;border-bottom:1px solid rgba(255,255,255,0.08)}
.fare-row:last-child{border-bottom:none}
.fare-row.total{color:#fff;font-weight:600;font-size:14px;margin-top:4px}
.fare-row.total .amount{color:#e2c94e;font-size:16px;font-weight:700}
 /* PASSENGER FORM */
.passenger-panel{color:#2b2d42;border-radius:10px;padding:18px;background:#fff}
.passenger-panel h4{font-size:13px;font-weight:600;margin-bottom:4px}
.passenger-panel p{font-size:11px;color:#aaa;margin-bottom:14px}
.form-group{margin-bottom:10px}
.passenger-panel .form-group { margin-bottom:10px;}
.form-group label{font-size:11px;color:#aaa;display:block;margin-bottom:4px}
.form-group label span{color:#e2231a}
.form-row{display:grid;grid-template-columns:1fr 80px 100px;gap:8px}
.passenger-panel .form-row.form-row--passenger{    grid-template-columns: minmax(0,2fr) 90px 90px !important;row-gap:14px;column-gap:14px;padding:18px;border:1px solid rgba(43,45,66,0.10);border-radius:16px;margin-bottom:14px;background:#fff;box-shadow:0 10px 30px rgba(43,45,66,0.06)}
.passenger-row__head{grid-column:1 / -1;display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:0}
.passenger-row__headLeft{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.passenger-row__title{font-weight:800;font-size:14px}
.passenger-row__badge{margin-bottom:0;border-radius:999px;padding:6px 14px;font-size:12px}
.passenger-row__remove{flex:0 0 auto;width:auto;padding:6px 10px;color:#e2231a;border-color:transparent;background:transparent;font-weight:600}
.passenger-row__remove:hover{background:rgba(226,35,26,0.06)}
.passenger-row__modes{grid-column:1 / -1 !important;margin-bottom:0;width:100%}
.passenger-mode{display:grid;grid-template-columns:1fr 1fr;border:1px solid rgba(43,45,66,0.18);border-radius:12px;overflow:hidden;background:#fff;width:100%}
.passenger-mode__option{display:flex;align-items:center;gap:10px;cursor:pointer;color:#2b2d42;font-size:12px;font-weight:600;line-height:1.2;padding:16px 18px;margin:0;background:transparent}
.passenger-mode__option + .passenger-mode__option{border-left:1px solid rgba(43,45,66,0.18)}
.passenger-mode__option input{margin:0;transform:scale(1.1)}
.passenger-mode__option.is-active{background:rgba(21,101,192,0.06);color:#1565c0}
.passenger-mode__option input:disabled{opacity:.5}
.passenger-panel .form-row.form-row--passenger .passenger-field--name{grid-column:1}
.passenger-panel .form-row.form-row--passenger .passenger-field--age{grid-column:2;  max-width: 80px;}
.passenger-panel .form-row.form-row--passenger .passenger-field--gender{grid-column:3; max-width: 80px;}
.form-row--passenger .inp{ border: 1.5px solid #E4E4E7; background:#fafafa; height: 100%;}
@media (max-width: 768px){
  .passenger-panel .form-row.form-row--passenger{grid-template-columns:1fr !important}
  .passenger-mode{grid-template-columns:1fr}
  .passenger-mode__option + .passenger-mode__option{border-left:none;border-top:1px solid rgba(43,45,66,0.18)}
  .form-row--passenger .passenger-field--age{grid-column:1 / -1}
}
.inp{width:100%;background:rgba(255,255,255,0.07);border:1px solid #2b2d42;border-radius:7px;padding:12px 12px;font-size:13px;color:#2b2d42;font-family:inherit;outline:none;transition:border .15s}
.inp::placeholder{color:#666}
.inp:focus{border-color:rgba(255,255,255,0.4)}
.btn-row{display:flex;gap:10px;margin-top:14px}
.btn-book{flex:1;background:#e2231a;color:#fff;border:none;border-radius:8px;padding:12px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit;letter-spacing:.02em}
.btn-book:hover{background:#c91d16}
.btn-clear{flex:1;background:rgba(255,255,255,0.08);color:#e2231a;border:1px solid rgba(255,255,255,0.15);border-radius:8px;padding:12px;font-size:14px;font-weight:500;cursor:pointer;font-family:inherit}
.btn-clear:hover{background:rgba(255,255,255,0.13)}
.tour-filter-link{display:flex;gap:10px;align-items:center;color:inherit;text-decoration:none;width:100%}
.tours-empty{padding:24px;border:1px solid #eee;border-radius:16px;background:#fff}
.tours-empty__title{font-weight:800;font-size:18px;margin-bottom:6px}
.tours-empty__sub{color:#6b7280}
.tour-price-per{font-weight:700;color:#6b7280;font-size:12px}
.tours-pagination{margin-top:24px}
.tours-pagination span svg { max-height: 15px;}
.footer-logo-link{margin-bottom:1rem;display:flex}
.auth-notice{display:none;margin-top:8px;color:#ffd400;font-weight:600}
.auth-errors{display:none;background:#2a1212;color:#ffd4d4;border:1px solid #5a2a2a;padding:10px;border-radius:10px;margin-bottom:12px;font-size:13px}
.auth-errors__list{margin:0;padding-left:18px}
.form-group--mt10{margin-top:10px}
.auth-remember{position:static;transform:none;opacity:1;font-size:12px;display:flex;align-items:center;gap:8px}
.cta-btn--mt4{margin-top:4px}
.auth-verify-actions{margin-top:10px;display:flex;gap:10px;flex-wrap:wrap}
.auth-verify-actions__btn{width:auto;padding:10px 14px}
.auth-verify-actions__link{color:#fff;text-decoration:underline;align-self:center}
.card--r16{border-radius:16px !important}
.card-header--r16{border-top-left-radius:16px !important;border-top-right-radius:16px !important}
.seat-panel__controls .travel-date-select .inp{ background-color: #2b2d42; border-color: #ffd400; color:#fff;}
.seat-panel__controls .travel-date-select.form-group select:not(:placeholder-shown) + label { background: #2b2d42; color:#fff; }
.back-to-login {
  margin-top:18px;
  background:none;
  border:none;
  color:var(--text-light);
  font-size:.92rem;
  font-family:var(--font-body);
  cursor:pointer;
  transition:var(--transition);
}
.back-to-login:hover{
    color:var(--brand);
}
/* RESET PAGE */

.reset-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:#111827;
    font-family:var(--font-body);
}

/* CARD */

.reset-card{
    width:100%;
    max-width:440px;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    position:relative;

    box-shadow:
        0 30px 80px rgba(0,0,0,.28);
}

/* HEADER */

.reset-card__header{
    position:relative;
    padding:34px 34px 30px;
    background:
        linear-gradient(
            135deg,
            var(--brand),
            var(--brand-dark)
        );
    overflow:hidden;
}

/* GLOW CIRCLES */

.reset-card__header::before,
.reset-card__header::after{
    content:"";

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);
}

.reset-card__header::before{
    width:180px;
    height:180px;

    right:-70px;
    top:40px;
}

.reset-card__header::after{
    width:120px;
    height:120px;

    right:20px;
    bottom:-30px;
}

/* CLOSE */

.reset-close{
    position:absolute;

    top:18px;
    right:18px;

    width:34px;
    height:34px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.18);

    color:#fff;

    font-size:20px;

    cursor:pointer;

    z-index:2;
}

/* TITLE */

.reset-card__header h1{
    margin:0 0 10px;
    font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; line-height: 1.2;
}

/* SUBTITLE */

.reset-card__header p{
    margin:0;

    color:rgba(255,255,255,.88);

    font-size:1rem;
    line-height:1.6;

    max-width:320px;
}

/* BODY */

.reset-card__body{
    padding:30px 34px 34px;
    margin-top:0;
    position:relative;
    z-index:5;
}

/* ALERT */

.reset-alert{
    background:#2d0909;

    color:#ffd8d8;

    border-radius:14px;

    padding:16px 18px;

    font-size:.95rem;

    margin-bottom:22px;
}

/* FORM GROUP */

.reset-form-group{
    margin-bottom:20px;
}

/* LABEL */

.reset-form-group label{
    display:block;

    margin-bottom:8px;

    color:var(--brand);

    font-size:.92rem;
    font-weight:500;
}

/* INPUT */

.reset-form-group input{
    width:100%;
    height:56px;

    border-radius:12px;

    border:1.5px solid rgba(218,37,28,.65);

    background:#fff;

    padding:0 16px;

    font-size:1rem;

    outline:none;

    transition:var(--transition);

    box-sizing:border-box;
}

/* FOCUS */

.reset-form-group input:focus{
    border-color:var(--brand-dark);

    box-shadow:
        0 0 0 4px rgba(218,37,28,.10);
}

/* BUTTON */

.reset-submit-btn{
    width:100%;
    height:56px;

    border:none;
    border-radius:14px;

    background:
        linear-gradient(
            135deg,
            #df3a32,
            var(--brand-dark)
        );

    color:#fff;

    font-size:1rem;
    font-weight:700;

    cursor:pointer;

    transition:var(--transition);

    margin-top:10px;
}

/* HOVER */

.reset-submit-btn:hover{
    transform:translateY(-2px);

    box-shadow:
        0 12px 28px rgba(218,37,28,.25);
}

/* BACK */

.reset-back{
    display:inline-block;

    margin-top:24px;

    color:#98a0af;

    text-decoration:none;

    font-size:1rem;

    transition:var(--transition);
}

.reset-back:hover{
    color:var(--brand);
}

/* MOBILE */

@media (max-width:640px){

    .reset-card__header{
        padding:28px 24px 85px;
    }

    .reset-card__body{
        padding:24px;
    }

    .reset-card__header h1{
        font-size:2.1rem;
    }
}
/* RESPONSIVE  */
@media (max-width: 1150px) {
  /* .categories__grid { grid-template-columns: repeat(2, 1fr); } */
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1/-1; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .btn--primary, .open-btn { padding: 6px 14px; }
  .searchbar .btn--primary { padding: 14px; }
  .navbar__logo .logo-icon img {
    max-height: 35px;
  }
  .why-card {
    height: 300px;
    padding: 28px;
  }
  .logo-brand {
    font-size: 16px;
  }
  .logo-sub {
    font-size: 10px;
  }
  .slide-content h1 {
    font-size: 54px;
    line-height: 64px;
  }
  .why-card h3 {
    margin-bottom: 0px;
  }
  .why-card h3 {
    font-size: 18px;
  }
  .slide-content {
    max-width: 850px;
  }
  p.slide-ribbon {
    padding: 8px 18px;
    font-size: 14px;
  }
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .tour-card {
    min-height: 400px;
  }
  .tour-card__body h3 {
    font-size: 18px;
  }
  .section-head h2 {
    font-size: 35px;
  }
  .dep-card__price-wrap {
    flex-direction: column;
  }
  .why-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0px;
  }
  .step-card__icon {
    width: 50px;
    height: 50px;
  }
  .step-card h3 {
    font-family: var(--font-inter);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
  }
  .step-card p {
    font-size: 13px; 
  }
  .steps__grid {
    gap:20px;
  }
  .step-card {
    padding: 30px 18px;
    min-height: 230px;
  }
  .step-card:not(:last-child) {
    margin-right: 0px;
  }
  .stat-item {
    padding: 0 70px; 
  }
  section.newsletter {
    padding: 70px 0px;
  }
  section.newsletter div img {
    bottom: 170px;
    width: 450px;
  }
  .offer-card__img {
    width: 200px;
    height: 200px;
  }
  .offer-card__body {
    gap: 15px;
  }
  .offer-card h3 {
    font-size: 18px;
  }
  .offer-card p {
    font-size: 14px;
  }
  .offer-card__tag {
    margin-bottom: 0;
  }
  .section-head p {
    margin-top: 0;
  }
}
@media (max-width: 960px) {
  .steps__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .step-card__arrow { display: none; }
   /* .step-card:not(:last-child) { margin-right: 0; } */
  .agent-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta__image { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .listing__layout { grid-template-columns: 1fr; }
  .filter { position: relative; top: 0; }
  .booking__layout { grid-template-columns: 1fr; }
  .trip-strip { grid-template-columns: 1fr 1fr; margin-top: -46px; }
  .side { position: relative; top: 0; }
  /* Bus seat layout */
  .trip-meta{flex-wrap:wrap;gap:16px;padding:16px 20px}
  .seats-badge{margin-left:0}
  .main{grid-template-columns:1fr;padding:16px 20px}
  .legend{margin:15px 20px;flex-wrap:wrap;justify-content:center;gap:12px 18px}
  .seat-map{max-width:100%;justify-content:flex-start;overflow-x:auto;-webkit-overflow-scrolling:touch}
  .seat-map > *{flex:0 0 auto}
}
@media (max-width: 768px) {
  /* Keep CTA + Login visible on mobile */
  .navbar__actions a{ display: none; }
  a.open-btn.btn.btn--white.js-open-auth {
      color:var(--dark);
  }
  .navbar__actions { gap: 8px; }
  .navbar__actions .btn,
  .navbar__actions .open-btn { padding: 8px 10px; font-size: 12px; border-radius: 12px; }
  .navbar__actions .btn.btn--primary { padding: 8px 12px; }
  .topbar__left a:last-child { display: none; }
  .navbar__nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
  }
  .navbar__nav.open { display: flex; }
  .nav-mobile-actions { display: none; }
  .navbar__nav.open .nav-mobile-actions {
    display: grid;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .navbar__nav.open .nav-mobile-actions .btn { width: 100%; justify-content: center; }
  .hamburger { display: flex; }
  .navbar__inner { flex-wrap: wrap; position: relative;         justify-content: space-between; }
  .hero__stats { flex-direction: column; gap: 12px; padding: 20px; }
  .stat__divider { height: 50px;
        width: 1px; }
  .stat { padding: 0; align-items: center; }
  .categories__grid { grid-template-columns: 1fr 1fr; }
  .dep-card { flex-direction: column; }
  .dep-card__img { width: 100%; height: 160px; }
  .why-grid { grid-template-columns: 1fr; }
  .offers__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1/-1; }
  .footer__contact { grid-column: 1/-1; }
  .stats-bar__inner { flex-wrap: wrap; gap: 24px; }
  .stat-item { padding: 0 24px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .agent-form-card { padding: 28px 20px; }
  .slide-content h1 {
      font-size: 24px;
      line-height: 36px;
      font-weight: 600;
      font-family: var(--font-playful);
  }
  .step-card .step-card__num {
    position: relative;
  }
  .final-cta__text p {
    margin-right: 0;
  }
  .tour-card {
    max-height: 250px;
    min-height: unset;
  }
  .tour-card__body h3 {
    font-size: 18px;
  }
  .section-head h2,
  .agent-section__left h2,
  .final-cta__text h2, 
  .booking-hero h1, 
  .listing-hero h1{
    font-size: 20px;
    font-weight: 700 !important; 
  }
  .tour-card__meta, .tour-card__price {
    font-size: 16px;
    /* margin-bottom: ; */
  }
  .tour-card__label {
    margin-bottom:3px;
  }
   .agent-section__left h2 {
    margin-bottom: 12px;
  }
  .testimonials .section-head h2 {
    margin: 0 auto;
  }
  .offer-card {
    flex-direction: column;
  }
  .offer-card__img {
    width: 100%;
  }
  .dep-card__img {
    height: 260px;
    padding: 0;
  }
  .dep-card__body {
    padding: 10px 24px;
    gap: 3px;
  }
  .dep-card__footer {
    padding: 0 20px 15px;
  }
  .dep-card__img img {
    max-height: 256px;
    border-radius: unset;
  }
  .offer-card h3 {
    font-size: 18px;
  }
  .offer-card p {
    font-size: 15px;
  }
  .section-head p, .agent-section__sub,
  .final-cta__text p{
    font-size: 14px;
    line-height: 24px;
  }
  .agent-benefits {
    grid-template-rows: repeat(4, auto);
    grid-template-columns: repeat(1, 1fr);
  }
  .slide-content button {
    padding: 12px 16px;
    font-size: 15px;
  }
  .stat__label {
    font-size: 12px;
  }
  .slide-content p:not(.slide-ribbon) {
    font-size: 15px;
  }
  .slide-content {
    gap: 30px;
    padding: 20px;
    left:0; 
      right:0;
  }
  p.slide-ribbon {
    font-size: 14px;
    padding: 4px 15px;
  }
   .departing .section-head, 
   .categories .section-head{ 
    flex-direction: row; 
  }
  .departing .section-head div,
  .categories .section-head div{ 
    flex:7;
  }
  .departing .section-head a,
  .categories .section-head a{ 
    flex:3;
    justify-content: center;
  }
  .departing .btn {
    padding: 6px 12px;
  }
  .btn--large {
      font-size: 12px;
      font-weight: 500;
  }
  .dep-card__price-wrap {
    gap: 0 95px;
    flex-direction: row;
  } 
  .dep-card__price{
    display: inline-flex;
    align-items: center;
    gap: 2px;
  }
  .tour-card__body {
    /* height: 320px; */
    padding: 30px 28px  18px;
  }
  .tour-card__category {
    padding: 2px 12px;
  }
  .listing-hero { padding: 190px 0 96px; }
  /* .listing-hero h1 { font-size: 42px; } */
  .searchbar { grid-template-columns: 1fr; }
  .field--divider {
    padding-left: unset;
    border-left: unset;
  }
  .deals-grid {
      grid-template-columns: repeat(1, 1fr);

  }
  /* section.newsletter {
    padding: 8px 16px;
  } */
  section.newsletter h3 {
    font-size: 24px;
  }
  section.newsletter .newsletter__inner {
    justify-content: space-evenly;
  }
  .newsletter__cta {
      gap: 0 10px;
      /* justify-content: center; */
  }
  .navbar__inner {
    flex-wrap: nowrap !important;
  }
  .nav-mobile-actions { display : none}
  .btn--lg {
    padding: 10px 12px;
    font-size: 14px;
  }
  .searchbar .field::after { display: none; }
  .searchbar .btn--primary { margin-top: 10px; margin-left: 0;}
  .results__top { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sort { justify-content: flex-start; }
  .pkg-grid { grid-template-columns: 1fr; }
  .booking-hero { padding: 190px 0 86px; }
  /* .booking-hero h1 { font-size: 40px; } */
  .trip-strip { grid-template-columns: 1fr; }
  .tabs__head { grid-template-columns: 1fr 1fr; }
  .seat-grid { grid-template-columns: 40px repeat(6, 46px); overflow-x: auto; padding-bottom: 10px; }

  /* Bus seat layout */
  .main{padding:0;}
  .trip-meta{padding:14px 16px}
  .seat-map{padding:14px 12px 16px}
  #bookingDetailsSheet .adults-select{
    color: #ffffff;
  }
  .seat-panel__head {
    flex-direction: column;
  }
  .seat-matrix__row {
      /*grid-auto-flow: row;*/
      flex-direction: row;
        display: flex;
  }
  .seat.seat--driver img{
      transform: rotate(90deg);
  }
 .seat-matrix{
    flex-direction:column;
    justify-content :center
  }
  .seat svg {
    transform: rotate(270deg);
  }
  .newsletter__image { display: none;}
  /* Smaller seats (10–15%) */
  .seat-row svg { width: 30px; height: 30px; }
  .seat_number_text { bottom:20px; left: 13px; font-size: 10px; }
  .seat--aisle-gap { margin-right: 0;}
  /* Mobile bottom bar + collapsible booking sheet */
  body.booking-sheet-open { overflow: hidden; }
  .right-col--sheet { display: block; }
  .main { display: block; }
  .right-col--sheet {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 72px;
    top: 12vh;
    z-index: 9999;
    max-width: none;
    transform: translateY(120%);
    transition: transform .22s ease;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: transparent;
    padding-bottom: 12px;
  }
  .right-col--sheet.open { transform: translateY(0); }
  .mobile-sheet-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(43,45,66,.98);
    color: #fff;
    margin-bottom: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
  }
  .mobile-sheet-title { font-weight: 700; font-size: 13px; line-height: 1.2; }
  .mobile-sheet-title small { display:block; margin-top:4px; color: rgba(255,255,255,.75); font-weight: 500; font-size: 11px; }
  .mobile-sheet-close {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }
  .mobile-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,.38);
    backdrop-filter: blur(1px);
  }
  .mobile-bookbar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    border: 1px solid #eee;
    box-shadow: 0 12px 36px rgba(17,24,39,.14);
  }
  .mobile-bookbar__meta { font-size: 12px; color: #334155; font-weight: 700; }
  .mobile-bookbar__meta .k { color: #111827; font-weight: 800; }
  .mobile-bookbar__meta .sep { margin: 0 6px; color: #94a3b8; }
  .mobile-bookbar__btn,
  .mobile-bookbar__pay {
    border: none;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
  }
  .mobile-bookbar__btn { background: #f1f5f9; color: #0f172a; }
  .mobile-bookbar__pay { background: #e2231a; color: #fff; }
  .mobile-bookbar__pay:active { transform: translateY(1px); }
}
@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .final-cta__buttons { flex-direction: row; }
  /* .topbar { display: none; } */
}
