/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    overflow-x: hidden;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

/* Top Bar */
.top-bar {
    background-color: #ff5722;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    font-size: 14px;
    font-weight: 500;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 8px 12px;
        font-size: 11px;
        gap: 8px;
        overflow-x: auto;
    }
    .top-bar-contact {
        gap: 10px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .top-bar-contact a {
        gap: 4px;
        font-size: 11px;
    }
    .top-bar-social {
        gap: 8px;
        flex-shrink: 0;
    }
}


/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

/* Header */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
    position: relative;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav {
    margin-left: auto;
    margin-right: 30px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #ff9800;
}

/* Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Slide 1 from top */
.slide:nth-of-type(1) {
    transform: translateY(-100%);
}

/* Slide 2 from left */
.slide:nth-of-type(2) {
    transform: translateX(-100%);
}

/* Slide 3 from bottom */
.slide:nth-of-type(3) {
    transform: translateY(100%);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}

.slide-content {
    max-width: 900px;
    padding: 20px;
    color: white;
}

/* Animations */
.slide-heading {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out 0.6s; /* Delay for heading */
}

.slide.active .slide-heading {
    opacity: 1;
    transform: translateY(0);
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out 0.9s; /* Delay for buttons */
}

.slide.active .slide-buttons {
    opacity: 1;
    transform: translateX(0);
}

/* Buttons */
.btn {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: #f76a35;
    color: white;
    border: 2px solid #f76a35;
    box-shadow: 0 4px 15px rgba(139, 46, 46, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 46, 46, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: #ff9800;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .slide-heading {
        font-size: 2.5rem;
    }
    .hero-slider {
        height: 55vh;
        min-height: 350px;
    }
    .floating-form-container {
        margin: -100px auto 50px auto;
    }
    .slide-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }
    .slide-buttons .btn {
        width: 48%;
        padding: 10px 5px;
        font-size: 0.85rem;
    }
    .header {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav {
        display: none;
        width: 100%;
        margin: 0;
    }
    .nav.active {
        display: block !important;
    }
    .nav ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .nav-contact-btn {
        display: none;
    }
    .nav-contact-btn.active {
        display: flex !important;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-container {
        flex-direction: column-reverse;
    }
}

/* Floating Form */
/* Booking Card Form (Desktop Horizontal Bar + Mobile Stacked Card) */
.floating-form-container {
    position: relative;
    max-width: 1240px;
    margin: -50px auto 50px auto;
    z-index: 50;
    padding: 0 20px;
}

.booking-card-form {
    background: #fbfbfa;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 12px 20px 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.booking-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 18px 8px 0;
    border-right: 1px solid #e5e9f0;
    flex: 1;
    position: relative;
}

.booking-row:nth-child(3) {
    border-right: 1px solid #e5e9f0;
    padding-right: 25px;
}

.booking-row-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-row-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.booking-row-content label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #7a889b;
    text-transform: uppercase;
    margin: 0;
}

.booking-row-content select,
.booking-row-content input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14.5px;
    font-weight: 700;
    color: #1c2a38;
    width: 100%;
    cursor: pointer;
    padding: 2px 0;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.booking-row-arrow,
.booking-row-calendar {
    font-size: 12px;
    color: #667788;
    pointer-events: none;
    flex-shrink: 0;
}

