@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,500;1,400&family=JetBrains+Mono:wght@400;500&family=Poppins:wght@400;500;600&display=swap');

  :root{
    --ink-black: #0B0B0C;
    --ink-black-2: #131315;
    --paper: #EDE8E1;
    --paper-dim: #B8B2A8;
    --copper: #C97A3D;
    --copper-bright: #E39456;
    --steel: #4A4E58;
    --line: rgba(237,232,225,0.14);
    --blue: #c9b5a5;
    --blue-dark: #005fd1;
    --teal: #1abc9c;
    --red: #e74c3c;
  }

  *{ margin:0; padding:0; box-sizing:border-box; }

  html,body{
    background: var(--ink-black);
    color: var(--copper);
    font-family: 'Source Serif 4', serif;
    width: 100%;
    overflow-x: hidden;
  }

  a{ color: inherit; text-decoration: none; }

  .mono{
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
  }

  /* ---------- NAVBAR ---------- */
  .navbar{
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    background: rgba(11,11,12,0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }

  .brand{
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .brand-mark{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    position: relative;
    background:
      radial-gradient(circle at center, var(--ink-black) 0 3px, transparent 3px),
      repeating-radial-gradient(circle at center, var(--copper) 0 1px, transparent 1px 4px);
    border: 1px solid var(--copper);
    flex-shrink: 0;
  }

  .brand-name{
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--paper);
  }

  .brand-name span{ color: var(--copper); }

  .nav-links{
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .nav-links a{
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--paper-dim);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.25s ease;
  }

  .nav-links a::after{
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0%;
    height: 1px;
    background: var(--copper);
    transition: width 0.25s ease;
  }

  .nav-links a:hover{ color: var(--paper); }
  .nav-links a:hover::after{ width: 100%; }

  .nav-cta{
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ink-black);
    background: var(--copper);
    padding: 11px 22px;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
  }

  .nav-cta:hover{
    background: var(--copper-bright);
    transform: translateY(-1px);
  }

  .nav-cta-mobile{
    display: none;
  }

  /* Mobile menu toggle (hamburger) */
  .nav-toggle{
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 60;
  }

  .nav-toggle span{
    display: block;
    width: 20px;
    height: 2px;
    background: var(--paper);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
  }

  .nav-toggle.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2){ opacity: 0; }
  .nav-toggle.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  /* ---------- HERO ---------- */
  .hero{
    position: relative;
    min-height: calc(100vh - 79px);
    overflow: hidden;
  }

  .hero-video{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
  }

  .hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 2;
  }

  .road-lines{
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  .road-lines svg{ width: 100%; height: 100%; }

  .dash-line{
    stroke: rgba(237,232,225,0.3);
    stroke-width: 0.6;
    stroke-dasharray: 8 6;
    animation: dashmove 3s linear infinite;
  }

  @keyframes dashmove{ to{ stroke-dashoffset: -64; } }
  @media (prefers-reduced-motion: reduce){ .dash-line{ animation: none; } .record{ animation: none; } }

  /* two-column row: hero copy + booking card */
  .hero-content{
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
    min-height: calc(100vh - 79px);
    padding: 0 48px;
  }

  .hero-copy h1{
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 24px;
  }

  .hero-copy h1 em{
    font-style: normal;
    color: #633c1e;
  }

  .eyebrow{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #ff6f00;
    margin-bottom: 24px;
  }

  .eyebrow::before{
    content: '';
    width: 28px;
    height: 1px;
    background: var(--copper);
  }

  .hero-copy p{
    font-family: 'Source Serif 4', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    max-width: 480px;
    margin-bottom: 8px;
  }

  .trust-row{
    display: flex;
    gap: 36px;
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    max-width: 480px;
  }

  .trust-item .mono{
    display: block;
    font-size: 11px;
    color: var(--paper-dim);
    margin-bottom: 6px;
  }

  .trust-item .val{
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--paper);
  }

  /* Call / WhatsApp quick actions in hero */
  .quick-actions{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
  }

  .quick-actions a{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  }

  .quick-actions a svg{
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .qa-call{
    background: var(--copper);
    color: var(--ink-black);
  }

  .qa-call:hover{
    background: var(--copper-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(201,122,61,.35);
  }

  .qa-whatsapp{
    background: #25D366;
    color: #06210f;
  }

  .qa-whatsapp:hover{
    background: #2fe873;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37,211,102,.35);
  }

  /* Floating call button (appears after scrolling past hero) */
  .float-call{
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--copper);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0,0,0,.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(.85);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .25s ease;
  }

  .float-call.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .float-call:hover{
    background: var(--copper-bright);
  }

  .float-call svg{
    width: 26px;
    height: 26px;
    stroke: var(--ink-black);
  }

  .float-call .ping{
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--copper);
    animation: pingring 2s ease-out infinite;
  }

  @keyframes pingring{
    0%{ transform: scale(1); opacity: .6; }
    100%{ transform: scale(1.6); opacity: 0; }
  }

  @media (max-width: 560px){
    .float-call{
      right: 18px;
      bottom: 18px;
      width: 52px;
      height: 52px;
    }
    .quick-actions{ flex-wrap: wrap; }
  }

  /* ---------- BOOKING CARD ---------- */
  .booking-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.booking-card{
    width: 100%;
    max-width: 460px;
    background: rgba(255,255,255,0.15);   /* lower opacity = more transparent */
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    font-family: 'Poppins', sans-serif;
}

  /* Trip Switch */
  .trip-switch{
    position: relative;
    display: flex;
    width: 240px;
    height: 50px;
    background: #c97a3d;
    border-radius: 50px;
    margin: 0 auto 30px;
    overflow: hidden;
  }

  .trip-switch button{
    flex: 1;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    transition: .3s;
    font-family: 'Poppins', sans-serif;
  }

  .trip-switch button.active{ color: #fff; }

  .trip-switch .thumb{
    position: absolute;
    left: 3px;
    top: 3px;
    width: calc(50% - 3px);
    height: 44px;
    background: var(--blue);
    border-radius: 40px;
    transition: .35s ease;
  }

  .trip-switch.round .thumb{ left: calc(50% + 1px); }

  /* Location Section */
  .loc-group{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 25px;
  }

  .loc-field{
    display: flex;
    align-items: center;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    transition: .3s;
  }

  .loc-field:hover,
  .loc-field:focus-within{ border-color: var(--blue); }

  .loc-field input{
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 15px;
    color: #333;
    font-family: 'Poppins', sans-serif;
  }

  .loc-connector{
    position: absolute;
    left: 20px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: #ddd;
  }

  .loc-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 15px;
    z-index: 1;
  }

  .pickup{ background: var(--teal); }
  .drop{ background: var(--red); }

  .swap-btn{
    position: absolute;
    right: 15px;
    top: 30%;
  /*transform: translateY(-50%);*/

    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #c97a3d;
    cursor: pointer;
    box-shadow: 0 5px 12px rgba(0,119,255,.3);
    transition: .3s;
  }

  .swap-btn svg{
    width: 22px;
    height: 22px;
    stroke: #fff;
  }

  .swap-btn:hover{ transform: translateY(-50%) rotate(180deg); }

  /* Date Fields */
  .date-row.split{
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }

  .date-field{ flex: 1; }

  .date-field span{
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    color:#000000;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
  }

  .date-field input{
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
  }

  .date-field input:focus{ border-color: var(--blue); }

  .return-field{ margin-bottom: 25px; }
  .return-field.hidden{ display: none; }

  /* Search Button */
  .search-btn{
    width: 100%;
    padding: 15px;
    border: none;
    background: #c97a3d;
    color:#fffcfa;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: .3s;
    font-family: 'Poppins', sans-serif;
  }

  .search-btn:hover{ background: var(--blue-dark); }

  /* Footer */
  .card-foot{
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #000000;
    font-family: 'Poppins', sans-serif;
  }

  .card-foot .hl{ color: var(--teal); font-weight: 600; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px){
    .navbar{ padding: 18px 24px; }

    .nav-toggle{ display: flex; }

    .nav-links{
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      background: rgba(11,11,12,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height .35s ease, opacity .25s ease;
    }

    .nav-links.open{
      max-height: 400px;
      opacity: 1;
    }

    .nav-links a{
      width: 100%;
      padding: 16px 24px;
      border-bottom: 1px solid var(--line);
    }

    .nav-links a::after{ display: none; }

    .nav-cta{
      display: none;
    }

    .nav-links .nav-cta-mobile{
      display: block;
      margin: 16px 24px 20px;
      text-align: center;
      padding: 12px 22px;
    }

    .hero-content{
      grid-template-columns: 1fr;
      padding: 40px 24px;
      min-height: unset;
    }
    .booking-wrap{ padding-bottom: 40px; }
    .trust-row{ flex-wrap: wrap; row-gap: 20px; }
  }

  @media (max-width: 768px){
    .booking-card{ padding: 20px; }
    .trip-switch{ width: 100%; }
    .date-row.split{ flex-direction: column; }
    .swap-btn{ right: 10px; }
    .card-foot{ flex-direction: column; gap: 8px; text-align: center; }
  }
  .contact-group{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }
 
  .contact-field{
    display: flex;
    align-items: center;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    transition: .3s;
  }
 
  .contact-field:hover,
  .contact-field:focus-within{ border-color: var(--blue); }
 
  .contact-field svg{
    width: 18px;
    height: 18px;
    stroke: #999;
    margin-right: 12px;
    flex-shrink: 0;
    transition: stroke .3s;
  }
 
  .contact-field:focus-within svg{ stroke: var(--blue); }
 
  .contact-field input{
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 15px;
    color: #333;
    font-family: 'Poppins', sans-serif;
  }

  /* Car model choice box (custom dropdown) */
  .car-choice{
    position: relative;
  }

  .car-choice-trigger{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 11px 15px;
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease;
    font-family: 'Poppins', sans-serif;
    text-align: left;
  }

  .car-choice-trigger:hover,
  .car-choice[data-open="true"] .car-choice-trigger{
    border-color: var(--blue);
  }

  .car-choice-trigger:focus-visible{
    outline: none;
    border-color: #c97a3d;
    box-shadow: 0 0 0 3px rgba(201,122,61,.15);
  }

  .car-choice-preview{
    width: 42px;
    height: 30px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #eee;
    flex-shrink: 0;
  }

  .car-choice-text{
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .car-choice-label{
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
  }

  .car-choice-sub{
    font-size: 12px;
    color: #888;
    line-height: 1.3;
  }

  .car-choice-chevron{
    width: 18px;
    height: 18px;
    stroke: #c97a3d;
    flex-shrink: 0;
    transition: transform .25s ease;
  }

  .car-choice-panel.open ~ .car-choice-trigger .car-choice-chevron,
  .car-choice-trigger[aria-expanded="true"] .car-choice-chevron{
    transform: rotate(180deg);
  }

  .car-choice-panel{
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0,0,0,.16);
    padding: 8px;
    z-index: 60;
    display: none;
    max-height: 320px;
    overflow-y: auto;
  }

  .car-choice-panel.open{
    display: block;
    animation: carPanelIn .2s ease;
  }

  @keyframes carPanelIn{
    from{ opacity: 0; transform: translateY(-6px); }
    to{ opacity: 1; transform: translateY(0); }
  }

  .car-choice-option{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s ease;
  }

  .car-choice-option:hover{
    background: #f8ede4;
  }

  .car-choice-option.selected{
    background: #f8ede4;
  }

  .car-choice-option img{
    width: 46px;
    height: 32px;
    object-fit: contain;
    background: #fafafa;
    border-radius: 6px;
    border: 1px solid #eee;
    flex-shrink: 0;
  }

  .opt-info{
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .opt-name{
    font-size: 14.5px;
    font-weight: 600;
    color: #222;
  }

  .opt-price{
    font-size: 12.5px;
    color: #c97a3d;
    font-weight: 600;
  }

  .opt-check{
    width: 18px;
    height: 18px;
    stroke: #c97a3d;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity .2s ease;
  }

  .car-choice-option.selected .opt-check{
    opacity: 1;
  }

  @media (max-width: 768px){
    .car-choice-panel{ max-height: 260px; }
  }

  .days-field{
    margin-bottom: 25px;
  }

  .days-field .date-field span{
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    color: #777;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
  }

  .days-stepper{
    display: flex;
    align-items: center;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
  }

  .days-stepper button{
    width: 44px;
    height: 48px;
    border: none;
    background: #fff;
    color: #c97a3d;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    flex-shrink: 0;
  }

  .days-stepper button:hover{ background: #f8ede4; }

  .days-stepper input{
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
    -moz-appearance: textfield;
  }

  .days-stepper input::-webkit-outer-spin-button,
  .days-stepper input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
  }
  .welcome-section {
    background: #f8fafc;
    padding: 80px 0;
}
/* Welcome Badge */
.welcome-badge,
.badge.bg-primary{
    background:#c97a3d !important;
}

/* Bootstrap text-primary override */
.text-primary{
    color:#c97a3d !important;
}

/* Welcome Icons */
.feature-icon{
    background:#f8ede4;
    color:#c97a3d;
}

.feature-card:hover .feature-icon{
    background:#c97a3d;
    color:#fff;
}

.feature-card:hover{
    box-shadow:0 15px 35px rgba(201,122,61,.25);
}

.welcome-badge {
    display: inline-block;
    background: #c97a3d;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin: 20px 0;
}

.welcome-text {
    font-size: 17px;
    color: #6c757d;
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
}

/* Feature Cards */
/* Rs. Price */
.tariff-price,
.price,
.rate{
    color:#c97a3d;
    font-weight:700;
}

/* Swipe Line */
.swiper-pagination-bullet-active{
    background:#c97a3d !important;
}

.swiper-button-next,
.swiper-button-prev{
    color:#c97a3d !important;
}

/* Car Card Hover */
.tariff-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(201,122,61,.25);
}
.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .35s ease;
    height: 100%;
    border: 1px solid #f1f1f1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(201,122,61,.18);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f8ede4;
    color: #c97a3d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: .3s;
}

