/* ==========================================================================
   Rajputana Tour - Main Stylesheet (Updated with Sliders & New Designs)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #FF8C00;
    /* Logo bright orange */
    --primary-dark: #cc6f00;
    /* Darker orange */
    --primary-gold: #FFA500;
    /* Logo gold */
    --secondary-color: #0d0d0d;
    /* Logo deep black */
    --text-color: #3a3a3a;
    --text-dark: #0d0d0d;
    --light-bg: #fff8f0;
    /* Warm cream matching logo tone */
    --white: #ffffff;
    --border-color: #f0dfc0;
    --blue-btn: #FF8C00;
    /* Replace blue with logo orange */
    --teal-btn: #FF8C00;
    /* Replace teal with logo orange */
    --green-btn: #25d366;
    --yellow-bg: #FF8C00;
    /* How it works section */
    --font-primary: 'Poppins', sans-serif;
    --font-cursive: 'Dancing Script', cursive;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-orange {
    color: var(--primary-color) !important;
}

.text-dark {
    color: var(--secondary-color) !important;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.pt-0 {
    padding-top: 0;
}

.mb-40 {
    margin-bottom: 40px;
}

.relative {
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-blue {
    background-color: var(--blue-btn);
    color: var(--white);
    border-radius: 30px;
    padding: 12px 30px;
}

.btn-blue:hover {
    background-color: #0b2da1;
}

.btn-solid-blue {
    background-color: var(--teal-btn);
    color: var(--white);
    border-radius: 30px;
    padding: 12px 40px;
}

.btn-solid-blue:hover {
    background-color: #387c8a;
}

.btn-outline-blue {
    border: 1px solid var(--teal-btn);
    color: var(--teal-btn);
    border-radius: 5px;
    padding: 8px 15px;
    display: inline-block;
    font-size: 14px;
}

.btn-outline-blue:hover {
    background-color: var(--teal-btn);
    color: var(--white);
}

.btn-outline-green {
    border: 1px solid var(--green-btn);
    color: var(--green-btn);
    border-radius: 5px;
    padding: 8px 15px;
    display: inline-block;
    font-size: 14px;
}

.btn-outline-green:hover {
    background-color: var(--green-btn);
    color: var(--white);
}

/* Typography */
.main-title {
    font-size: 36px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.cursive-title {
    font-family: var(--font-cursive);
    color: var(--blue-btn);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--teal-btn);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.subtitle .line {
    height: 2px;
    width: 40px;
    background-color: var(--teal-btn);
    display: inline-block;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

.top-bar-right a {
    color: var(--white);
    font-size: 16px;
}

/* Header */
header {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.nav-menu>ul {
    display: flex;
    gap: 25px;
}

.nav-menu>ul>li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 270px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 100;
    border-radius: 5px;
    flex-direction: column;
    gap: 0;
}

.nav-menu>ul>li.active-dropdown .dropdown-menu,
.nav-menu>ul>li:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    color: var(--text-color) !important;
    padding: 4px 12px;
    display: block;
    font-size: 10px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color) !important;
    padding-left: 25px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.header-contact {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Slider Section & Booking Form */
.hero-wrapper {
    position: relative;
}

.heroSwiper {
    height: 80vh;
    min-height: 500px;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    z-index: 10;
    position: relative;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Booking Bar overlaying slider */
.booking-bar-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -60px;
    padding: 0 15px;
}

.booking-bar {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 180px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
}

/* Custom Swiper Arrows */
.hero-next,
.hero-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
}

.hero-next:hover,
.hero-prev:hover {
    background: var(--primary-color);
}

.hero-next {
    right: 20px;
}

.hero-prev {
    left: 20px;
}

.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f05a28;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.arrow-btn:hover {
    background: var(--secondary-color);
}

.arrow-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Homepage About Grid */
.about-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-images {
    position: relative;
    height: 500px;
}

.circle-img-1 {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    border: 10px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circle-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-img-2 {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: 20px;
    bottom: 0;
    border: 10px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circle-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .about-text {
    margin-bottom: 25px;
    color: #555;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-list i {
    color: var(--secondary-color);
    font-size: 14px;
}

/* How It Works Section */
.hiw-top-bg {
    background-color: var(--yellow-bg);
    padding: 60px 0 120px;
}

.hiw-cards-container {
    margin-top: -80px;
    z-index: 10;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.hiw-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 25px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.hiw-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.step-num {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--yellow-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    transition: var(--transition);
}

.hiw-card:hover .step-num {
    background: var(--yellow-bg);
    color: var(--white);
}

.step-icon {
    width: 120px;
    height: 120px;
    background: #f5f5f5;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.hiw-card:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
}

.hiw-card h4 {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Packages Section */
.packages-section {
    background-color: var(--light-bg);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.package-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pkg-img {
    height: 180px;
    position: relative;
}

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

.save-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e60023;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pkg-content {
    padding: 20px;
}

.pkg-content h3 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
}

.pkg-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--teal-btn);
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.pkg-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

/* New Fleet Section Design */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fleet-card {
    background: #fff;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.fleet-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.fl-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

.fl-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fleet-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.fl-reviews {
    color: #fdb913;
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fl-reviews span {
    color: #888;
    font-size: 11px;
    margin-left: 5px;
}

.fl-specs {
    text-align: left;
    margin-bottom: 25px;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}

.sp-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    color: #555;
}

.sp-row strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.fl-btn {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.fl-btn a {
    flex: 1;
    padding: 10px 0;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: var(--transition);
}

.btn-view {
    border: 1px solid var(--teal-btn);
    color: var(--teal-btn);
}

.btn-view:hover {
    background: var(--teal-btn);
    color: var(--white);
}

.btn-whatsapp {
    border: 1px solid var(--green-btn);
    color: var(--green-btn);
}

.btn-whatsapp:hover {
    background: var(--green-btn);
    color: var(--white);
}

/* Features Box Section */
.features-box-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-box {
    border: 1px solid var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
    background: var(--white);
}

.feature-box:hover {
    box-shadow: 0 10px 20px rgba(232, 134, 10, 0.1);
    transform: translateY(-5px);
}

.f-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 13px;
    color: #666;
}

/* Destinations */
.destinations-section {
    background-color: var(--light-bg);
}

.dest-card {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.dest-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    text-align: center;
    font-weight: 500;
}

/* Testimonials */
.testi-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.testi-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
    min-height: 80px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-user img,
.user-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 20px;
}

.testi-user h4 {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background-color: #1a1c20;
    padding: 60px 0;
    background-image: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?q=80&w=2070&auto=format&fit=crop');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: left center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #d1aa0f;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.stat-info p {
    font-size: 13px;
    color: #777;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eaeaea;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-header .icon {
    font-size: 24px;
    font-weight: 300;
}

.faq-body {
    padding: 0 25px 25px;
    color: #666;
    display: none;
    font-size: 15px;
}

.faq-item.active .faq-header {
    color: var(--primary-color);
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 60px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #333;
}

/* Shorts */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.short-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: #007bff;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-box-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hero-wrapper {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        padding: 20px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        background: transparent;
        padding-left: 15px;
        min-width: 100%;
        display: none;
    }

    .nav-menu ul li.active-dropdown .dropdown-menu {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .header-contact {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Homepage about: text first, image below on mobile */
    .about-home .about-content {
        order: 1;
    }

    .about-home .about-image {
        order: 2;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-bar {
        margin-top: 0;
        border-radius: 10px;
    }

    .booking-bar-wrapper {
        margin-top: -80px;
        padding: 0 15px;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 768px) {
    .heroSwiper {
        height: 70vh;
        min-height: 400px;
    }

    .hero-content {
        text-align: center;
        margin-top: -60px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .booking-bar-wrapper {
        margin-top: -120px;
    }

    .booking-form .form-group {
        width: 100%;
        flex: 100%;
    }

    /* Reduced padding for App-like feel */
    .section-padding {
        padding: 40px 0;
    }

    .mt-40 {
        margin-top: 25px;
    }

    .mb-40 {
        margin-bottom: 25px;
    }

    .hiw-top-bg {
        padding: 40px 0 80px;
    }

    /* 2-Column layouts for mobile */
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .features-box-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    /* Fix About Images Overlapping */
    .about-images {
        height: 300px;
        max-width: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        margin: 0 auto;
    }

    .circle-img-1 {
        width: 220px;
        height: 220px;
        position: absolute;
        left: 0;
        top: 0;
        border-width: 5px;
    }

    .circle-img-2 {
        width: 200px;
        height: 200px;
        position: absolute;
        right: 0;
        bottom: 0;
        border-width: 5px;
    }

    /* Compact cards for mobile app look */
    .hiw-card {
        padding: 25px 10px 15px;
        margin-top: 20px;
    }

    .step-num {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: -17px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hiw-card h4 {
        font-size: 14px;
    }

    .feature-box {
        padding: 20px 15px;
    }

    .feature-box h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .f-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .stat-box {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto;
    }

    .stat-info h3 {
        font-size: 22px;
    }

    .dest-card {
        height: 200px;
    }

    .dest-name {
        font-size: 13px;
        padding: 10px;
    }

    .testi-card {
        padding: 25px 20px;
    }

    .testi-text {
        min-height: 60px;
        margin-bottom: 20px;
    }

    .faq-header {
        padding: 15px 20px;
        font-size: 14px;
    }

    .faq-body {
        padding: 0 20px 20px;
        font-size: 13px;
    }

    /* Mobile Fleet Card Fixes */
    .fleet-card {
        padding: 10px;
    }

    .fl-img {
        height: 140px;
        margin-bottom: 10px;
    }

    .fleet-card h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .fl-reviews {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .fl-specs {
        padding-top: 10px;
        margin-bottom: 12px;
    }

    .sp-row {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .fl-btn {
        flex-direction: column;
        gap: 8px;
        margin-top: 10px;
    }

    .fl-btn a {
        font-size: 13px;
        padding: 8px 0;
        border-radius: 4px;
    }

    /* Shorts Grid Mobile Fix */
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .fl-btn {
        flex-direction: row;
    }

    .fleet-card {
        padding: 15px;
    }

    .fl-img {
        height: 130px;
    }

    .fleet-card h3 {
        font-size: 18px;
    }

    .sp-row {
        font-size: 13px;
    }
}

/* ===== PKG2 CARD STYLE (2nd screenshot clone) ===== */
.pkg2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pkg2-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.pkg2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.pkg2-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pkg2-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

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

.pkg2-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pkg2-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
    margin: 0;
}

.pkg2-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pkg2-meta span {
    font-size: 12.5px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg2-meta span i {
    color: var(--teal-btn, #1aa89c);
    font-size: 12px;
    flex-shrink: 0;
}

.pkg2-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 4px;
}

.pkg2-btn-view,
.pkg2-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.pkg2-btn-view {
    border-color: #FF8C00;
    color: #FF8C00;
    background: transparent;
}

.pkg2-btn-view:hover {
    background: #FF8C00;
    color: #fff;
}

.pkg2-btn-wa {
    border-color: #25d366;
    color: #25d366;
    background: transparent;
}

.pkg2-btn-wa:hover {
    background: #25d366;
    color: #fff;
}

@media (max-width: 1100px) {
    .pkg2-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pkg2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pkg2-img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .pkg2-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DESTINATIONS PAGE - FULL GRID ===== */
.dest-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.dest-card-full {
    position: relative;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.dest-card-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.dest-card-full:hover img {
    transform: scale(1.08);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
    color: #fff;
    transition: padding 0.3s;
}

.dest-card-full:hover .dest-overlay {
    padding-bottom: 22px;
}

.dest-overlay h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.dest-overlay p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dest-overlay p i {
    color: #FF8C00;
}

.dest-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF8C00;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.dest-card-full:hover .dest-btn {
    opacity: 1;
    transform: translateY(0);
}

.dest-btn:hover {
    background: #cc6f00;
    color: #fff;
}

@media (max-width: 1100px) {
    .dest-grid-full {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dest-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dest-card-full {
        height: 200px;
    }

    .dest-overlay h3 {
        font-size: 14px;
    }

    .dest-btn {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .dest-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .dest-card-full {
        height: 160px;
    }
}

/* ==========================================================================
   CSS Extracted from HTML files
   ========================================================================== */

.page-banner {
    height: 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1598324789736-4861f89564a0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .page-banner {
        height: 140px;
        margin-top: 0px;
    }

    .page-banner h1 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .packages-section .about-grid {
        grid-template-columns: 1fr !important;
    }
}

.page-banner {
    height: 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1599661046289-e31897846e41?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-features i {
    color: var(--primary-color);
    font-size: 20px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 60px;
}

.mv-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eaeaea;
}

.mv-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 140px;
        margin-top: 0px;
    }

    .page-banner h1 {
        font-size: 28px;
    }
}

/* Inner Page Banner */
.page-banner {
    height: 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1599661046289-e31897846e41?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

/* Contact Page Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-detail-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-detail-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(232, 134, 10, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-detail-item p {
    color: #666;
    font-size: 15px;
}

.contact-form-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.full-map {
    margin-top: 50px;
}

.full-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    border: none;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 140px;
        margin-top: 0px;
    }

    .page-banner h1 {
        font-size: 28px;
    }
}

/* Specific Styles for Khatu Shyam Ji Route Landing Page */
.route-hero {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/Khatu-Shyam-Ji.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.route-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.route-hero p {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.route-hero .breadcrumb {
    margin-top: 15px;
    font-size: 15px;
    opacity: 0.85;
}

.route-hero .breadcrumb a {
    color: var(--white);
}

.route-hero .breadcrumb a:hover {
    color: var(--primary-color);
}

/* About Section Custom Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Orange Stats Bar */
.stats-bar {
    background: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-bar-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stat-bar-box i {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-bar-box div {
    text-align: left;
}

.stat-bar-box h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 3px;
}

.stat-bar-box p {
    font-size: 18px;
    font-weight: 600;
}

/* How to Book Steps */
.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.step-box-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid #f0dfc0;
    text-align: center;
}

.step-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.12);
    border-color: var(--primary-color);
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-box-card:hover .step-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
}

.step-box-card h3 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-box-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Why Choose Bar */
.why-choose-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-choose-bar-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 10px;
    border: 1px solid #f0dfc0;
    text-align: center;
    transition: var(--transition);
}

.why-choose-bar-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-choose-bar-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-bar-card h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-bar-card p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.5;
}

/* Orange Highlight Alert Bar */
.orange-alert-bar {
    background: var(--primary-color);
    padding: 25px 30px;
    border-radius: 10px;
    color: var(--white);
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

/* Popular Outstation Taxi Routes Badges */
.routes-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 40px auto 0;
}

.route-badge-link {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.route-badge-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Ready to Explore Call to Action Bar */
.explore-cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.explore-cta-bar h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white) !important;
}

.explore-cta-bar p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.explore-cta-bar .btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsiveness Overrides */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        grid-row: 1;
    }

    .about-content {
        grid-row: 2;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps-grid .step-box-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .route-hero {
        padding: 80px 0;
    }

    .route-hero h1 {
        font-size: 32px;
    }

    .route-hero p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .stats-bar {
        padding: 20px 0;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-bar-box {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
        width: 100%;
    }

    .stat-bar-box i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stat-bar-box p {
        font-size: 16px;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orange-alert-bar {
        padding: 20px;
        font-size: 14px;
        margin-top: 30px;
    }

    .explore-cta-bar {
        padding: 40px 0;
    }

    .explore-cta-bar h2 {
        font-size: 28px !important;
    }

    .explore-cta-bar p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .explore-cta-bar .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .route-hero h1 {
        font-size: 26px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .why-choose-bar-grid {
        grid-template-columns: 1fr;
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .booking-steps-grid .step-box-card {
        padding: 15px 10px;
    }

    .booking-steps-grid .step-icon-wrap {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .booking-steps-grid .step-box-card h3 {
        font-size: 13px;
    }

    .booking-steps-grid .step-box-card p {
        font-size: 11px;
    }

    .routes-badges-grid {
        gap: 10px;
    }

    .route-badge-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .explore-cta-bar h2 {
        font-size: 22px !important;
    }
}

.page-banner {
    height: 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1599661046289-e31897846e41?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--primary-color);
    font-size: 40px;
}

@media (max-width: 768px) {
    .page-banner {
        height: 140px;
        margin-top: 0px;
    }

    .page-banner h1 {
        font-size: 28px;
    }
}

.content-pkg-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.content-pkg-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-pkg-img {
    flex: 1 1 40%;
}

.content-pkg-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-pkg-text {
    flex: 1 1 50%;
}

.content-pkg-title {
    color: var(--primary-color, #ff6b00);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    .content-pkg-row,
    .why-choose-row {
        flex-direction: column !important;
    }

    .content-pkg-img,
    .content-pkg-text,
    .why-choose-img,
    .why-choose-text {
        flex: 1 1 100%;
    }
}

.why-choose-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.why-choose-img {
    flex: 1 1 40%;
}

.why-choose-img img {
    width: 100%;
    border-radius: 10px;
}

.why-choose-text {
    flex: 1 1 50%;
}

.faq-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-box strong {
    color: var(--secondary-color, #333);
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.faq-box p {
    margin: 0;
}

/* Specific Styles for Char Dham Yatra Route Landing Page */
.route-hero {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/char-dham-yatra.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.route-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.route-hero p {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.route-hero .breadcrumb {
    margin-top: 15px;
    font-size: 15px;
    opacity: 0.85;
}

.route-hero .breadcrumb a {
    color: var(--white);
}

.route-hero .breadcrumb a:hover {
    color: var(--primary-color);
}

/* About Section Custom Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Orange Stats Bar */
.stats-bar {
    background: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-bar-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stat-bar-box i {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-bar-box div {
    text-align: left;
}

.stat-bar-box h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 3px;
}

.stat-bar-box p {
    font-size: 18px;
    font-weight: 600;
}

/* How to Book Steps */
.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.step-box-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid #f0dfc0;
    text-align: center;
}

.step-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.12);
    border-color: var(--primary-color);
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-box-card:hover .step-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
}

.step-box-card h3 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-box-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Why Choose Bar */
.why-choose-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-choose-bar-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 10px;
    border: 1px solid #f0dfc0;
    text-align: center;
    transition: var(--transition);
}

.why-choose-bar-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-choose-bar-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-bar-card h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-bar-card p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.5;
}

/* Orange Highlight Alert Bar */
.orange-alert-bar {
    background: var(--primary-color);
    padding: 25px 30px;
    border-radius: 10px;
    color: var(--white);
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

/* Popular Outstation Taxi Routes Badges */
.routes-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 40px auto 0;
}

.route-badge-link {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.route-badge-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Ready to Explore Call to Action Bar */
.explore-cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.explore-cta-bar h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white) !important;
}

.explore-cta-bar p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.explore-cta-bar .btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsiveness Overrides */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        grid-row: 1;
    }

    .about-content {
        grid-row: 2;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps-grid .step-box-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .route-hero {
        padding: 80px 0;
    }

    .route-hero h1 {
        font-size: 32px;
    }

    .route-hero p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .stats-bar {
        padding: 20px 0;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-bar-box {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
        width: 100%;
    }

    .stat-bar-box i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stat-bar-box p {
        font-size: 16px;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orange-alert-bar {
        padding: 20px;
        font-size: 14px;
        margin-top: 30px;
    }

    .explore-cta-bar {
        padding: 40px 0;
    }

    .explore-cta-bar h2 {
        font-size: 28px !important;
    }

    .explore-cta-bar p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .explore-cta-bar .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .route-hero h1 {
        font-size: 26px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .why-choose-bar-grid {
        grid-template-columns: 1fr;
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .booking-steps-grid .step-box-card {
        padding: 15px 10px;
    }

    .booking-steps-grid .step-icon-wrap {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .booking-steps-grid .step-box-card h3 {
        font-size: 13px;
    }

    .booking-steps-grid .step-box-card p {
        font-size: 11px;
    }

    .routes-badges-grid {
        gap: 10px;
    }

    .route-badge-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .explore-cta-bar h2 {
        font-size: 22px !important;
    }
}

.why-choose-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.why-choose-img {
    flex: 1 1 40%;
}

.why-choose-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-text {
    flex: 1 1 50%;
}

.why-choose-text ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.why-choose-text ul li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.why-choose-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

@media (max-width: 768px) {
    .why-choose-row {
        flex-direction: column !important;
    }

    .why-choose-img,
    .why-choose-text {
        flex: 1 1 100%;
    }
}

.why-choose-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.why-choose-img {
    flex: 1 1 40%;
}

.why-choose-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-text {
    flex: 1 1 50%;
}

.why-choose-text ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.why-choose-text ul li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.why-choose-text ul li::before {
    content: '00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

@media (max-width: 768px) {
    .why-choose-row {
        flex-direction: column !important;
    }

    .why-choose-img,
    .why-choose-text {
        flex: 1 1 100%;
    }
}

.page-banner {
    height: 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1598324789736-4861f89564a0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.blog-single-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-main-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.blog-title {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 140px;
        margin-top: 0px;
    }

    .page-banner h1 {
        font-size: 28px;
    }
}

.page-banner {
    height: 200px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1598324789736-4861f89564a0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
}

.breadcrumb {
    margin-top: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .page-banner {
        height: 140px;
        margin-top: 0px;
    }

    .page-banner h1 {
        font-size: 28px;
    }
}

.pkg2-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 992px) {
    .pkg2-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .pkg2-grid-3 {
        grid-template-columns: 1fr !important;
    }
}

/* Specific Styles for Shimla Manali Route Landing Page */
.route-hero {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/Shimla-Manali.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.route-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.route-hero p {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.route-hero .breadcrumb {
    margin-top: 15px;
    font-size: 15px;
    opacity: 0.85;
}

.route-hero .breadcrumb a {
    color: var(--white);
}

.route-hero .breadcrumb a:hover {
    color: var(--primary-color);
}

/* About Section Custom Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Orange Stats Bar */
.stats-bar {
    background: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-bar-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stat-bar-box i {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-bar-box div {
    text-align: left;
}

.stat-bar-box h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 3px;
}

.stat-bar-box p {
    font-size: 18px;
    font-weight: 600;
}

/* How to Book Steps */
.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.step-box-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid #f0dfc0;
    text-align: center;
}

.step-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.12);
    border-color: var(--primary-color);
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-box-card:hover .step-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
}

.step-box-card h3 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-box-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Why Choose Bar */
.why-choose-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-choose-bar-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 10px;
    border: 1px solid #f0dfc0;
    text-align: center;
    transition: var(--transition);
}

.why-choose-bar-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-choose-bar-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-bar-card h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-bar-card p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.5;
}

/* Orange Highlight Alert Bar */
.orange-alert-bar {
    background: var(--primary-color);
    padding: 25px 30px;
    border-radius: 10px;
    color: var(--white);
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

/* Popular Outstation Taxi Routes Badges */
.routes-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 40px auto 0;
}

.route-badge-link {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.route-badge-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Ready to Explore Call to Action Bar */
.explore-cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.explore-cta-bar h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white) !important;
}

.explore-cta-bar p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.explore-cta-bar .btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsiveness Overrides */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        grid-row: 1;
    }

    .about-content {
        grid-row: 2;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps-grid .step-box-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .route-hero {
        padding: 80px 0;
    }

    .route-hero h1 {
        font-size: 32px;
    }

    .route-hero p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .stats-bar {
        padding: 20px 0;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-bar-box {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
        width: 100%;
    }

    .stat-bar-box i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stat-bar-box p {
        font-size: 16px;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orange-alert-bar {
        padding: 20px;
        font-size: 14px;
        margin-top: 30px;
    }

    .explore-cta-bar {
        padding: 40px 0;
    }

    .explore-cta-bar h2 {
        font-size: 28px !important;
    }

    .explore-cta-bar p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .explore-cta-bar .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .route-hero h1 {
        font-size: 26px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .why-choose-bar-grid {
        grid-template-columns: 1fr;
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .booking-steps-grid .step-box-card {
        padding: 15px 10px;
    }

    .booking-steps-grid .step-icon-wrap {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .booking-steps-grid .step-box-card h3 {
        font-size: 13px;
    }

    .booking-steps-grid .step-box-card p {
        font-size: 11px;
    }

    .routes-badges-grid {
        gap: 10px;
    }

    .route-badge-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .explore-cta-bar h2 {
        font-size: 22px !important;
    }
}

/* Specific Styles for Golden Triangle Yatra Route Landing Page */
.route-hero {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/Golden-Triangle.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.route-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.route-hero p {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.route-hero .breadcrumb {
    margin-top: 15px;
    font-size: 15px;
    opacity: 0.85;
}

.route-hero .breadcrumb a {
    color: var(--white);
}

.route-hero .breadcrumb a:hover {
    color: var(--primary-color);
}

/* About Section Custom Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Orange Stats Bar */
.stats-bar {
    background: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-bar-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stat-bar-box i {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-bar-box div {
    text-align: left;
}

.stat-bar-box h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 3px;
}

.stat-bar-box p {
    font-size: 18px;
    font-weight: 600;
}

/* How to Book Steps */
.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.step-box-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid #f0dfc0;
    text-align: center;
}

.step-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.12);
    border-color: var(--primary-color);
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-box-card:hover .step-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
}

.step-box-card h3 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-box-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Why Choose Bar */
.why-choose-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-choose-bar-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 10px;
    border: 1px solid #f0dfc0;
    text-align: center;
    transition: var(--transition);
}

.why-choose-bar-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-choose-bar-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-bar-card h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-bar-card p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.5;
}

/* Orange Highlight Alert Bar */
.orange-alert-bar {
    background: var(--primary-color);
    padding: 25px 30px;
    border-radius: 10px;
    color: var(--white);
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

/* Popular Outstation Taxi Routes Badges */
.routes-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 40px auto 0;
}

.route-badge-link {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.route-badge-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Ready to Explore Call to Action Bar */
.explore-cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.explore-cta-bar h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white) !important;
}

.explore-cta-bar p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.explore-cta-bar .btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsiveness Overrides */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        grid-row: 1;
    }

    .about-content {
        grid-row: 2;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps-grid .step-box-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .route-hero {
        padding: 80px 0;
    }

    .route-hero h1 {
        font-size: 32px;
    }

    .route-hero p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .stats-bar {
        padding: 20px 0;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-bar-box {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
        width: 100%;
    }

    .stat-bar-box i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stat-bar-box p {
        font-size: 16px;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orange-alert-bar {
        padding: 20px;
        font-size: 14px;
        margin-top: 30px;
    }

    .explore-cta-bar {
        padding: 40px 0;
    }

    .explore-cta-bar h2 {
        font-size: 28px !important;
    }

    .explore-cta-bar p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .explore-cta-bar .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .route-hero h1 {
        font-size: 26px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .why-choose-bar-grid {
        grid-template-columns: 1fr;
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .booking-steps-grid .step-box-card {
        padding: 15px 10px;
    }

    .booking-steps-grid .step-icon-wrap {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .booking-steps-grid .step-box-card h3 {
        font-size: 13px;
    }

    .booking-steps-grid .step-box-card p {
        font-size: 11px;
    }

    .routes-badges-grid {
        gap: 10px;
    }

    .route-badge-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .explore-cta-bar h2 {
        font-size: 22px !important;
    }
}

.route-hero {
    padding: 120px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/Jaipur-to-Sawariya-Darshan.webp');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.route-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.route-hero p {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.route-hero .breadcrumb {
    margin-top: 15px;
    font-size: 15px;
    opacity: 0.85;
}

.route-hero .breadcrumb a {
    color: var(--white);
}

.route-hero .breadcrumb a:hover {
    color: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.stats-bar {
    background: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-bar-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stat-bar-box i {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-bar-box div {
    text-align: left;
}

.stat-bar-box h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 3px;
}

.stat-bar-box p {
    font-size: 18px;
    font-weight: 600;
}

.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.step-box-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid #f0dfc0;
    text-align: center;
}

.step-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.12);
    border-color: var(--primary-color);
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-box-card:hover .step-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
}

.step-box-card h3 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-box-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.why-choose-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-choose-bar-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 10px;
    border: 1px solid #f0dfc0;
    text-align: center;
    transition: var(--transition);
}

.why-choose-bar-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-choose-bar-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-bar-card h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-bar-card p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.5;
}

.orange-alert-bar {
    background: var(--primary-color);
    padding: 25px 30px;
    border-radius: 10px;
    color: var(--white);
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

.routes-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 40px auto 0;
}

.route-badge-link {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.route-badge-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.explore-cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.explore-cta-bar h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white) !important;
}

.explore-cta-bar p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.explore-cta-bar .btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        grid-row: 1;
    }

    .about-content {
        grid-row: 2;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps-grid .step-box-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .route-hero {
        padding: 80px 0;
    }

    .route-hero h1 {
        font-size: 32px;
    }

    .route-hero p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .stats-bar {
        padding: 20px 0;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-bar-box {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
        width: 100%;
    }

    .stat-bar-box i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stat-bar-box p {
        font-size: 16px;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orange-alert-bar {
        padding: 20px;
        font-size: 14px;
        margin-top: 30px;
    }

    .explore-cta-bar {
        padding: 40px 0;
    }

    .explore-cta-bar h2 {
        font-size: 28px !important;
    }

    .explore-cta-bar p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .explore-cta-bar .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .route-hero h1 {
        font-size: 26px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .why-choose-bar-grid {
        grid-template-columns: 1fr;
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .booking-steps-grid .step-box-card {
        padding: 15px 10px;
    }

    .booking-steps-grid .step-icon-wrap {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .booking-steps-grid .step-box-card h3 {
        font-size: 13px;
    }

    .booking-steps-grid .step-box-card p {
        font-size: 11px;
    }

    .routes-badges-grid {
        gap: 10px;
    }

    .route-badge-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .explore-cta-bar h2 {
        font-size: 22px !important;
    }
}

.route-hero {
    padding: 40px !important;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.route-hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.route-hero p {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.route-hero .breadcrumb {
    margin-top: 15px;
    font-size: 15px;
    opacity: 0.85;
}

.route-hero .breadcrumb a {
    color: var(--white);
}

.route-hero .breadcrumb a:hover {
    color: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.stats-bar {
    background: var(--primary-color);
    padding: 30px 0;
    color: var(--white);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-bar-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.stat-bar-box i {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-bar-box div {
    text-align: left;
}

.stat-bar-box h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 3px;
}

.stat-bar-box p {
    font-size: 18px;
    font-weight: 600;
}

.booking-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.step-box-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    border: 1px solid #f0dfc0;
    text-align: center;
}

.step-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.12);
    border-color: var(--primary-color);
}

.step-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.step-box-card:hover .step-icon-wrap {
    background: var(--primary-color);
    color: var(--white);
}

.step-box-card h3 {
    font-size: 15px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-box-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.why-choose-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.why-choose-bar-card {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 10px;
    border: 1px solid #f0dfc0;
    text-align: center;
    transition: var(--transition);
}

.why-choose-bar-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-choose-bar-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-choose-bar-card h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.why-choose-bar-card p {
    font-size: 12.5px;
    color: #666;
    line-height: 1.5;
}

.orange-alert-bar {
    background: var(--primary-color);
    padding: 25px 30px;
    border-radius: 10px;
    color: var(--white);
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.2);
}

.routes-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 40px auto 0;
}

.route-badge-link {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 30px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.route-badge-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.explore-cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.explore-cta-bar h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white) !important;
}

.explore-cta-bar p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.explore-cta-bar .btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        grid-row: 1;
    }

    .about-content {
        grid-row: 2;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-steps-grid .step-box-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .route-hero {
        padding: 80px 0;
    }

    .route-hero h1 {
        font-size: 32px;
    }

    .route-hero p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .stats-bar {
        padding: 20px 0;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-bar-box {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
        width: 100%;
    }

    .stat-bar-box i {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stat-bar-box p {
        font-size: 16px;
    }

    .why-choose-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .orange-alert-bar {
        padding: 20px;
        font-size: 14px;
        margin-top: 30px;
    }

    .explore-cta-bar {
        padding: 40px 0;
    }

    .explore-cta-bar h2 {
        font-size: 28px !important;
    }

    .explore-cta-bar p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .explore-cta-bar .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .route-hero h1 {
        font-size: 26px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .why-choose-bar-grid {
        grid-template-columns: 1fr;
    }

    .booking-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .booking-steps-grid .step-box-card {
        padding: 15px 10px;
    }

    .booking-steps-grid .step-icon-wrap {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .booking-steps-grid .step-box-card h3 {
        font-size: 13px;
    }

    .booking-steps-grid .step-box-card p {
        font-size: 11px;
    }

    .routes-badges-grid {
        gap: 10px;
    }

    .route-badge-link {
        padding: 8px 16px;
        font-size: 13px;
    }

    .explore-cta-bar h2 {
        font-size: 22px !important;
    }
}