/* ============================================
   Easy Travel - Premium Taxi Booking Website
   Custom Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #C87F2E;
    --primary-dark: #A0621E;
    --secondary: #D4A24C;
    --accent: #F5C563;
    --dark: #2C1810;
    --dark-light: #4A3228;
    --light: #FDF9F3;
    --white: #FFFFFF;
    --gray: #7A6A5E;
    --gray-light: #E8DDD4;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow: 0 4px 20px rgba(44,24,16,0.08);
    --shadow-lg: 0 10px 40px rgba(44,24,16,0.12);
    --shadow-hover: 0 15px 50px rgba(200,127,46,0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--dark);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100vw;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-primary); font-weight: 700; color: var(--dark); line-height: 1.3; }
a { text-decoration: none; color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
section { padding: 80px 0; overflow-x: hidden; }
.row { --bs-gutter-x: 1.5rem; }

/* ---------- Preloader ---------- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--white); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
}
.loader { width: 50px; height: 50px; position: relative; }
.loader-inner {
    width: 100%; height: 100%; border-radius: 50%;
    border: 4px solid var(--gray-light);
    border-top-color: var(--primary);
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
}
.top-bar-left a, .top-bar-left span {
    color: rgba(255,255,255,0.8);
    margin-right: 20px;
    font-size: 13px;
}
.top-bar-left a:hover { color: var(--accent); }
.top-bar-left i { margin-right: 6px; color: var(--accent); }
.top-bar-right { text-align: right; }
.top-bar-right a {
    color: rgba(255,255,255,0.8);
    margin-left: 15px;
    font-size: 14px;
}
.top-bar-right a:hover { color: var(--accent); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
#mainNavbar {
    background: var(--white);
    box-shadow: var(--shadow);
    /* padding: 12px 0; */
    transition: var(--transition);
    z-index: 1030;
}
#mainNavbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}
.navbar-brand { font-size: 0; }
.brand-text {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
}
.brand-text .text-accent { color: var(--primary); }
.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    color: var(--dark);
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(200,127,46,0.05);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    padding: 10px;
    margin-top: 10px;
}
.dropdown-item {
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: rgba(200,127,46,0.05);
    color: var(--primary);
    transform: translateX(5px);
}

/* ---------- Buttons ---------- */
.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(200,127,46,0.3);
}
.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,127,46,0.4);
    color: var(--white);
}
.btn-secondary-gradient {
    background: linear-gradient(135deg, var(--secondary), #B8872E);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212,162,76,0.3);
}
.btn-secondary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212,162,76,0.4);
    color: var(--white);
}
.btn-nav-book { padding: 10px 22px; font-size: 13px; }

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -72px;
    padding-top: 0;
}
.hero-slider {
    width: 100%;
    height: 85vh;
}
.hero-slider .swiper-slide {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(44,24,16,0.75) 0%, rgba(200,127,46,0.25) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 40px 0;
    padding-top: 72px;
    text-align: center;
}
.hero-subtitle {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}
.hero-content h1 {
    font-size: 52px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}
.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }

/* ---------- Booking Widget ---------- */
.booking-widget {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
    margin-top: -80px;
}
.booking-widget h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--dark);
}
.booking-widget .form-control,
.booking-widget .form-select {
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--light);
}
.booking-widget .form-control:focus,
.booking-widget .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
    background: var(--white);
}
.booking-widget .form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--dark-light);
    margin-bottom: 6px;
}

/* ---------- Section Styles ---------- */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: rgba(200,127,46,0.08);
    padding: 6px 18px;
    border-radius: 30px;
}
.section-header h2 { font-size: 30px; margin-bottom: 15px; }
.section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 16px; }

/* ---------- Service Cards ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.service-card .service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(200,127,46,0.1), rgba(212,162,76,0.1));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    transform: scale(1.1);
}
.service-card h4 { font-size: 18px; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray); margin-bottom: 15px; }

/* ---------- Vehicle Cards ---------- */
.vehicle-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
}
.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.vehicle-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.vehicle-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }
.vehicle-card-body { padding: 25px; }
.vehicle-card-body h4 { font-size: 18px; margin-bottom: 10px; }
.vehicle-features {
    display: flex; gap: 15px; flex-wrap: wrap;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}