.feature-card:hover .feature-icon {
    background: #c97a3d;
    color: #fff;
    transform: rotate(8deg);
}

.feature-card h5 {
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 768px) {

    .welcome-section {
        padding: 60px 0;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-text {
        font-size: 16px;
        padding: 0 15px;
    }

    .feature-card {
        margin-bottom: 20px;
    }
}
body{
    margin:0;
    font-family:Poppins,sans-serif;
    background:#f5f7fb;
}

.tariff-section{
    padding:70px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:38px;
    margin-bottom:10px;
}

.section-title p{
    color:#777;
}

/* Swipe Slider */

.tariff-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    padding-bottom:15px;
}

.tariff-slider::-webkit-scrollbar{
    height:8px;
}

.tariff-slider::-webkit-scrollbar-thumb{
    background:#c97a3d;
    border-radius:20px;
}

.tariff-card{
    min-width:290px;
    scroll-snap-align:center;
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.tariff-card:hover{
    transform:translateY(-8px);
}

.tariff-card img{
    width:220px;
    height:auto;
    margin-bottom:20px;
    transition:.4s;
}

.tariff-card:hover img{
    transform:scale(1.05);
}

.tariff-card h3{
    margin:10px 0;
    font-size:24px;
}

.price{
    font-size:34px;
    color:#c97a3d;
    font-weight:700;
}

.price span{
    font-size:18px;
    color:#0d0d0d;
}

.tariff-card ul{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.tariff-card li{
    padding:10px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

.tariff-card li:last-child{
    border:none;
    color:#d9534f;
    font-weight:600;
}

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.tariff-card{
    min-width:260px;
}

.tariff-card img{
    width:180px;
}
/* ===========================
   WHY US SECTION
=========================== */

}
.why-us-section{
    padding:80px 0;
    background:#f8fafc;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    display:inline-block;
    background:#c97a3d;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:38px;
    color:#222;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #eee;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(201,122,61,.18);
}

.icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    background:#f8ede4;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    transition:.3s;
}

.why-card:hover .icon{
    background:#c97a3d;
    color:#fff;
    transform:rotate(10deg);
}

.why-card h3{
    margin-bottom:12px;
    color:#222;
    font-size:20px;
}

.why-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

@media(max-width:768px){

    .why-us-section{
        padding:60px 0;
    }

    .section-heading h2{
        font-size:30px;
    }

    .why-grid{
        gap:18px;
    }

}

/* Badge */
.badge.bg-primary{
    background:#c97a3d;
}

/* Swap Button */
.swap-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#c97a3d;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.swap-btn:hover{
    background:#b66d33;
    transform:rotate(180deg);
}

