/* ============================================
   SHABHI TRAVELS PATNA — CSS STYLESHEET
   File: shabhi_travels_CSS.css
   ============================================ */
 
/* ===== CSS VARIABLES / DESIGN TOKENS ===== */
:root {
  --color-brand-primary: #232425;
  --color-brand-secondary: #0F7FFF;
  --color-bg-page: #FFFFFF;
  --color-bg-surface: #FAFAFA;
  --color-bg-subtle: #F5F5F5;
  --color-text-primary: #232425;
  --color-text-secondary: #606366;
  --color-text-tertiary: #909499;
  --color-text-disabled: #C4C7CC;
  --color-text-link: #0F7FFF;
  --color-text-on-brand: #FFFFFF;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;
  --color-border-default: #EAEAEA;
  --color-border-strong: #D0D3D8;
  --color-border-subtle: #F2F2F2;
  --color-border-brand: #0F7FFF;
  --color-border-error: #EF4444;
  --color-border-success: #10B981;
 
  --space-4: 4px; --space-8: 8px; --space-12: 12px; --space-16: 16px;
  --space-20: 20px; --space-24: 24px; --space-32: 32px; --space-48: 48px;
 
  --text-h1: 36px; --text-h2: 28px; --text-h3: 22px; --text-h4: 18px;
  --text-body: 16px; --text-small: 14px; --text-caption: 12px;
 
  --radius-4: 4px; --radius-8: 8px; --radius-12: 12px;
  --border-width-1: 1px; --border-width-2: 2px;
 
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}
 
/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --color-brand-primary: #E8E9EA;
    --color-brand-secondary: #4a9eff;
    --color-bg-page: #1A1B1C;
    --color-bg-surface: #232425;
    --color-bg-subtle: #2A2B2C;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B8BBBF;
    --color-text-tertiary: #868B92;
    --color-text-disabled: #4A4C4F;
    --color-text-link: #8bb8ff;
    --color-text-on-brand: #1A1B1C;
    --color-border-default: #3A3B3C;
    --color-border-strong: #4A4C4F;
    --color-border-subtle: #2E2F30;
    --color-border-brand: #4a9eff;
    --color-border-error: #f87171;
    --color-border-success: #34d399;
  }
}
 
/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter',
               'Helvetica Neue', Arial, system-ui, sans-serif;
  background: transparent;
}
 
/* ===== WRAPPER ===== */
.st-wrap {
  width: 100%;
  max-width: 758px;
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  border-radius: var(--radius-12);
  overflow: hidden;
  border: 1px solid var(--color-border-default);
}
 
/* ===== LOGO IMAGE ===== */
.st-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
 
/* ===== NAVIGATION ===== */
.st-nav {
  background: var(--color-bg-surface);
  border-bottom: 1px solid var(--color-border-default);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(11,29,58,0.08);
  transition: box-shadow 0.3s;
}
.st-nav.scrolled { box-shadow: 0 4px 20px rgba(11,29,58,0.18); }
.st-nav-right { display: flex; align-items: center; gap: 10px; }
 
/* Desktop Menu */
.st-menu { display: flex; gap: 4px; align-items: center; }
.st-menu .nav-link {
  font-size: 13px; color: var(--color-text-secondary);
  text-decoration: none; font-weight: 600; cursor: pointer;
  padding: 7px 12px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: all 0.2s; white-space: nowrap; border-bottom: none;
}
.st-menu .nav-link:hover { background: rgba(212,175,55,0.1); color: #b8902a; }
.st-menu .nav-link.active { background: linear-gradient(135deg,#0b1d3a,#1a3567); color: #f5c518; }
.nav-icon { font-size: 14px; }
 
/* Call Button */
.st-cta {
  background: linear-gradient(135deg, #d4af37, #b8902a);
  color: #0b1d3a; font-weight: 700; font-size: 12px;
  border: 0; padding: 8px 14px; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
}
.st-cta:hover { opacity: 0.9; transform: translateY(-1px); }
 
/* Hamburger */
.st-hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 36px; height: 36px;
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border-default);
  border-radius: 8px; cursor: pointer; padding: 6px;
}
.st-hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--color-text-primary); border-radius: 2px; transition: all 0.3s;
}
.st-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.st-hamburger.open span:nth-child(2) { opacity: 0; }
.st-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* Mobile Overlay */
.st-mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(11,29,58,0.5); z-index: 1000; backdrop-filter: blur(2px);
}
.st-mobile-overlay.open { display: block; }
 