.vehicle-features span {
    font-size: 13px;
    color: var(--gray);
    display: flex; align-items: center; gap: 5px;
}
.vehicle-features i { color: var(--primary); }
.vehicle-price {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 15px;
}
.vehicle-price .price { font-size: 22px; font-weight: 700; color: var(--primary); }
.vehicle-price .price small { font-size: 13px; color: var(--gray); font-weight: 400; }

/* ---------- Package Cards ---------- */
.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.package-card-img { position: relative; height: 200px; overflow: hidden; }
.package-card-img img { width: 100%; height: 100%; object-fit: cover; }
.package-badge {
    position: absolute; top: 15px; left: 15px;
    background: var(--accent); color: var(--dark);
    padding: 5px 14px; border-radius: 30px;
    font-size: 12px; font-weight: 600;
}
.package-card-body { padding: 25px; }
.package-card-body h4 { font-size: 18px; margin-bottom: 10px; }
.package-duration { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.package-duration i { color: var(--secondary); margin-right: 5px; }
.package-price-row {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 15px; padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}
.package-price { font-size: 24px; font-weight: 700; color: var(--primary); }
.package-price del { font-size: 14px; color: var(--gray); font-weight: 400; }

/* ---------- Testimonial Cards ---------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    height: 100%;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-rating { margin-bottom: 15px; }
.testimonial-rating i { color: var(--accent); font-size: 16px; }
.testimonial-card p { font-size: 15px; color: var(--gray); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img {
    width: 50px; height: 50px; border-radius: 50%;
    object-fit: cover; border: 3px solid var(--gray-light);
}
.testimonial-author h5 { font-size: 15px; margin-bottom: 2px; }
.testimonial-author span { font-size: 12px; color: var(--gray); }

/* ---------- Counters Section ---------- */
.counter-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: var(--white);
}
.counter-item { text-align: center; padding: 20px; }
.counter-item .counter-number {
    font-size: 48px; font-weight: 800;
    font-family: var(--font-primary);
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.counter-item p { margin-top: 8px; font-size: 15px; opacity: 0.85; }

/* ---------- Destinations ---------- */
.destination-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 280px;
    transition: var(--transition);
}
.destination-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.destination-card:hover img { transform: scale(1.1); }
.destination-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(31,41,55,0.9));
    padding: 25px;
    color: var(--white);
}
.destination-overlay h4 { font-size: 20px; color: var(--white); margin-bottom: 5px; }
.destination-overlay span { font-size: 13px; opacity: 0.8; }

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.cta-section h2 { font-size: 38px; color: var(--white); margin-bottom: 15px; }
.cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 30px; }
.btn-cta {
    background: var(--white); color: var(--primary);
    padding: 14px 35px; border-radius: 50px;
    font-weight: 700; font-size: 15px;
    transition: var(--transition);
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); color: var(--primary-dark); }