/* Book Ride Button */
.book-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#c97a3d;
    color:#fff;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.book-btn:hover{
    background:#b66d33;
    color:#fff;
}

/* Icons */
.distance i{
    color:#c97a3d;
}

/* Route Card Hover */
.route-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 30px rgba(201,122,61,.25);
}

/* Optional: Heading underline */
.section-title::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#c97a3d;
    margin:15px auto 0;
    border-radius:5px;
}









.popular-routes{
    background:#f8f9fa;
}

.route-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.route-card:hover{
    transform:translateY(-8px);
}

.route-img{
    width:100%;
    height: 220px;
    object-fit:cover;
}

.route-body{
    padding:20px;
}

.route-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:15px;
}

.route-header span{
    font-size:18px;
    font-weight:600;
    color:#222;
}

.swap-btn{
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#c97a3d;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.swap-btn:hover{
    transform:rotate(180deg);
    background:#b66d33;
}

.distance{
    font-size:17px;
    color:#666;
    margin-bottom:20px;
}

.book-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#c97a3d;
    color:#fff;
    text-decoration:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.book-btn:hover{
    background:#b66d33;
    color:#fff;
}
.route-image{
    position:relative;
    width:100%;
    height:347px;
    overflow:hidden;
}

.route-image img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:opacity .5s ease-in-out;
}