.booking-card-btn {
    background: #ff8c00;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 700;
    margin-left: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(255, 140, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-card-btn:hover {
    background: #e07b00;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 140, 0, 0.45);
}

@media (max-width: 992px) and (min-width: 769px) {
    .floating-form-container {
        max-width: 96%;
        padding: 0 10px;
    }
    .booking-row {
        padding-right: 10px;
        gap: 8px;
    }
    .booking-card-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .floating-form-container {
        max-width: 600px;
        margin: -80px auto 40px auto;
        padding: 0 15px;
    }
    .booking-card-form {
        flex-direction: column;
        align-items: stretch;
        padding: 20px 20px;
        border-radius: 20px;
        gap: 0;
    }
    .booking-row {
        border-right: none;
        border-bottom: 1px solid #edf0f5;
        padding: 12px 0;
        gap: 12px;
        width: 100%;
    }
    .booking-row:nth-child(3) {
        border-right: none;
        border-bottom: none;
        padding-right: 0;
    }
    .booking-row-content select,
    .booking-row-content input {
        font-size: 14px;
    }
    .booking-card-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
        padding: 14px;
        font-size: 16px;
        border-radius: 12px;
    }
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
    border-radius: 20px;
    border: 5px solid #8b2e2e;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.about-image img:hover {
    border-color: #ff9800;
    transform: translateY(-5px);
}

/* All India Tours Section */
.tours-section {
    background: linear-gradient(135deg, #d84315, #8d6e63);
    padding: 80px 50px;
    color: white;
}

.tours-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.tours-info {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
}

.tours-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 2px;
}

.heading-divider {
    height: 3px;
    width: 100%;
    max-width: 280px;
    background: #ffffff;
    margin: 20px 0 30px;
}

.tours-info p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
}

.tours-slider-wrapper {
    flex: 2;
    overflow: hidden;
    position: relative;
}