/* ---------- About Section ---------- */
.about-section .about-img-wrap { position: relative; }
.about-section .about-img-wrap img { border-radius: var(--border-radius-lg); }
.about-experience-badge {
    position: absolute; bottom: 20px; right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-experience-badge .number { font-size: 36px; font-weight: 800; display: block; }
.about-experience-badge span { font-size: 13px; }
.about-features { margin-top: 25px; }
.about-features li {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 12px; font-size: 15px;
}
.about-features li i {
    width: 28px; height: 28px;
    background: rgba(200,127,46,0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
}

/* ---------- FAQ Section ---------- */
.faq-section .accordion-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-section .accordion-button {
    font-weight: 600;
    font-size: 15px;
    padding: 18px 25px;
    color: var(--dark);
    background: var(--white);
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(13,110,253,0.05);
    color: var(--primary);
}
.faq-section .accordion-button:focus { box-shadow: none; }
.faq-section .accordion-body { padding: 0 25px 20px; font-size: 14px; color: var(--gray); }

/* ---------- Blog Cards ---------- */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    height: 100%;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 25px; }
.blog-meta { display: flex; gap: 15px; margin-bottom: 12px; font-size: 12px; color: var(--gray); }
.blog-meta i { color: var(--primary); margin-right: 4px; }
.blog-card-body h4 { font-size: 17px; margin-bottom: 10px; }
.blog-card-body h4 a { color: var(--dark); }
.blog-card-body h4 a:hover { color: var(--primary); }
.blog-card-body p { font-size: 14px; color: var(--gray); }

/* ---------- Gallery ---------- */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(13,110,253,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 32px; color: var(--white); }

/* ---------- Newsletter ---------- */
.newsletter-section {
    background: var(--light);
    padding: 60px 0;
}
.newsletter-form {
    display: flex; gap: 10px; max-width: 500px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1; border: 2px solid var(--gray-light);
    border-radius: 50px; padding: 14px 24px;
    font-size: 14px;
}
.newsletter-form input:focus {
    outline: none; border-color: var(--primary);
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}
.footer-top { padding: 60px 0 40px; }
.footer-brand {
    font-family: var(--font-primary);
    font-size: 28px; font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}
.footer-brand span { color: var(--primary); }
.footer-widget h4 {
    color: var(--white); font-size: 18px;
    margin-bottom: 20px;
    position: relative; padding-bottom: 12px;
}
.footer-widget h4::after {
    content: ''; position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--primary);
    border-radius: 3px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 8px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex; gap: 12px;
    margin-bottom: 15px; font-size: 14px;
}
.footer-contact i { color: var(--primary); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.7); margin-left: 20px; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Floating Buttons ---------- */
.whatsapp-float {
    position: fixed; bottom: 100px; right: 25px;
    width: 55px; height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    animation: floatBounce 2s ease-in-out infinite;
}
.whatsapp-float:hover { color: var(--white); transform: scale(1.1); }
.call-float {
    position: fixed; bottom: 30px; right: 25px;
    width: 55px; height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 22px;
    box-shadow: 0 4px 15px rgba(200,127,46,0.4);
    z-index: 999;
    animation: floatBounce 2s ease-in-out infinite 0.5s;
}
.call-float:hover { color: var(--white); transform: scale(1.1); }
@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed; bottom: 30px; left: 25px;
    width: 45px; height: 45px;
    background: var(--dark);
    border-radius: 50%;
    border: none;
    color: var(--white);
    font-size: 18px;
    display: none;
    align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ---------- Cookie Consent ---------- */
.cookie-consent {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--dark);
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
.cookie-consent.show { display: block; }
.cookie-content {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 15px;
}
.cookie-content p { color: rgba(255,255,255,0.8); margin: 0; font-size: 14px; flex: 1; }
.cookie-buttons { display: flex; gap: 10px; }

/* ---------- Page Banner ---------- */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%) !important;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="2" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 40px 40px;
}
.page-banner h1 { color: var(--white); font-size: 38px; margin-bottom: 10px; position: relative; }
.breadcrumb-nav {
    position: relative;
    display: flex; justify-content: center; gap: 10px;
    font-size: 14px;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.7); }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav span { color: var(--accent); }

/* ---------- Why Choose Us ---------- */
.why-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: var(--white);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.why-card .why-icon {
    width: 65px; height: 65px;
    margin: 0 auto 18px;
    background: rgba(13,110,253,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--primary);
}
.why-card h5 { font-size: 16px; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--gray); margin: 0; }

/* ---------- Popular Routes ---------- */
.route-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex; align-items: center; gap: 15px;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.route-card:hover { box-shadow: var(--shadow); transform: translateX(5px); }
.route-icon {
    width: 50px; height: 50px;
    background: rgba(13,110,253,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 20px;
    flex-shrink: 0;
}
.route-info h5 { font-size: 15px; margin-bottom: 4px; }
.route-info p { font-size: 12px; color: var(--gray); margin: 0; }
.route-price { margin-left: auto; font-weight: 700; color: var(--primary); font-size: 16px; }

/* ---------- Contact Page ---------- */
.contact-info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--gray-light);
    height: 100%;
    transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-info-card i {
    width: 60px; height: 60px;
    background: rgba(13,110,253,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--primary);
    margin: 0 auto 15px;
}
.contact-info-card h5 { font-size: 16px; margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: var(--gray); margin: 0; }