/* Mobile Drawer */
.st-mobile-drawer {
  position: fixed; top: 0; right: -280px;
  width: 270px; height: 100%;
  background: var(--color-bg-surface);
  z-index: 1001; box-shadow: -8px 0 30px rgba(11,29,58,0.25);
  transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.st-mobile-drawer.open { right: 0; }
.st-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--color-border-default);
  background: linear-gradient(135deg, #ebebeb, #717677);
}

.st-close-btn {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 32px; height: 32px; border-radius: 8px;
  cursor: pointer; font-size: 14px; font-weight: 700; display: grid; place-items: center;
}
.st-drawer-links {
  display: flex; flex-direction: column; padding: 14px 12px; gap: 4px; flex: 1;
}
.st-drawer-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--color-text-primary); text-decoration: none; cursor: pointer;
  transition: all 0.15s; border: 1px solid transparent;
}
.st-drawer-links a span { font-size: 18px; }
.st-drawer-links a:hover {
  background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.3); color: #b8902a;
}
.st-drawer-cta {
  margin: 0 16px 20px;
  background: linear-gradient(135deg, #d4af37, #b8902a);
  color: #0b1d3a; border: 0; border-radius: 12px;
  padding: 14px; font-size: 13px; font-weight: 800; cursor: pointer;
}
 
/* Responsive */
@media (max-width: 640px) {
  .st-menu { display: none; }
  .st-hamburger { display: flex; }
  .st-cta { display: none; }
}
 
/* ===== HERO ===== */
.st-hero {
  position: relative;
  background: linear-gradient(135deg, #0b1d3a 0%, #2d3976 60%, #4e646f78 100%);
  color: #fff;
  padding: 36px 20px 28px;
  overflow: hidden;
}
.st-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(212,175,55,0.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(15,127,255,0.18), transparent 50%);
  pointer-events: none;
}
.st-hero-inner { position: relative; }
.st-eyebrow {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  color: #f5c518;
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: 1px;
  border: 1px solid rgba(212,175,55,0.4);
}
.st-hero h1 { font-size: 32px; line-height: 1.15; margin-top: 12px; font-weight: 800; }
.st-hero h1 .gold { color: #f5c518; }
.st-hero p.sub { margin-top: 10px; color: #d6dceb; font-size: 14px; max-width: 560px; }
.st-hero-stats { display: flex; gap: 22px; margin-top: 18px; flex-wrap: wrap; }
.st-hero-stats .stat .num { font-size: 20px; font-weight: 800; color: #f5c518; }
.st-hero-stats .stat .lbl { font-size: 11px; color: #cfd8e3; }
 
/* ===== BOOKING CARD ===== */
.st-book {
  margin: 20px 20px 28px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(11,29,58,0.18);
  padding: 18px;
  position: relative; z-index: 2;
}
.st-tabs {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px;
  background: var(--color-bg-subtle);
  padding: 4px; border-radius: 10px;
}
.st-tab {
  flex: 1; min-width: 90px;
  padding: 9px 10px;
  background: transparent; border: 0; cursor: pointer;
  font-size: 12px; font-weight: 600;
  color: var(--color-text-secondary);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.st-tab.active {
  background: #0b1d3a; color: #f5c518;
  box-shadow: 0 4px 10px rgba(11,29,58,0.25);
}
.st-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (min-width: 640px) {
  .st-form-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.st-field { display: flex; flex-direction: column; gap: 4px; }
.st-field label {
  font-size: 11px; font-weight: 700; color: var(--color-text-secondary);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.st-field input, .st-field select {
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-8);
  padding: 10px 12px; font-size: 13px;
  background: var(--color-bg-page);
  color: var(--color-text-primary);
  outline: none; transition: border 0.15s;
}
.st-field input:focus, .st-field select:focus { border-color: #d4af37; }
.st-search {
  margin-top: 14px; width: 100%;
  background: linear-gradient(135deg, #0b1d3a, #1a3567);
  color: #fff; border: 0;
  padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: 0.3px;
}
.st-search:hover { background: linear-gradient(135deg, #102a52, #2d4a7c); }
.st-search .arrow { color: #f5c518; }
 
/* ===== SECTIONS ===== */
.st-section { padding: 28px 20px; }
.st-section h2 { font-size: 22px; font-weight: 800; margin-bottom: 4px; text-align: center; }
.st-section .sub2 { text-align: center; font-size: 13px; margin-bottom: 20px; }
.st-section .sub2 .accent { color: #d4af37; font-weight: 700; }
 
/* ===== CAR CATEGORY PILLS ===== */
.st-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px; margin-bottom: 22px;
}
.st-cat-pill {
  border: 1px solid var(--color-border-default);
  background: var(--color-bg-surface);
  border-radius: 12px; padding: 14px 8px;
  text-align: center; cursor: pointer; transition: all 0.2s;
}
.st-cat-pill.active {
  border-color: #d4af37;
  background: linear-gradient(135deg, #fff9e6, #fff3c4);
  box-shadow: 0 6px 16px rgba(212,175,55,0.25);
}
.st-cat-pill .ico { font-size: 22px; }
.st-cat-pill .ttl { font-size: 13px; font-weight: 700; margin-top: 4px; color: var(--color-text-primary); }
.st-cat-pill .desc { font-size: 11px; color: var(--color-text-secondary); margin-top: 2px; }
.st-cat-pill.active .desc,
.st-cat-pill.active .ttl { color: #0b1d3a; }
 
/* ===== CAR CARDS ===== */
.st-cars {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 14px;
}
@media (min-width: 560px) { .st-cars { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 760px) { .st-cars { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.st-car {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  border-radius: 14px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.st-car:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(11,29,58,0.15); }
.st-car .img {
  height: 130px;
  background: linear-gradient(135deg, #eef2f8, #dbe3ef);
  position: relative; display: grid; place-items: center; overflow: hidden;
}
.st-car .img img { width: 100%; height: 100%; object-fit: contain; padding: 1px; }
.st-car .badge {
  position: absolute; top: 8px; left: 8px;
  background: #0b1d3a; color: #f5c518;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
}
.st-car .body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.st-car h3 { font-size: 15px; font-weight: 700; }
.st-car .meta {
  font-size: 11px; color: var(--color-text-secondary);
  margin-top: 2px; display: flex; gap: 10px; flex-wrap: wrap;
}
.st-car .meta span { display: inline-flex; align-items: center; gap: 3px; }
.st-car .feats { display: flex; flex-wrap: wrap; gap: 4px; margin: 8px 0; }
.st-car .feats span {
  font-size: 10px;
  background: var(--color-bg-subtle);
  color: var(--color-text-secondary);
  padding: 2px 7px; border-radius: 999px;
}
.st-car .price-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 10px;
  border-top: 1px dashed var(--color-border-default);
}
.st-car .price { font-size: 18px; font-weight: 800; color: #0b1d3a; }
.st-car .price .unit { font-size: 11px; font-weight: 500; color: var(--color-text-secondary); }
.st-car .book-btn {
  background: linear-gradient(135deg, #d4af37, #b8902a);
  color: #0b1d3a; border: 0;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; cursor: pointer;
}
 
/* ===== SERVICES ===== */
.st-services { background: var(--color-bg-subtle); border-radius: 16px; padding: 22px 16px; }
.st-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (min-width: 600px) { .st-svc-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.st-svc {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  border-radius: 12px; padding: 16px 12px; text-align: center;
}
.st-svc .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #fff9e6, #f5e6a8);
  color: #b8902a;
  display: grid; place-items: center;
  margin: 0 auto 8px; font-size: 22px;
}
.st-svc h4 { font-size: 13px; font-weight: 700; }
.st-svc p { font-size: 11px; color: var(--color-text-secondary); margin-top: 4px; line-height: 1.4; }
 
/* ===== WHY US ===== */
.st-why {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
@media (min-width: 600px) { .st-why { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.st-why-item {
  text-align: center; padding: 14px 8px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  border-radius: 12px;
}
.st-why-item .num {
  font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, #d4af37, #b8902a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.st-why-item .lbl { font-size: 11px; color: var(--color-text-secondary); margin-top: 2px; }
 
/* ===== TESTIMONIALS / TOUR CARDS ===== */
.st-test-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 12px;
}
@media (min-width: 600px) { .st-test-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.st-test {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border-default);
  border-radius: 12px; padding: 14px;
}
.st-test .stars { color: #f5c518; font-size: 13px; }
.st-test p { font-size: 12px; color: var(--color-text-secondary); margin-top: 6px; line-height: 1.5; }
.st-test .who { font-size: 12px; font-weight: 700; margin-top: 8px; color: var(--color-text-primary); }
.st-test .who small { font-weight: 400; color: var(--color-text-tertiary); }
 
/* ===== CTA STRIP ===== */
.st-cta-strip {
  background: linear-gradient(135deg, #0b1d3a, #1a3567);
  color: #fff; padding: 24px 20px;
  border-radius: 16px; margin: 0 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
}
.st-cta-strip h3 { font-size: 18px; font-weight: 800; }
.st-cta-strip p { font-size: 12px; color: #cfd8e3; margin-top: 3px; }
.st-cta-strip .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.st-cta-strip .b1 {
  background: #f5c518; color: #0b1d3a; font-weight: 800;
  border: 0; padding: 10px 16px; border-radius: 999px; cursor: pointer; font-size: 13px;
}
.st-cta-strip .b2 {
  background: rgba(255,255,255,0.12); color: #fff; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 16px; border-radius: 999px; cursor: pointer; font-size: 13px;
}
 
/* ===== FOOTER ===== */
.st-footer { background: #0b1d3a; color: #cfd8e3; padding: 24px 20px 16px; font-size: 12px; border-radius: 16px; }
.st-foot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
@media (min-width: 600px) { .st-foot-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.st-foot-grid h5 { color: #f5c518; font-size: 13px; font-weight: 700; margin-bottom: 8px; letter-spacing: 0.4px; }
.st-foot-grid a,
.st-foot-grid p { color: #cfd8e3; text-decoration: none; display: block; padding: 3px 0; }
.st-foot-grid a:hover { color: #f5c518; }
.st-foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 18px; padding-top: 12px;
  text-align: center; font-size: 11px; color: #8a97ac;
}
 
/* ===== TOAST NOTIFICATION ===== */
.st-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0b1d3a; color: #f5c518;
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  opacity: 0; transition: all 0.3s; pointer-events: none; z-index: 100;
  border: 1px solid rgba(245,197,24,0.4);
}
.st-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }


.st-submit-box{
    text-align:center;
    margin-top:20px;
}

.btn-submit{
    padding:12px 35px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
}







/* ==========================
   FLOATING WHATSAPP
========================== */
.float-whatsapp{
    position:fixed;
    right:20px;
    bottom:90px;

    width:60px;
    height:60px;

    background:#25D366;
    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;
    font-size:30px;

    z-index:9999;

    box-shadow:0 5px 15px rgba(0,0,0,.25);

    transition:.3s;
}

.float-whatsapp:hover{
    transform:scale(1.1);
}

/* ==========================
   FLOATING CALL
========================== */
.float-call{
    position:fixed;
    right:20px;
    bottom:20px;

    width:60px;
    height:60px;

    background:#ffb300;
    color:#fff;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;
    font-size:28px;

    z-index:9999;

    box-shadow:0 5px 15px rgba(0,0,0,.25);

    transition:.3s;
}

.float-call:hover{
    transform:scale(1.1);
}

/* Mobile */
@media(max-width:768px){

    .float-whatsapp,
    .float-call{
        width:55px;
        height:55px;
    }

    .float-whatsapp{
        bottom:85px;
    }
}