.tours-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.tours-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.tour-card {
    min-width: 240px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

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

@media (max-width: 768px) {
    .tour-card img {
        height: 260px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
}

.card-content {
    padding: 25px 20px;
    text-align: center;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

.btn-outline-orange {
    display: inline-block;
    padding: 10px 25px;
    background: #ff7f3f;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.3s;
    letter-spacing: 0.5px;
}

.btn-outline-orange:hover {
    background: #e66a2c;
}

@media (max-width: 992px) {
    .tours-container {
        flex-direction: column;
    }
    .tours-info {
        max-width: 100%;
    }
}

.about-content {
    flex: 1;
}

/* Places Marquee */
.places-marquee-wrapper {
    background-color: #f76a35; /* Custom orange */
    overflow: hidden;
    padding: 15px 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.places-marquee {
    display: inline-flex;
    animation: marqueeScroll 25s linear infinite;
}

.places-marquee span {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 50px;
    letter-spacing: 0.5px;
}

.places-marquee svg {
    margin-left: 10px;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background-color: #212e47; /* Dark blue-grey background */
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b3c;
    line-height: 1.4;
    margin-right: 10px;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Box Colors */
.box-green { background-color: #f2f7ec; }
.icon-green { background-color: #9cb146; }

.box-purple { background-color: #f0f0ff; }
.icon-purple { background-color: #7b42f6; }

.box-teal { background-color: #e0f2ec; }
.icon-teal { background-color: #17967f; }

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

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

/* Vehicles Grid */
.vehicles-section {
    padding: 80px 20px;
    background: #fdfdfd;
}

.vehicles-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.vehicle-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vehicle-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .vehicle-card img {
        height: 260px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.vehicle-amenities {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    color: #666;
    width: 100%;
}

.vehicle-amenities span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vehicle-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.btn-vehicle-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f76a35;
    color: #f76a35;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-vehicle-call:hover {
    background: #f76a35;
    color: #fff;
}

.btn-vehicle-book {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    height: 44px;
    background-color: #f76a35;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-vehicle-book:hover {
    background-color: #d85c2c;
    color: white;
}

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

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

/* How It Works Section */
.how-it-works-section {
    padding: 60px 20px;
    background: #f76a35; /* Updated background color */
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-works-header .header-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.how-it-works-header .header-icon svg {
    stroke: #ffffff;
}

.how-it-works-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff; /* White text */
    margin-bottom: 10px;
}

.how-it-works-header p {
    color: rgba(255, 255, 255, 0.9); /* Lighter text */
    font-size: 15px;
}

.how-it-works-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.steps-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.step-item.right-align {
    text-align: right;
    justify-content: flex-end;
}

.step-item.left-align {
    text-align: left;
    justify-content: flex-start;
}

.step-num {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.step-text h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.step-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-icon svg {
    stroke: #f76a35;
}

.step-item:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
}

.center-image-container {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.how-it-works-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 360px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
    animation: floatCar 6s ease-in-out infinite;
}

/* Animations */
@keyframes floatCar {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .how-it-works-content {
        flex-direction: column;
    }
    
    .center-image-container {
        order: -1;
        margin-bottom: 50px;
    }
    
    .step-item.right-align {
        text-align: left;
        justify-content: flex-start;
        flex-direction: row-reverse;
    }
    
    .steps-column {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .how-it-works-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .how-it-works-header {
        margin-bottom: 20px;
    }
    .center-image-container {
        grid-column: span 2;
        order: -1;
        margin-bottom: 20px;
        padding: 0;
    }
    .steps-column {
        display: contents;
    }
    .step-item, .step-item.right-align, .step-item.left-align {
        flex-direction: column !important;
        align-items: center;
        text-align: center !important;
        gap: 10px;
    }
    .step-icon {
        order: -1; /* Always on top */
        margin: 0 auto 5px auto;
    }
    .step-text {
        order: 2; /* Always below icon */
    }
    .step-text h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    .step-text p {
        font-size: 13px;
    }
}

/* Stats Section */
.stats-section {
    background-color: #212e47; /* Logo Dark Blue */
    padding: 40px 0;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.stat-icon svg {
    stroke: #d32f2f; /* Logo Red */
}

.stat-text h4 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.stat-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

@media (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 25px 15px;
    }
    .stat-feature {
        width: 100%;
        min-width: 0;
        margin-bottom: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 18px 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    .stat-feature:last-child {
        grid-column: span 2;
    }
}

/* Tour Packages Section */
.tour-packages-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.tours-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tours-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 15px;
}

.tours-header p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.tours-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tour-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
}

.tour-card:nth-child(1) { animation-delay: 0.1s; }
.tour-card:nth-child(2) { animation-delay: 0.2s; }
.tour-card:nth-child(3) { animation-delay: 0.3s; }
.tour-card:nth-child(4) { animation-delay: 0.4s; }
.tour-card:nth-child(5) { animation-delay: 0.5s; }
.tour-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideUpFade {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.tour-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.tour-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f76a35;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    flex: 1;
}

.tour-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 46px;
    background-color: #f76935;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.btn-book:hover {
    background-color: #e05e2e;
    color: white;
}

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

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

/* Info Split Section (FAQ & Services) */
.info-split-section {
    padding: 80px 20px;
    background-color: #f2f7ed; /* Light mint/green background */
    overflow: hidden;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.info-left, .info-right {
    flex: 1;
}

/* Common Text Styles */
.info-subtitle {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.info-heading {
    font-size: 32px;
    color: #1a2b3c;
    margin-bottom: 30px;
    font-weight: 800;
}

/* FAQ Styles */
.info-left {
    padding: 20px 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: #111;
    font-size: 16px;
}

.faq-icon {
    font-size: 24px;
    color: #666;
    font-weight: 400;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    background: #ffffff;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
    opacity: 1;
}

.faq-answer p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Services Styles */
.info-right {
    padding: 20px 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item.service-vip { border-color: #aeb442; }
.service-item.service-travel { border-color: #8b5cf6; }
.service-item.service-price { border-color: #10b981; }

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.service-vip .service-icon { background-color: #aeb442; }
.service-travel .service-icon { background-color: #8b5cf6; }
.service-price .service-icon { background-color: #10b981; }

.service-content h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #111;
}

.service-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Animations */
.animate-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.animate-slide-right.show {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.animate-slide-left.show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 992px) {
    .info-container {
        flex-direction: column;
    }
}

/* Travelers & Preferences Section */
.preferences-section {
    background-color: #ffffff;
    padding: 40px 5% 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.preferences-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.preferences-header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-featured {
    display: inline-flex;
    align-items: center;
    background-color: #fff0f0;
    color: #f76a35;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    gap: 6px;
    width: fit-content;
}

.badge-featured .dot-red {
    width: 6px;
    height: 6px;
    background-color: #f76a35;
    border-radius: 50%;
}

.preferences-title {
    font-size: 36px;
    color: #1a2b3c;
    margin: 0;
    font-weight: 800;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    background-color: #212e47;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.btn-view-all:hover {
    background-color: #162032;
}

.preferences-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.preferences-grid::-webkit-scrollbar {
    display: none;
}

.preference-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 200px;
    height: 280px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.preference-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.preference-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    border-radius: 12px;
}

.preference-card-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.preference-info h3 {
    color: white;
    font-size: 20px;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.preference-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

.btn-arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #1a2b3c;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-arrow-circle:hover {
    transform: scale(1.1);
}

.preferences-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.pref-dot {
    width: 25px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.pref-dot.active {
    background-color: #f76a35;
    width: 35px;
}

@media (max-width: 1200px) {
    .preference-card {
        flex: 0 0 calc(25% - 15px);
    }
}
@media (max-width: 992px) {
    .preference-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}
@media (max-width: 768px) {
    .preferences-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .preference-card {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 480px) {
    .preference-card {
        flex: 0 0 100%;
    }
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.92)), url('../images/rajasthan_tour.png') center/cover no-repeat;
    padding: 60px 20px 20px;
    color: #cbd5e1;
    position: relative;
    font-family: inherit;
}

.main-footer .newsletter h4,
.main-footer .links-col h4,
.main-footer .contact-col h4 {
    color: #ffffff;
}

.main-footer .brand-col p,
.main-footer .newsletter p,
.main-footer .links-col a,
.main-footer .contact-text span,
.main-footer .copyright p {
    color: #cbd5e1;
}

.main-footer .links-col a:hover {
    color: #ef4444;
}

.main-footer .contact-text strong {
    color: #ffffff;
}

.main-footer .contact-icon,
.main-footer .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.main-footer .social-icons a:hover {
    background-color: #ef4444;
}

.main-footer .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
}

.contact-address-line {
    display: inline-block;
    white-space: nowrap;
}

.footer-logo h2 {
    margin: 0 0 15px 0;
}

.brand-col p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter h4 {
    color: #1a202c;
    font-size: 18px;
    margin-bottom: 10px;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.input-group {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 15px;
}

.input-icon {
    display: flex;
    align-items: center;
    color: #a0aec0;
    margin-right: 10px;
}

.newsletter-form input {
    border: none;
    outline: none;
    padding: 10px 0;
    width: 100%;
    background: transparent;
    font-size: 14px;
}

.btn-subscribe {
    background-color: #e53935;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #c62828;
}

.links-col h4, .contact-col h4 {
    color: #1a202c;
    font-size: 18px;
    margin-bottom: 20px;
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col li {
    margin-bottom: 12px;
}

.links-col a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.links-col a:hover {
    color: #f76a35;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-icon {
    background-color: #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2d3748;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text span {
    font-size: 13px;
    color: #718096;
    margin-bottom: 4px;
}

.contact-text strong {
    color: #2d3748;
    font-size: 14px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.copyright p {
    font-size: 14px;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background-color: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #f76a35;
    color: #fff;
}

.scroll-top-btn {
    background-color: #e53935;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    right: -40px;
    bottom: 0;
    transition: background-color 0.3s;
}

.scroll-top-btn:hover {
    background-color: #c62828;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .scroll-top-btn {
        right: 0;
        position: relative;
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .scroll-top-btn {
        margin-top: 10px;
    }
}

/* About Us Detailed Section */
.about-us-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}
.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}
.about-images-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
    position: relative;
}
.about-experience-box {
    background-color: #00b4d8; /* Cyan color from design */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    border-radius: 80px 0 0 0;
}
.about-experience-box h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}
.about-boat-img {
    border-radius: 0 0 0 80px;
    overflow: hidden;
}
.about-boat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-kayak-img {
    grid-row: span 2;
    border-radius: 0 150px 150px 0;
    overflow: hidden;
}
.about-kayak-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content-col {
    flex: 1;
}
.about-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a2b3c;
    margin-bottom: 20px;
    line-height: 1.2;
}
.highlight-red {
    color: #d32f2f;
    border-bottom: 4px solid #d32f2f;
}
.about-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}
.about-features-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.about-feature-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.feature-hex {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin-bottom: 15px;
}
.icon-red {
    background-color: #d32f2f;
}
.icon-green {
    background-color: #7cb342;
}
.feature-text h4 {
    font-size: 18px;
    color: #1a2b3c;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
.about-btn {
    border-radius: 30px;
    padding: 12px 30px;
    display: inline-block;
}

@media (max-width: 992px) {
    .about-us-container {
        flex-direction: column;
    }
    .about-images-grid {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    .about-features-row {
        flex-direction: column;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(rgba(33, 46, 71, 0.9), rgba(33, 46, 71, 0.9)), url('../images/mount_abu.png') center/cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
}
.choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
}
.choose-us-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}
.wavy-underline {
    width: 60px;
    height: 6px;
    margin: 0 auto 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 4"><path fill="none" stroke="%23ff1744" stroke-width="2" d="M0,2 Q5,0 10,2 T20,2"/></svg>') repeat-x;
    background-size: 20px 4px;
}
.choose-us-header p {
    font-size: 16px;
    margin-bottom: 50px;
    color: #e0e0e0;
}
.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.choose-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 20px;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* faint pattern background */
    background-image: repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 1px, transparent 1px, transparent 10px);
    cursor: pointer;
}
.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.choose-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.5s ease;
}
.choose-card:hover .choose-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}
.choose-icon-wrap::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 2px dashed rgba(255,255,255,0.7);
    border-radius: 50%;
    animation: rotateDash 10s linear infinite;
}
@keyframes rotateDash {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.icon-green-solid { background-color: #00c853; }
.icon-red-solid { background-color: #ff1744; }
.icon-purple-solid { background-color: #651fff; }
.icon-olive-solid { background-color: #8bc34a; }

.choose-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a2b3c;
}
.choose-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .choose-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Vision Mission Values Section */
.vmv-section {
    padding: 80px 20px;
    background-color: #f8f9fa; /* Light gray background */
}
.vmv-container {
    max-width: 1200px;
    margin: 0 auto;
}
.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.vmv-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}
.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, #212e47 0%, #d32f2f 100%);
    z-index: -1;
    transition: height 0.4s ease;
}
.vmv-card:hover {
    transform: translateY(-15px);
    color: white;
    box-shadow: 0 15px 40px rgba(211, 47, 47, 0.2);
}
.vmv-card:hover::before {
    height: 100%;
}
.vmv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.icon-vision { background-color: #00b4d8; }
.icon-mission { background-color: #ff9800; }
.icon-value { background-color: #4caf50; }

.vmv-card:hover .vmv-icon {
    transform: scale(1.1) rotate(360deg);
    background-color: white;
}
.vmv-card:hover .vmv-icon svg {
    stroke: #d32f2f;
}

.vmv-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a2b3c;
    transition: color 0.4s ease;
}
.vmv-card:hover h3 {
    color: white;
}
.vmv-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    transition: color 0.4s ease;
}
.vmv-card:hover p {
    color: rgba(255,255,255,0.9);
}

@media (max-width: 992px) {
    .vmv-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* =========================================
   Navigation Dropdown Styles
========================================= */
.nav ul li.dropdown {
    position: relative;
}

.nav ul li.dropdown .dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

.nav ul li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 5px 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav ul li .dropdown-menu li {
    margin: 0;
    display: block;
    width: 100%;
}

.nav ul li .dropdown-menu li a {
    padding: 8px 20px;
    line-height: 1.4;
    color: #212e47;
    font-size: 15px;
    font-weight: 500;
    display: block;
    width: 100%;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.nav ul li .dropdown-menu li a:hover {
    background-color: #fffafb;
    color: #d32f2f;
    padding-left: 28px;
}

/* =========================================
   Taxi / Tour Details Page Layout
========================================= */
.tour-details-wrapper {
    background-color: #f9f9fc;
    padding: 60px 0;
}

.tour-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
}

/* Main Content Area */
.tour-main-content {
    background: transparent;
}

.tour-gallery-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.tour-gallery-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.tour-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-header-left h1 {
    font-size: 32px;
    font-weight: 800;
    color: #212e47;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-badge {
    background-color: #10b981;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.tour-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 14px;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-meta svg {
    color: #d32f2f;
}

/* Rating Badge */
.rating-badge {
    background-color: #f59e0b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Content Box */
.tour-content-box {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.tour-content-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #212e47;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.tour-content-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Highlights */
.tour-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tour-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
}

.tour-highlights-list li .icon {
    color: #d32f2f;
    background-color: rgba(211, 47, 47, 0.1);
    padding: 6px;
    border-radius: 50%;
    display: flex;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #f0f0f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -42px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #d32f2f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-content h4 {
    color: #212e47;
    font-size: 18px;
    margin-bottom: 5px;
}

.timeline-content .time {
    color: #888;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.timeline-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Includes & Excludes */
.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.icon-check { color: #10b981; }
.icon-cross { color: #ef4444; }

/* Image Gallery Thumbs */
.tour-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.tour-thumbs-grid img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.tour-thumbs-grid img:hover {
    opacity: 0.8;
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: #fcfcfc;
    color: #212e47;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-answer {
    padding: 20px;
    background-color: white;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #eee;
    display: none;
}

/* Reviews */
.review-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

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

.review-score h2 {
    font-size: 48px;
    color: #212e47;
    font-weight: 800;
    margin: 0;
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 5px;
}

.review-bars {
    flex: 1;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}

.bar-track {
    flex: 1;
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: #d32f2f;
}


/* Sidebar Widgets */
.sidebar-widget {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #212e47;
    margin-bottom: 20px;
}

/* Booking Widget */
.booking-widget .price {
    font-size: 28px;
    font-weight: 800;
    color: #d32f2f;
    margin-bottom: 20px;
}

.booking-widget .price span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #555;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #333;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #d32f2f;
}

.passenger-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.passenger-selector:last-child {
    border-bottom: none;
}

.qty-btn-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.qty-btn:hover {
    border-color: #d32f2f;
    color: #d32f2f;
}

.btn-book {
    width: 100%;
    background-color: #f76935;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

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

/* Why Book With Us Widget */
.why-book-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-book-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

.why-book-list li svg {
    color: #d32f2f;
}

/* Responsive */
@media (max-width: 992px) {
    .tour-details-container {
        grid-template-columns: 1fr;
    }
    .includes-grid {
        grid-template-columns: 1fr;
    }
    .tour-thumbs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   Provider Details Widget
========================================= */
.provider-widget {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.provider-header {
    background-color: #f4f6f8;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.provider-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.provider-info h4 {
    color: #212e47;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
}

.provider-info p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.provider-contact-box {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.provider-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.provider-contact-item:first-child {
    border-bottom: 1px solid #eee;
}

.provider-contact-icon {
    background-color: #d32f2f;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-contact-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.provider-action-btns {
    display: flex;
    gap: 15px;
}

.btn-whatsapp {
    flex: 1;
    background-color: #25D366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-chat {
    flex: 1;
    background-color: #d32f2f;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-chat:hover {
    background-color: #b71c1c;
}

/* =========================================
   Global Animations
========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.fade-in-up { animation-name: fadeInUp; }
.slide-in-left { animation-name: slideInLeft; }
.slide-in-right { animation-name: slideInRight; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }


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

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-call {
    background-color: #F89B29;
    box-shadow: 0 0 20px rgba(248, 155, 41, 0.6);
}
.floating-call:hover {
    box-shadow: 0 0 25px rgba(248, 155, 41, 0.8);
}

.floating-whatsapp {
    background-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}
.floating-whatsapp:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.8);
}

/* Header Pill Button */
.nav-contact-btn {
    margin-left: 20px;
}

.pill-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #d32f2f;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4);
}

.pill-btn:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    color: white;
}

@media (max-width: 992px) {
    .nav-contact-btn {
        display: none;
    }
}

/* Right Floating Buttons with Pulse Animation */
.right-floating-btns {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
}

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

/* Pulse Animation */
.float-btn::before, .float-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite ease-out;
}

.float-btn::after {
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.float-call {
    background-color: #007BFF;
}
.float-call::before, .float-call::after {
    background-color: #007BFF;
}

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

/* ==========================================================================
   Gallery Lightbox Modal Styles (Zoom In / Zoom Out)
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1;
}

.lightbox-header {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-sizing: border-box;
}

.lightbox-counter {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
}

.lightbox-controls {
    display: flex;
    gap: 10px;
}

.lb-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-btn:hover {
    background: #d32f2f;
    border-color: #d32f2f;
    transform: translateY(-2px);
}

.lightbox-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

.lightbox-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

#lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: transform 0.25s ease-out;
    user-select: none;
}

.lb-nav {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 15;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lb-nav:hover {
    background: #d32f2f;
    transform: scale(1.1);
}

/* ==========================================================================
   Blog Section & Single Blog Page Styles
   ========================================================================== */
.blog-main-wrapper {
    padding: 60px 0 80px;
    background-color: #f8fafc;
}

.blog-grid-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-articles-column {
    flex: 2.2;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.06);
}

.blog-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d32f2f;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 14px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 14px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #d32f2f;
}

.blog-card-excerpt {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 22px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d32f2f;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

/* Sidebar Widgets */
.blog-sidebar-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-sidebar-widget {
    background: #ffffff;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.blog-sidebar-widget h3 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.blog-sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d32f2f;
    border-radius: 2px;
}

.sidebar-popular-posts {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popular-post-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.popular-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.popular-post-info h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.popular-post-info h4 a {
    color: #1e293b;
    text-decoration: none;
}

.popular-post-info h4 a:hover {
    color: #d32f2f;
}

.popular-post-info span {
    font-size: 12px;
    color: #94a3b8;
}

/* Single Blog Page Custom Styling */
.single-blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.single-blog-article {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
}

.single-blog-header {
    margin-bottom: 30px;
}

.single-blog-header h1 {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 20px;
}

.blog-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.toc-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-left: 4px solid #d32f2f;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.toc-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.toc-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-box ul li {
    margin-bottom: 8px;
}

.toc-box ul li a {
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.toc-box ul li a:hover {
    color: #d32f2f;
}

.single-blog-content {
    font-size: 16.5px;
    line-height: 1.8;
    color: #334155;
}

.single-blog-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 40px;
    margin-bottom: 18px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
}

.single-blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 28px;
    margin-bottom: 14px;
}

.blog-quote {
    background: #fff5f5;
    border-left: 4px solid #d32f2f;
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 17px;
    color: #991b1b;
    border-radius: 0 8px 8px 0;
}

.blog-author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid #e2e8f0;
}

.blog-author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-info h4 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #0f172a;
}

.blog-author-info p {
    margin: 0;
    font-size: 13.5px;
    color: #64748b;
}

@media (max-width: 992px) {
    .blog-grid-layout {
        flex-direction: column;
    }
    .single-blog-article {
        padding: 25px;
    }
    .single-blog-header h1 {
        font-size: 26px;
    }
}

/* ==========================================================================
   Online Booking Banner Section (Above Footer)
   ========================================================================== */
.online-booking-section {
    padding: 50px 20px;
    background-color: #f8fafc;
}

.online-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff6ef;
    border: 1px solid #feddc7;
    border-radius: 24px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(242, 84, 45, 0.05);
    box-sizing: border-box;
}

.online-booking-illustration {
    width: 180px;
    height: 180px;
    border-radius: 18px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.online-booking-main {
    flex: 1;
}

.online-tag {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 800;
    color: #ff5427;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.online-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.3;
}

.online-subtitle {
    font-size: 14px;
    color: #475569;
    margin: 0 0 20px;
    line-height: 1.5;
}

.online-booking-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.online-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.online-badge-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.online-badge-item span {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
}

.online-booking-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    flex-shrink: 0;
}

.online-logo {
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.banner-book-now-btn {
    background: linear-gradient(135deg, #ff5722 0%, #f44336 100%);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(244, 67, 54, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.banner-book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 67, 54, 0.45);
    color: #ffffff;
}

.online-trust-list {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11.5px;
    font-weight: 600;
    color: #475569;
}

.online-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 992px) {
    .online-booking-container {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .online-booking-action {
        align-items: center;
    }
    .online-booking-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    .online-trust-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Toast Notification for Save & Share */
.custom-toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f172a;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 999999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.custom-toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* About Founder Single Image Styling */
.about-founder-img-wrap {
    width: 100%;
    max-width: 540px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.about-founder-img-wrap img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-founder-img-wrap:hover img {
    transform: scale(1.03);
}