/* ---------- Glassmorphism ---------- */
.glass-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--border-radius);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 36px; }
    .hero-section { min-height: 70vh; }
    .hero-slider { height: 70vh; }
    .hero-slider .swiper-slide { min-height: 70vh; }
    section { padding: 60px 0; }
    .section-header h2 { font-size: 28px; }
    .booking-widget { margin-top: -40px; padding: 25px; }
    .navbar-collapse {
        background: var(--white);
        padding: 15px;
        border-radius: var(--border-radius);
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
    }
}
@media (max-width: 767px) {
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 15px; }
    .hero-section { min-height: 60vh; }
    .hero-slider { height: 60vh; }
    .hero-slider .swiper-slide { min-height: 60vh; }
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev { display: none !important; }
    .hero-subtitle { font-size: 12px; padding: 6px 14px; }
    .booking-widget { margin-top: 0 !important; }
    section { padding: 40px 0; }
    .section-header h2 { font-size: 24px; }
    .counter-item .counter-number { font-size: 36px; }
    .cta-section h2 { font-size: 26px; }
    .page-banner { padding: 80px 0 40px; }
    .page-banner h1 { font-size: 28px; }
    .newsletter-form { flex-direction: column; }
    .cookie-content { flex-direction: column; text-align: center; }
    .footer-bottom { text-align: center; }
    .footer-bottom .text-md-end { text-align: center !important; margin-top: 10px; }
    .oneway-route-card .route-card-image { height: 160px; }
    .city-from, .city-to { font-size: 16px; }
    .route-price-table td { font-size: 15px; }
    .hero-btns { gap: 10px; }
    .hero-btns .btn { font-size: 13px; padding: 10px 20px; }
}
@media (max-width: 575px) {
    .booking-widget { padding: 20px; margin-top: 0 !important; }
    .booking-widget h3 { font-size: 18px; }
    .vehicle-card-img { height: 180px; }
    .gallery-item { height: 200px; }
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev { display: none !important; }
}

/* ---------- Dark Mode ---------- */
body.dark-mode {
    --white: #1a1a2e;
    --light: #16213e;
    --dark: #eaeaea;
    --dark-light: #cccccc;
    --gray: #a0a0a0;
    --gray-light: #2a2a4a;
    background: #0f0f1a;
    color: #eaeaea;
}
body.dark-mode #mainNavbar { background: #1a1a2e; }
body.dark-mode .service-card,
body.dark-mode .vehicle-card,
body.dark-mode .package-card,
body.dark-mode .testimonial-card,
body.dark-mode .blog-card,
body.dark-mode .why-card,
body.dark-mode .route-card,
body.dark-mode .contact-info-card,
body.dark-mode .booking-widget {
    background: #1a1a2e;
    border-color: #2a2a4a;
}
body.dark-mode .dropdown-menu { background: #1a1a2e; }
body.dark-mode .dropdown-item:hover { background: rgba(13,110,253,0.1); }
body.dark-mode .form-control,
body.dark-mode .form-select {
    background: #16213e;
    border-color: #2a2a4a;
    color: #eaeaea;
}

/* ---------- Animations ---------- */
.fade-in { animation: fadeIn 0.6s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.slide-up { animation: slideUp 0.6s ease forwards; }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- One Way Route Cards ---------- */
.oneway-route-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.oneway-route-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(200,127,46,0.15);
    border-color: transparent;
}
.route-card-header {
    background: linear-gradient(135deg, #2C1810 0%, #C87F2E 100%);
    padding: 28px 25px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.route-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.route-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.oneway-route-card:hover .route-card-image img {
    transform: scale(1.1);
    filter: brightness(0.7);
}
.route-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(200,127,46,0.9));
    color: #ffffff;
    text-align: center;
}
.route-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { transform: translateX(-30%) rotate(0deg); }
    50% { transform: translateX(30%) rotate(5deg); }
}
.route-cities {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.city-from, .city-to {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.route-arrow {
    font-size: 22px;
    color: #FFC107;
    animation: arrowPulse 1.5s ease-in-out infinite;
}
@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(6px); opacity: 0.7; }
}
.route-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}
.route-meta i { margin-right: 5px; color: #FFC107; }
.route-card-body {
    padding: 25px;
    flex: 1;
}
.route-price-table {
    width: 100%;
}
.route-price-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
}
.route-price-table th {
    background: #F8FAFC;
    padding: 12px 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #1F2937;
    border: 1px solid #E5E7EB;
}
.route-price-table td {
    padding: 14px 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #C87F2E;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #E8DDD4;
}
.route-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, #F8FAFC, #EEF2FF);
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}
.price-item:hover {
    background: linear-gradient(135deg, #EEF2FF, #DBEAFE);
    transform: translateX(5px);
    border-color: #0D6EFD;
}
.vehicle-type {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}
.vehicle-type i { color: #0D6EFD; margin-right: 8px; }
.vehicle-price {
    font-size: 20px;
    font-weight: 800;
    color: #0D6EFD;
    font-family: 'Poppins', sans-serif;
}
.route-card-footer {
    padding: 0 25px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.route-call-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C87F2E, #A0621E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(200,127,46,0.3);
    transition: all 0.3s ease;
}
.route-call-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(200,127,46,0.4);
    color: #fff;
}
.route-whatsapp-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
}
.route-whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    color: #fff;
}