.img1{
    opacity:1;
}

.img2{
    opacity:0;
}

.route-card:hover .img1{
    opacity:0;
}

.route-card:hover .img2{
    opacity:1;
}


/* ---------- REVIEWS ---------- */
.reviews{
  position: relative;
  overflow: hidden;
  padding: 110px 48px;
  background: var(--ink-black-2);
}

.reviews-video{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:blur(0px) brightness(0.55);
  transform: scale(1.1);
  z-index: 1;
}

.reviews-overlay{
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.reviews-content{
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-head{
  text-align: center;
  margin-bottom: 56px;
}

.reviews-head .eyebrow{
  justify-content: center;
  margin-bottom: 20px;
}

.reviews-head .eyebrow::before{ display: none; }

.reviews-head h2{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.reviews-head h2 em{
  font-style: normal;
  color: #c97a3d;
}

.review-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card{

  background: rgb(222 191 166);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  border-color: var(--copper);
}

.review-stars{
  color: var(--copper);
  font-size: 15px;
  letter-spacing: 2px;
}

.review-quote{
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.65;
  color: #000000;
  flex-grow: 1;
}

.review-person{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.review-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-black);
  flex-shrink: 0;
}

.review-name{
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #af6b32;
}

.review-tag{
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 0.05em;
}

@media (max-width: 980px){
  .review-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .reviews{ padding: 70px 24px; }
  .review-grid{ grid-template-columns: 1fr; }
}
html{
    scroll-behavior:smooth;
}


/* ---------- FOOTER ---------- */
.site-footer{
  background: var(--ink-black);
  border-top: 1px solid var(--line);
  padding: 70px 48px 0;
  font-family: 'Poppins', sans-serif;
}
 
.footer-grid{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
 
.footer-brand .brand{
  margin-bottom: 18px;
}
 
.footer-brand p{
  color: var(--paper-dim);
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 22px;
}
 
.footer-address{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}
 
.footer-address i{
  color: var(--copper);
  margin-top: 3px;
  flex-shrink: 0;
}
 
.footer-col h4{
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 20px;
}
 
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.footer-contact a,
.footer-contact .owner-name{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-dim);
  font-size: 14.5px;
  transition: color .25s ease;
}
 
.footer-contact a:hover{
  color: var(--copper);
}
 
.footer-contact i{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201,122,61,.12);
  border: 1px solid rgba(201,122,61,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 14px;
  flex-shrink: 0;
}
 
.footer-social h4{
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 20px;
}
 
.social-icons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
 
.social-icons a{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(237,232,225,.06);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 17px;
  transition: .3s;
}
 
.social-icons a:hover{
  background: var(--copper);
  color: var(--ink-black);
  border-color: var(--copper);
  transform: translateY(-3px);
}
 
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
}
 
.footer-bottom .copyright{
  color: var(--paper-dim);
  font-size: 13px;
}
 
.footer-bottom .credit{
  color: var(--paper-dim);
  font-size: 12.5px;
  text-align: right;
}
 
.footer-bottom .credit a{
  color: var(--copper);
  transition: color .25s ease;
}
 
.footer-bottom .credit a:hover{
  color: var(--copper-bright);
}
 
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom .credit{
    text-align: center;
  }
}
.brand-logo{
  height: 38px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.quick-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-actions a svg {
    width: 20px;
    height: 20px;
}

/* Call Button */
.qa-call {
    background: #007bff;
}

.qa-call:hover {
    background: #0056b3;
}

/* WhatsApp Button */
.qa-whatsapp {
    background: #25D366;
}

.qa-whatsapp:hover {
    background: #1da851;
}

/* Airport Pickup Button */
.qa-airport {
    background: #ff9800;
}

.qa-airport:hover {
    background: #f57c00;
    transform: translateY(-2px);
}
.success-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:99999;
}

.success-popup.show{
    opacity:1;
    visibility:visible;
}

.popup-box{

    width:420px;
    max-width:92%;

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    animation:popupScale .45s ease;

    box-shadow:0 25px 70px rgba(0,0,0,.25);

}

@keyframes popupScale{

    from{
        transform:scale(.6);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

.success-circle{

    width:95px;
    height:95px;

    margin:auto;

    border-radius:50%;

    background:#28a745;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:48px;

    animation:successPulse 1s infinite;

}

@keyframes successPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(40,167,69,.6);
    }

    70%{
        transform:scale(1.05);
        box-shadow:0 0 0 22px rgba(40,167,69,0);
    }

    100%{
        transform:scale(1);
    }

}

.popup-box h2{

    margin-top:25px;

    color:#222;

    font-size:30px;

    font-weight:700;

}

.popup-box p{

    margin-top:12px;

    color:#555;

    line-height:1.8;

}

.popup-subtitle{

    color:#c97a3d;

    font-weight:600;

    font-size:16px;

}

.countdown{

    margin-top:25px;

    font-weight:600;

    color:#777;

}

#countdown{

    color:#28a745;

    font-size:22px;

    font-weight:bold;

}






.loc-field {
  position: relative; /* anchor for the dropdown */
}

.suggestions-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  max-height: 220px;
  overflow-y: auto;
  z-index: 50;
  margin-top: 4px;
}

.suggestions-box div {
  padding: 10px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  border-bottom: 1px solid #f1f1f1;
}

.suggestions-box div:last-child {
  border-bottom: none;
}

.suggestions-box div:hover {
  background: #f6f6f6;
}






.date-field select {
  width: 100%;
  padding: 14px 40px 14px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c97a3d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  transition: border-color .3s;
}

.date-field select:hover {
  border-color: var(--blue);
}

.date-field select:focus {
  border-color: var(--blue);
}

/* Dropdown options list */
.date-field select option {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #333;
  padding: 8px;
}

/* Mobile: keep consistent height with other inputs */
@media (max-width: 768px) {
  .date-field select {
    padding: 13px 36px 13px 12px;
    font-size: 14px;
  }
}
.footer-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
}

.footer-location-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-location-item:hover {
  color: #c97a3d;
}

.footer-location-item i {
  color: #c97a3d;
  font-size: 0.8rem;
}