/* Why Mini Cards */
.why-mini-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.why-mini-card:hover {
    box-shadow: 0 15px 40px rgba(13,110,253,0.12);
    transform: translateY(-5px);
    border-color: #0D6EFD;
}
.why-mini-card i {
    font-size: 32px;
    color: #0D6EFD;
    margin-bottom: 12px;
    display: block;
    transition: all 0.3s ease;
}
.why-mini-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #00B894;
}
.why-mini-card h6 {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 700;
}
.why-mini-card p {
    font-size: 12px;
    color: #6B7280;
    margin: 0;
}

/* ---------- Hero Slider Nav Buttons ---------- */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
}
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(200,127,46,0.8);
    border-color: transparent;
    transform: scale(1.1);
}
.hero-slider .swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    width: 12px;
    height: 12px;
    opacity: 1;
}
.hero-slider .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}

/* ---------- Blog Sidebar ---------- */
.blog-sidebar-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--gray-light);
    overflow: visible;
    height: auto !important;
    width: 100%;
}
.blog-sidebar-card h5 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

/* Fix section overflow scrollbar */
section {
    overflow-x: hidden;
    overflow-y: visible;
}

/* ---------- Blog Content (CKEditor Output) ---------- */
.blog-content h1, .blog-content h2, .blog-content h3,
.blog-content h4, .blog-content h5, .blog-content h6 {
    margin-top: 25px;
    margin-bottom: 12px;
    font-family: var(--font-primary);
    color: var(--dark);
}
.blog-content h2 { font-size: 24px; }
.blog-content h3 { font-size: 20px; }
.blog-content h4 { font-size: 18px; }
.blog-content p { margin-bottom: 16px; color: var(--dark-light); line-height: 1.8; }
.blog-content ul, .blog-content ol { margin-bottom: 16px; padding-left: 25px; }
.blog-content li { margin-bottom: 6px; color: var(--dark-light); line-height: 1.7; }
.blog-content a { color: var(--primary); text-decoration: underline; }
.blog-content a:hover { color: var(--primary-dark); }
.blog-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(200,127,46,0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--gray);
}
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
}
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}
.blog-content table th {
    background: var(--primary);
    color: white;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 14px;
}
.blog-content table td {
    padding: 10px 15px;
    border: 1px solid var(--gray-light);
    font-size: 14px;
}
.blog-content table tr:nth-child(even) td { background: var(--light); }
.blog-content strong { color: var(--dark); font-weight: 700; }
.blog-content code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    color: var(--primary-dark);
}
.blog-content pre {
    background: var(--dark);
    color: #f8f8f2;
    padding: 20px;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 13px;
    margin-bottom: 20px;
}
.blog-content hr {
    border: none;
    border-top: 2px solid var(--gray-light);
    margin: 25px 0;
}

/* ---------- Fix sidebar column height stretching ---------- */
.align-self-start { align-self: flex-start !important; }
.align-self-start .blog-sidebar-card,
.align-self-start .service-card {
    height: auto !important;
    min-height: unset !important;
}
