/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #FAF7F2;
    /* Warm Jaisalmer Sandstone background for the page below the slider */
}

/* Top Bar Styles */
.top-bar-row-1,
.top-bar-row-2 {
    display: contents;
}

.top-bar {
    background-color: #1A120B;
    color: #e5e7eb;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.top-bar a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #C58F00;
}

.top-bar i {
    color: #C58F00;
    margin-right: 6px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
}

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

.top-bar-center i {
    color: #e5e7eb;
    margin: 0;
    font-size: 14px;
    transition: color 0.3s;
}

.top-bar-center a:hover i {
    color: #ec5100;
}

/* Header Styles */
.main-header {
    background-color: white;
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    color: #111;
    border-bottom: 1px solid #eaeaea;
}

.logo {
    display: flex;
    align-items: center;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-menu a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-menu a .arrow {
    font-size: 12px;
    color: #6b7280;
    transition: color 0.3s;
}

.main-menu a.active,
.main-menu a:hover {
    color: #C58F00;
    /* Jaisalmer Gold */
}

.main-menu a.active .arrow,
.main-menu a:hover .arrow {
    color: #C58F00;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #FFF9EE;
    border: 1px solid #F5E3BF;
    border-radius: 8px;
    padding: 10px 18px;
    height: 46px;
    box-sizing: border-box;
}

.contact-card i {
    color: #C58F00;
    font-size: 22px;
}

.contact-card-text {
    line-height: 1.3;
}

.contact-card-text .phone-number {
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.contact-card-text .availability {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.book-now-btn {
    background-color: #ec5100;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

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

/* Mobile toggle button and call button hidden by default on desktop */
.mobile-toggle-btn,
.mobile-header-call {
    display: none !important;
}

/* Sticky Call & WhatsApp Action Buttons */
.sticky-action-btns {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(4px);
}

.sticky-btn i {
    font-size: 20px;
}

.sticky-btn-call {
    background: linear-gradient(135deg, #012853 0%, #001a38 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sticky-btn-call:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(22, 55, 124, 0.4);
    color: #ffffff;
}

.sticky-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: whatsappPulse 2.5s infinite;
}

.sticky-btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .sticky-action-btns {
        bottom: 20px;
        right: 15px;
        gap: 10px;
    }

    .sticky-btn {
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 40px;
    }

    .sticky-btn i {
        font-size: 17px;
    }
}

/* Responsive Hero Slider Typography */
.hero-title {
    font-size: 50px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    word-break: break-word;
}

.hero-subtitle {
    font-size: 18px;
    color: #f1f5f9;
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }
}


/* Hero Slider Styles */
.hero-slider {
    position: relative;
    min-height: 580px;
    height: 72vh;
    max-height: 720px;
    width: 100%;
    overflow: hidden;
    background-color: #0f172a;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
    overflow: hidden;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
}

/* Background Image with Ken Burns Zoom Effect */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.15);
    transition: transform 6.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* Dark Gradient Overlay for Maximum Legibility */
.slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 2;
}

/* Slide Content Container */
.slide-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 0 24px;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Slide Badge */
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(249, 115, 22, 0.55);
    color: #fb923c;
    padding: 7px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
    opacity: 0;
    transform: translateY(-25px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

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

/* Slide Title */
.slide-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.16;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(35px);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s, opacity 0.9s ease 0.35s;
}

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

/* Slide Tagline */
.slide-tagline {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 32px;
    color: #e2e8f0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(35px);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s, opacity 0.9s ease 0.55s;
}

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

/* Slide Buttons Group */
.slide-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(35px) scale(0.95);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s, opacity 0.9s ease 0.75s;
}

.slide.active .slide-btn-group {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Individual Slide Buttons */
.slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    border: none;
    outline: none;
}

/* Book Now Button Style & Animation */
.slide-btn.btn-book {
    background: linear-gradient(135deg, #ec5100 0%, #d44700 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.45);
}

.slide-btn.btn-book:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 32px rgba(249, 115, 22, 0.65);
    background: linear-gradient(135deg, #fb923c 0%, #ec5100 100%);
}

.slide-btn.btn-book i {
    transition: transform 0.3s ease;
}

.slide-btn.btn-book:hover i {
    transform: translateX(4px);
}

/* WhatsApp Button Style & Animation */
.slide-btn.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.slide-btn.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #34e77a 0%, #25D366 100%);
}

.slide-btn.btn-whatsapp i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.slide-btn.btn-whatsapp:hover i {
    animation: iconWiggle 0.6s ease infinite alternate;
}

@keyframes iconWiggle {
    0% { transform: rotate(-10deg) scale(1.1); }
    100% { transform: rotate(10deg) scale(1.1); }
}

/* Shimmer Effect on CTA Buttons */
.slide-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(25deg);
    transition: all 0.75s ease;
    opacity: 0;
}

.slide-btn:hover::after {
    left: 130%;
    opacity: 1;
}

/* Slider Controls (Prev / Next Arrows) */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.slider-nav:hover {
    background: #ec5100;
    border-color: #ec5100;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.55);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Indicators (Dots) */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    outline: none;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.slider-dots .dot.active {
    width: 32px;
    border-radius: 10px;
    background: #ec5100;
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.7);
}

/* Booking Search Bar Section (Right Below Hero Slider) */
.hero-booking-section {
    position: relative;
    margin-top: -55px;
    z-index: 20;
    padding: 0 20px 20px;
}

.hero-booking-wrapper {
    max-width: 1120px;
    margin: 0 auto;
}

.hero-booking-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.booking-tabs-nav {
    background: #f1f5f9;
    border-radius: 16px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.booking-tab-item {
    flex: 1;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    padding: 11px 20px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
    outline: none;
}

.booking-tab-item.active {
    background: #ffffff;
    color: #0f172a;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
    gap: 14px;
    align-items: flex-end;
}

.booking-form-grid .form-field-group label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-field-input {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    background: #ffffff;
    outline: none;
    cursor: pointer;
    height: 48px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field-input:focus {
    border-color: #ec5100;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.booking-search-submit {
    width: 100%;
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    padding: 11px 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: all 0.25s ease;
    outline: none;
}

.booking-search-submit:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

/* Responsive Styles for Slider and Booking Form */
@media (max-width: 992px) {
    .hero-slider {
        min-height: 520px;
        height: 65vh;
    }
    .slide-title {
        font-size: 38px;
    }
    .slide-tagline {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .booking-form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .booking-form-grid .form-field-group label {
        display: none !important;
    }
    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    .slider-nav.prev { left: 15px; }
    .slider-nav.next { right: 15px; }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 480px;
        height: 60vh;
    }
    .slide-title {
        font-size: 30px;
    }
    .slide-tagline {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .slide-badge {
        font-size: 11px;
        padding: 5px 14px;
        margin-bottom: 14px;
    }
    .slide-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .hero-booking-section {
        margin-top: 20px;
        padding: 0 15px 15px;
    }
    .slider-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        min-height: 440px;
        height: 58vh;
    }
    .slide-title {
        font-size: 24px;
        line-height: 1.25;
    }
    .slide-tagline {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    .slide-btn-group {
        gap: 10px;
    }
    .slide-btn {
        padding: 10px 20px;
        font-size: 13.5px;
        width: 100%;
        max-width: 220px;
    }
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
    .hero-booking-card {
        padding: 18px 16px;
    }
}


/* Booking Widget */
.booking-widget-wrapper {
    position: absolute;
    bottom: -60px;
    /* To push it out of the slider */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 20;
}

.booking-widget {
    background: #f8fafc;
    /* Updated background color */
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    position: relative;
}

.widget-tabs {
    display: flex;
    gap: 15px;
    position: absolute;
    top: -24px;
    left: 40px;
}

.tab-btn {
    background: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn.active {
    background: #012853;
    /* Blue background */
    color: white;
}

.tab-btn.active i {
    color: white !important;
}

.widget-form {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    align-items: center;
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    gap: 15px;
    transition: border-color 0.3s;
    height: 70px;
}

.input-group:hover {
    border-color: #012853;
}

.input-group .icon {
    font-size: 18px;
    color: #6b7280;
}

.input-content {
    display: flex;
    flex-direction: column;
}

.input-content label {
    font-weight: 700;
    font-size: 15px;
    color: #111827;
}

.input-content span {
    font-size: 12px;
    color: #6b7280;
}

.search-btn {
    background: #012853;
    color: white;
    border: none;
    padding: 0 35px;
    height: 70px;
    /* Match the height of inputs approx */
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #001a38;
}

.widget-footer {
    margin-top: 20px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.widget-footer a {
    color: #012853;
    text-decoration: none;
    font-weight: 600;
}

.widget-footer a:hover {
    text-decoration: underline;
}

/* Specific styling for the 'simplicity' blue background highlight */
.highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-text::after {
    content: '';
    position: absolute;
    right: -4px;
    bottom: 2px;
    width: 18px;
    height: 18px;
    background-color: #012853;
    border-radius: 50%;
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .widget-form {
        flex-wrap: wrap;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .slide h1 {
        font-size: 48px;
    }

    .widget-tabs {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .booking-widget {
        padding: 20px;
    }

    .booking-widget-wrapper {
        bottom: -20px;
    }
}

/* About Section */
.about-section {
    padding: 120px 50px 80px;
    background-color: #ffffff;
}

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.25;
    letter-spacing: -0.8px;
}

.about-content h2:not(:first-child) {
    margin-top: 32px;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 32px;
}

.about-btn {
    background: #111;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.about-btn:hover {
    background: #012853;
    /* Blue on hover */
}

.customer-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -15px;
    object-fit: cover;
}

.avatars .avatar:first-child {
    margin-left: 0;
}

.stats-text {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.stats-text strong {
    color: #111;
    font-weight: 700;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-mask {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    /* Adding a subtle uneven clip-path for that brush look if desired, or just rounded corners */
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-mask img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background-color: #ec5100;
    /* Dark green from the design */
    color: white;
    padding: 30px 40px;
    border-radius: 20px;
    /* Hexagon-ish shape using clip path */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 5px solid white;
    /* To create separation */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-content .years {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
}

.badge-content .years sup {
    font-size: 24px;
    position: absolute;
    top: 5px;
    right: -20px;
}

.badge-content .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 60px;
    }

    .about-image-wrapper {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 20px 60px;
    }

    .about-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Features Banner Section */
.features-banner {
    background-color: #ec5100;
    padding: 30px 50px;
    color: #ffffff;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 260px;
}

.feature-icon {
    font-size: 32px;
}

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

.feature-text p {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
}

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

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

/* Tours Section */
.tours-section {
    padding: 80px 50px;
    background-color: #f9f9f9;
    background-image: url('../images/background-1.webp');
    background-size: cover;
    background-position: center;
}

.tours-header {
    text-align: center;
    margin-bottom: 50px;
}

.tours-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.tours-header p {
    font-size: 16px;
    color: #f1f1f1;
    max-width: 600px;
    margin: 0 auto;
}

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

.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.tour-card:hover .card-image img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.badge.hot {
    background: #ec5100;
    /* Red badge */
}

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

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.location {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: auto;
}

.book-btn {
    background: #012853;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.book-btn:hover {
    background: #001a38;
}

.price {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.price .label {
    font-size: 12px;
    color: #666;
}

.price .amount {
    font-size: 22px;
    font-weight: 800;
    color: #111;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eaeaea;
    padding-top: 15px;
    font-size: 13px;
    color: #444;
    font-weight: 600;
}

.card-footer span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-footer i:not(.info-icon) {
    color: #666;
    font-size: 14px;
}

.card-footer .info-icon {
    color: #aaa;
    font-size: 12px;
}

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

@media (max-width: 768px) {
    .tours-section {
        padding: 60px 20px;
    }

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

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    padding: 100px 50px;
    background-color: #FDF8F0;
    background-image: url('../images/background-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.wcu-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 40, 83, 0.96) 0%, rgba(0, 21, 46, 0.94) 100%);
    z-index: 1;
}

.wcu-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.wcu-images {
    flex: 5;
    position: relative;
}

.wcu-img-wrapper {
    position: relative;
    border-radius: 28px;
    padding: 12px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wcu-img-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 75px rgba(249, 115, 22, 0.2);
}

.wcu-img-main {
    width: 100%;
    height: auto;
    min-height: 440px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* Floating Badges */
.wcu-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.9);
    z-index: 3;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wcu-floating-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.22);
}

.wcu-floating-badge.badge-top {
    top: 25px;
    left: -25px;
}

.wcu-floating-badge.badge-bottom {
    bottom: 25px;
    right: -20px;
}

.wcu-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ec5100;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.wcu-badge-text strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.wcu-badge-text span {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

/* Content Column */
.wcu-content {
    flex: 7;
}

.wcu-sub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: #d44700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.wcu-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.22;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.wcu-lead-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 650px;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(241, 245, 249, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.12);
    border-color: rgba(249, 115, 22, 0.35);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #ec5100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
    transition: all 0.3s ease;
}

.feature-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #ec5100 0%, #d44700 100%);
    color: #ffffff;
}

.feature-text h3 {
    font-size: 16.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Action Buttons */
.wcu-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.wcu-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #ec5100 0%, #d44700 100%);
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
    transition: all 0.3s ease;
}

.wcu-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
}

.wcu-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.wcu-btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

/* Responsive Rules for Why Choose Us */
@media (max-width: 1024px) {
    .wcu-container {
        flex-direction: column;
        gap: 50px;
    }

    .wcu-images {
        width: 100%;
        max-width: 580px;
    }

    .wcu-floating-badge.badge-top {
        left: 0;
    }

    .wcu-floating-badge.badge-bottom {
        right: 0;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 20px;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wcu-floating-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .feature-item {
        padding: 14px 16px;
    }

    .wcu-actions {
        flex-direction: column;
        width: 100%;
    }

    .wcu-btn-primary,
    .wcu-btn-whatsapp {
        width: 100%;
    }
}

/* Most Popular Activities Section */
.popular-activities-section {
    padding: 85px 40px 65px;
    background: #ffffff;
}

.popular-activities-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.popular-activities-left {
    flex: 1.05;
    max-width: 460px;
}

.discover-weekly-tag {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ec5100;
    display: block;
    margin-bottom: 8px;
    line-height: 1.1;
}

.popular-activities-title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.popular-activities-desc {
    font-size: 15.5px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.explore-tours-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    transition: all 0.3s ease;
}

.explore-tours-link:hover {
    color: #d44700;
}

.circle-arrow-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ec5100;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.explore-tours-link:hover .circle-arrow-icon {
    transform: translateX(5px);
    background: #d44700;
}

.popular-activities-right {
    flex: 1.35;
}

.destinations-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}

.dest-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.dest-icon-box {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.dest-icon-card:hover .dest-icon-box {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

/* Specific Destination Box Colors */
.dest-jodhpur {
    background-color: #FFF3EB;
    color: #D96B43;
}

.dest-jaipur {
    background-color: #F8EDFF;
    color: #8E3BB0;
}

.dest-delhi {
    background-color: #E2FBF6;
    color: #14B8A6;
}

.dest-udaipur {
    background-color: #FFEAEB;
    color: #E11D48;
}

.dest-jaisalmer {
    background-color: #E5F3FE;
    color: #0284C7;
}

.dest-mountabu {
    background-color: #F3F1D8;
    color: #8F8830;
}

.dest-ajmer {
    background-color: #E6EEFA;
    color: #3B6BB0;
}

.dest-agra {
    background-color: #E6F6E9;
    color: #388E3C;
}

.dest-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    transition: color 0.2s ease;
}

.dest-icon-card:hover .dest-name {
    color: #ec5100;
}

/* Ensure Trust & Reliability Banner Section */
.trust-banner-section {
    padding: 0 40px 90px;
    background: #ffffff;
}

.trust-banner-wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.trust-banner-card {
    background: linear-gradient(135deg, #ec5100 0%, #d44700 100%);
    border-radius: 28px;
    padding: 50px 55px 40px;
    color: #ffffff;
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.22);
}

.trust-card-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 35px;
}

.trust-feature-col {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.trust-col-icon {
    font-size: 36px;
    color: #ffffff;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-col-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.trust-col-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    margin: 0;
}

.trust-banner-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 30px 0 25px;
    border: none;
}

.trust-banner-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-rating-box {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14.5px;
    color: #ffffff;
    flex-wrap: wrap;
}

.trust-rating-stars {
    display: flex;
    gap: 3px;
    color: #ffffff;
    font-size: 13px;
}

.trust-rating-text strong {
    font-weight: 800;
}

.trustpilot-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    margin-left: 8px;
}

.trust-customize-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0f172a;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.trust-customize-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #d44700;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .popular-activities-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .popular-activities-left {
        max-width: 100%;
    }

    .explore-tours-link {
        justify-content: center;
    }

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

    .trust-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-banner-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .popular-activities-section {
        padding: 60px 20px 40px;
    }

    .popular-activities-title {
        font-size: 28px;
    }

    .destinations-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .dest-icon-box {
        width: 85px;
        height: 85px;
    }

    .trust-banner-section {
        padding: 0 15px 60px;
    }

    .trust-banner-card {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .trust-card-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .trust-customize-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Trustpoint Section */
.trustpoint-section {
    padding: 50px 50px;
    background-color: #FDF8F0;
    /* Soft beige background fallback */
    background-image: url('../images/background-1.webp');
    background-size: cover;
    background-position: center;
}

.tp-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 25px;
}

.tp-content {
    flex: 1;
}

.tp-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.tp-content p {
    font-size: 16px;
    color: #f1f1f1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tp-content p:last-of-type {
    margin-bottom: 40px;
}

.tp-experience {
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-number {
    font-size: 70px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.exp-number span {
    font-size: 30px;
    margin-top: 10px;
}

.exp-text {
    font-size: 16px;
    color: #eee;
    font-weight: 600;
    line-height: 1.4;
}

.tp-images {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    position: relative;
}

.arch-img-wrapper {
    width: 50%;
    border-radius: 150px 150px 0 0;
    overflow: hidden;
}

.arch-left {
    height: 350px;
}

.arch-right {
    height: 450px;
}

.arch-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.arch-img-wrapper:hover img {
    transform: scale(1.05);
}

.arch-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 35px;
    color: #ec5100;
    /* TripAdvisor green */
    z-index: 10;
}

.tp-services {
    max-width: 1200px;
    margin: 0 auto;
}

.tp-services h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

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

.service-box {
    background: #fff;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-box i {
    font-size: 28px;
    color: #888;
    transition: color 0.3s ease;
}

.service-box:hover i {
    color: #ec5100;
    /* Orange color on hover */
}

.service-box span {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .tp-main {
        flex-direction: column;
    }

    .tp-images {
        width: 100%;
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .trustpoint-section {
        padding: 50px 20px;
    }

    .arch-left {
        height: 250px;
    }

    .arch-right {
        height: 350px;
    }

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

    .tp-content h2 {
        font-size: 32px;
    }
}

/* Tour Package Section */
.tour-package-section {
    padding: 80px 50px;
    background-color: #ffffff;
    /* White background */
}

.package-container {
    max-width: 1400px;
    margin: 0 auto;
}

.package-header {
    text-align: center;
    margin-bottom: 50px;
}

.package-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.package-header p {
    font-size: 16px;
    color: #555;
}

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

.pack-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #f2f2f2;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.pack-img {
    height: 250px;
    position: relative;
    padding: 15px 15px 0 15px;
}

.pack-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.pack-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: #ec5100;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
}

.pack-content {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pack-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    text-align: left;
}

.pack-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.pack-meta i {
    color: #999;
}

.pack-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.book-btn-sm {
    background-color: #ec5100;
    /* Dark green as in design */
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.pack-price {
    text-align: right;
}

.pack-price .label {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 2px;
    font-weight: 500;
}

.pack-price .amount {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #111;
}

.pack-footer {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: auto;
}

.pack-footer span {
    font-size: 13px;
    color: #111;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pack-footer span i {
    color: #aaa;
}

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

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

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #f2f6fc;
    /* Light blueish background */
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

.testi-header {
    text-align: center;
    margin-bottom: 50px;
}

.testi-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

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

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

.testi-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.testi-card .stars {
    color: #ec5100;
    /* Orange stars */
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testi-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.testi-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

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

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

.rev-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.rev-info span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

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

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

/* Footer Section */
.site-footer {
    background-color: #001326; border-top: 3px solid #ec5100;
    background-size: cover;
    background-position: center;
    padding: 80px 50px;
    color: #f1f1f1;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
}

/* Brand Col */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo-icon {
    font-size: 32px;
    color: #ec5100;
}

.logo-text h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.logo-text p {
    font-size: 13px;
    color: #ccc;
    margin-top: 2px;
}

.footer-address h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-address p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #222;
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #ec5100;
    color: #ffffff;
}

/* Links Col */
.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.links-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.links-col ul li a:hover {
    color: #ec5100;
}

/* Contact Col */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #222;
    color: #ec5100;
    /* Orange brand color */
    font-size: 18px;
    transition: background 0.3s;
}

.contact-item:hover .contact-icon {
    background-color: #ec5100;
    color: #ffffff;
}

.contact-text span {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 2px;
}

.contact-text p {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

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

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

/* Contact Page Styles */
.contact-banner {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 50, 0.6);
}

.contact-banner-content {
    position: relative;
    z-index: 10;
    color: #fff;
    text-align: center;
}

.contact-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.contact-page-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box,
.contact-form-box {
    background: #fff;
    padding: 40px;
    border-top: 4px solid #ec5100;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-box h2,
.contact-form-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #111;
}

.contact-info-box p {
    color: #555;
    margin-bottom: 30px;
}

.c-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.c-icon {
    width: 40px;
    height: 40px;
    background: #fff5f0;
    color: #ec5100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.c-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: #ec5100;
}

.captcha-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.captcha-text {
    font-size: 14px;
    color: #555;
}

.captcha-input {
    width: 60px !important;
    text-align: center;
}

.submit-btn {
    background-color: #ec5100;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #012853;
}

.map-section {
    line-height: 0;
}

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

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* About Us Page Styles */
.about-page-header {
    padding: 100px 20px;
    background-color: #fff;
    overflow: hidden;
}

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

.about-page-left {
    flex: 1;
    position: relative;
}

.about-page-left .img-group {
    position: relative;
    height: 500px;
}

.about-page-left .img-1 {
    width: 320px;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-page-left .img-2 {
    width: 300px;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 3;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.watch-now-btn {
    position: absolute;
    bottom: 30px;
    left: 100px;
    z-index: 4;
    background-color: #ff4d4f;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 77, 79, 0.4);
}

.bg-curve {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 600px;
    height: 600px;
    z-index: 1;
    opacity: 0.5;
}

.about-page-right {
    flex: 1;
}

.sub-title {
    font-family: 'Inter', sans-serif;
    color: #ff4d4f;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.sub-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -60px;
    width: 50px;
    height: 1px;
    background-color: #e0e0e0;
}

.about-page-right h2,
.features-header h2 {
    font-size: 42px;
    color: #012853;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-page-right .text-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.features-page-section {
    padding: 80px 20px;
    background-color: #f5f7fa;
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.features-header .sub-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    width: 50px;
    height: 1px;
    background-color: #e0e0e0;
}

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

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

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

.f-icon {
    font-size: 32px;
    color: #012853;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.red-dot {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 15px;
    height: 15px;
    background-color: #ff4d4f;
    border-radius: 50%;
    opacity: 0.8;
}

.feature-card h3 {
    font-size: 20px;
    color: #012853;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

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

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

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

/* CTA Section */
.cta-section {
    background-color: #ec5100;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

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

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #fff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s, opacity 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.cta-call {
    background-color: #fff;
    color: #111;
}

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

.cta-email {
    background-color: #eab308;
    color: #fff;
}

/* Dropdown Menu Styles */
.main-menu li.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    padding: 0;
    /* Removed top/bottom padding to avoid white gaps */
    overflow: hidden;
}

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

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

.main-menu .dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #333;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

.main-menu .dropdown-menu li a:hover {
    background-color: #ec5100;
    color: #fff !important;
    /* Force white color on hover */
}

/* Sightseeing Page Styles */
.sightseeing-desc {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.sightseeing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.sightseeing-title {
    font-size: 36px;
    color: #eab308;
    font-weight: 700;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0 30px;
    color: #eab308;
    font-size: 20px;
}

.title-divider span {
    width: 150px;
    height: 3px;
    background: repeating-linear-gradient(to right, #eab308, #eab308 5px, transparent 5px, transparent 10px);
}

.sightseeing-desc p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

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

.place-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

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

.place-info {
    padding: 20px;
    text-align: left;
}

.place-info h3 {
    font-size: 20px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}

.place-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

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

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

/* ==========================================================================
   Tour Guide / Article Layout (Image 1 Style)
   ========================================================================== */

/* Hero Banner */
.guide-hero-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 70px 20px 80px;
    text-align: center;
    color: #ffffff;
}

.guide-hero-banner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 40, 83, 0.78) 0%, rgba(0, 21, 46, 0.92) 100%);
    z-index: 1;
}

.guide-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.category-badge {
    display: inline-block;
    background-color: #f59e0b;
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.guide-hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    color: #ffffff;
}

.guide-hero-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.hero-meta-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #cbd5e1;
    flex-wrap: wrap;
}

.hero-meta-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Page Container & Layout */
.guide-page-wrapper {
    background-color: #f8fafc;
    padding: 50px 20px 70px;
}

.guide-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 35px;
    align-items: start;
}

/* Left Main Content Card */
.guide-main-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* Featured Image Header */
.guide-featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.article-sub-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.article-sub-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Article Body Typography */
.guide-body {
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.guide-body p {
    margin-bottom: 18px;
}

.guide-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.guide-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin: 22px 0 10px;
}

/* List Formatting */
.guide-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.guide-body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.guide-body ul li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: -1px;
    color: #ec5100;
    font-size: 20px;
}

/* Highlight / Callout Box */
.guide-callout-box {
    background-color: #fff7ed;
    border-left: 4px solid #ec5100;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}

.guide-callout-box p {
    margin: 0;
    font-size: 15px;
    color: #9a3412;
    font-weight: 500;
}

/* Tour Itinerary Card Section */
.itinerary-section-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    margin: 30px 0;
}

.itinerary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.itinerary-header i {
    font-size: 24px;
    color: #ec5100;
}

.itinerary-header h3 {
    margin: 0;
    font-size: 20px;
    color: #0f172a;
}

.itinerary-timeline {
    position: relative;
    padding-left: 30px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #cbd5e1;
}

.itinerary-step {
    position: relative;
    margin-bottom: 22px;
}

.itinerary-step:last-child {
    margin-bottom: 0;
}

.itinerary-node {
    position: absolute;
    left: -30px;
    top: 3px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ec5100;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px #cbd5e1;
}

.itinerary-time {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #ec5100;
    background-color: #fff7ed;
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 4px;
}

.itinerary-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.itinerary-desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Pricing / Cab Option Cards Grid */
.cab-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 25px 0;
}

.cab-price-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cab-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #ec5100;
}

.cab-price-card img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cab-price-card h4 {
    font-size: 15px;
    color: #0f172a;
    margin-bottom: 4px;
}

.cab-price-card .price {
    font-size: 18px;
    font-weight: 800;
    color: #ec5100;
}

/* FAQ Box */
.faq-box {
    margin-top: 30px;
}

.faq-item {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 14px;
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

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

/* Social Share Bar */
.social-share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
    margin-top: 35px;
}

.social-share-bar span {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    margin-right: 5px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.9;
}

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-whatsapp {
    background-color: #25d366;
}

/* Sidebar Widgets */
.guide-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.widget-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ec5100;
}

/* Recent Articles List */
.recent-articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-article-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
}

.recent-article-item img {
    width: 65px;
    height: 55px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.article-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.recent-article-item:hover h4 {
    color: #ec5100;
}

.article-info span {
    font-size: 11px;
    color: #94a3b8;
}

/* Quote Sidebar Widget Card (Image 1 Green Box) */
.quote-widget-card {
    background-color: #0d2e24;
    /* Deep dark green matching image 1 */
    color: #ffffff;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(13, 46, 36, 0.25);
    margin-bottom: 25px;
}

.quote-widget-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.quote-widget-card p {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 22px;
    line-height: 1.5;
}

.quote-consultation-btn {
    display: inline-block;
    width: 100%;
    background-color: #f59e0b;
    /* Golden amber button */
    color: #0f172a;
    font-weight: 800;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}

.quote-consultation-btn:hover {
    background-color: #d97706;
    transform: translateY(-2px);
}

/* Sidebar Car Cards (Home Page Style) */
.sidebar-car-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    padding: 0 0 20px 0;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.sidebar-car-card:hover {
    transform: translateY(-5px);
    border-color: #ec5100;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.sidebar-card-image {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

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

.sidebar-car-card:hover .sidebar-card-image img {
    transform: scale(1.08);
}

.sidebar-car-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 16px 0 14px;
    padding: 0 16px;
}

.sidebar-car-book-btn {
    display: block;
    margin: 0 16px;
    width: calc(100% - 32px);
    background-color: #ec5100;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
    box-sizing: border-box;
}

.sidebar-car-book-btn:hover {
    background-color: #012853;
    transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .guide-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .guide-main-card {
        padding: 22px;
    }

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

    .guide-featured-img {
        height: 230px;
    }

    .social-share-bar {
        flex-wrap: wrap;
    }
}



/* Tour Package Section (Light Grid Style) */
.pkg-tour-section {
    padding: 60px 20px;
    background: #f8fafc;
}

.pkg-tour-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.pkg-tour-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.pkg-tour-header p {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

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

.pkg-tour-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.pkg-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pkg-card-img {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

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

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

.pkg-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ec5100;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.pkg-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pkg-card-body h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 0;
    margin-bottom: 8px;
}

.pkg-location {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pkg-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.pkg-book-btn {
    background: #ec5100;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.pkg-book-btn:hover {
    background: #d44700;
    color: #ffffff;
    transform: translateY(-2px);
}

.pkg-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.pkg-whatsapp-btn:hover {
    background: #20bd5a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.pkg-price-box {
    text-align: right;
}

.pkg-price-label {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pkg-price-amount {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.pkg-card-footer {
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

.pkg-card-footer span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pkg-card-footer i.info-icon {
    color: #94a3b8;
    font-size: 11px;
}

@media (max-width: 992px) {
    .pkg-tour-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .pkg-tour-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Button for Cards */
.card-wa-btn {
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.card-wa-btn:hover {
    background: #1eb954;
    transform: translateY(-2px);
}

/* Global Mobile Version & Responsiveness Fixes */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {

    /* Prevent horizontal overflow on all structural elements */
    html,
    body,
    header,
    footer,
    main,
    section,
    div {
        max-width: 100% !important;
    }

    /* Standardize padding and margins on all 4 sides for mobile */
    section {
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-top: 35px !important;
        padding-bottom: 35px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Top Bar Mobile View - Strictly 2-Line Layout */
    .top-bar {
        padding: 6px 12px !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        background-color: #012853 !important;
    }

    .top-bar-row-1 {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .top-bar-left {
        display: flex !important;
        align-items: center !important;
    }

    .top-bar-left a {
        font-size: 11px !important;
        color: #e5e7eb !important;
        text-decoration: none !important;
    }

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

    .top-bar-center a i {
        font-size: 12px !important;
        color: #e5e7eb !important;
    }

    .top-bar-row-2 {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
        padding-top: 4px !important;
        margin-top: 2px !important;
    }

    .top-bar-right {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 11px !important;
        color: #e5e7eb !important;
        text-align: center !important;
    }

    /* Main Navigation Header Mobile View */
    .main-header {
        position: relative !important;
        padding: 10px 14px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
    }

    .logo {
        flex: 0 0 auto !important;
    }

    .logo img {
        max-height: 48px !important;
    }

    /* Call Button Between Logo and Toggle Button on Mobile (Matching user screenshot) */
    .mobile-header-call {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        background-color: #fff5f0 !important;
        border: 1px solid #ffd8c4 !important;
        border-radius: 12px !important;
        padding: 8px 14px !important;
        color: #0f172a !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        box-shadow: 0 2px 6px rgba(249, 115, 22, 0.08) !important;
    }

    .mobile-header-call:hover,
    .mobile-header-call:focus,
    .mobile-header-call:active,
    .mobile-header-call:visited {
        color: #0f172a !important;
        text-decoration: none !important;
    }

    .mobile-header-call i {
        font-size: 16px !important;
        color: #ec5100 !important;
        transform: scaleX(-1) !important;
    }

    .mobile-header-call span {
        color: #0f172a !important;
        font-weight: 800 !important;
    }

    .mobile-toggle-btn {
        flex: 0 0 auto !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        background: #012853;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        padding: 9px 12px;
        font-size: 18px;
        cursor: pointer;
        z-index: 1001;
        transition: background 0.2s ease;
    }

    .mobile-toggle-btn:hover {
        background: #001a38;
    }

    .main-menu {
        display: none;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #ffffff !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        padding: 20px !important;
        z-index: 1000 !important;
        border-top: 3px solid #ec5100 !important;
    }

    .main-menu.active {
        display: block !important;
    }

    .main-menu ul {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .main-menu ul li a {
        display: block !important;
        padding: 10px 15px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        border-radius: 8px !important;
    }

    .main-menu ul li a:hover,
    .main-menu ul li a.active {
        background: #fff7ed !important;
        color: #ec5100 !important;
    }

    .header-actions {
        display: none !important;
    }

    .navbar,
    .header-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* Mobile Headings Scaling */
    h1 {
        font-size: 30px !important;
        line-height: 1.25 !important;
    }

    h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 18px !important;
    }

    p {
        font-size: 14px !important;
    }

    /* Hero Slider Mobile View */
    section.hero-slider,
    .hero-slider {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        min-height: 440px !important;
    }

    .hero-booking-section {
        margin-top: 15px !important;
        padding: 0 12px 15px !important;
    }

    .hero-booking-card {
        padding: 18px 14px !important;
        border-radius: 18px !important;
    }

    /* Remove Labels in Mobile Booking Form */
    .booking-form-grid .form-field-group label {
        display: none !important;
    }

    /* 1-Column Grids on Mobile */
    .tours-grid,
    .package-grid,
    .fleet-section .tours-grid,
    .features-grid,
    .pkg-tour-grid,
    .wcu-container,
    .tp-main {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 2-Column Grid for Smart Services on Mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Tour & Fleet Cards Layout */
    .tour-card,
    .pack-card,
    .pkg-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .card-action,
    .pack-action {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }

    .book-btn,
    .whatsapp-card-btn,
    .book-btn-sm {
        padding: 8px 12px !important;
        font-size: 13px !important;
    }

    /* Footer Mobile View */
    footer,
    .site-footer {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .footer-content,
    .footer-grid,
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

/* ==========================================================================
   BRAND LOGO COLOR SYSTEM (Jaisalmer Sandstone Gold #C58F00 & Regal Dark Bronze #1A120B)
   ========================================================================== */

:root {
    --brand-navy: #1A120B;
    --brand-navy-dark: #120C07;
    --brand-navy-light: #2C1D0E;
    --brand-orange: #C58F00;
    --brand-orange-hover: #D97706;
    --brand-orange-light: #FFF9EE;
    --brand-gold: #D4AF37;
    --brand-gold-light: #FDF4D4;
}

/* Headings 2-Tone Color System */
h1, h2, h3, h4 {
    color: #1A120B;
}

h1 span, h2 span, h3 span, h4 span,
h1 strong, h2 strong, h3 strong, h4 strong,
.text-orange, .text-highlight {
    color: #C58F00 !important;
}

.text-navy {
    color: #1A120B !important;
}

.text-gold {
    color: #D4AF37 !important;
}

/* Headings on Dark / Colored Backgrounds */
.hero-slider h1, .hero-slider h2, .hero-slider h3,
.why-choose-us h1, .why-choose-us h2, .why-choose-us h3,
.why-choose-us p, .why-choose-us .wcu-lead-text,
.cta-section h1, .cta-section h2, .cta-section h3,
.guide-hero-banner h1, .guide-hero-banner h2, .guide-hero-banner h3,
.features-banner h1, .features-banner h2, .features-banner h3,
.trust-banner-card h1, .trust-banner-card h2, .trust-banner-card h3,
.trustpoint-section h1, .trustpoint-section h2, .trustpoint-section h3,
.site-footer h1, .site-footer h2, .site-footer h3,
.quote-widget-card h1, .quote-widget-card h2, .quote-widget-card h3 {
    color: #ffffff !important;
}

.hero-slider h1 span, .hero-slider h2 span, .hero-slider h3 span,
.why-choose-us h1 span, .why-choose-us h2 span, .why-choose-us h3 span,
.cta-section h1 span, .cta-section h2 span, .cta-section h3 span,
.guide-hero-banner h1 span, .guide-hero-banner h2 span, .guide-hero-banner h3 span,
.features-banner h1 span, .features-banner h2 span, .features-banner h3 span,
.trust-banner-card h1 span, .trust-banner-card h2 span, .trust-banner-card h3 span,
.trustpoint-section h1 span, .trustpoint-section h2 span, .trustpoint-section h3 span,
.site-footer h1 span, .site-footer h2 span, .site-footer h3 span,
.quote-widget-card h1 span, .quote-widget-card h2 span, .quote-widget-card h3 span {
    color: #F5D061 !important;
}

/* Brand Buttons System */
.book-now-btn,
.slide-btn.btn-book,
.wcu-btn-primary,
.submit-btn,
.search-btn,
.pkg-book-btn,
.quote-consultation-btn,
.sidebar-car-book-btn {
    background: linear-gradient(135deg, #C58F00 0%, #b87a04 100%) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(197, 143, 0, 0.35) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.book-now-btn:hover,
.slide-btn.btn-book:hover,
.wcu-btn-primary:hover,
.submit-btn:hover,
.search-btn:hover,
.pkg-book-btn:hover,
.quote-consultation-btn:hover,
.sidebar-car-book-btn:hover {
    background: linear-gradient(135deg, #1A120B 0%, #2C1D0E 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(26, 18, 11, 0.45) !important;
}

.about-btn,
.book-btn,
.book-btn-sm {
    background: linear-gradient(135deg, #1A120B 0%, #2C1D0E 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(197, 143, 0, 0.4) !important;
    box-shadow: 0 6px 18px rgba(26, 18, 11, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-btn:hover,
.book-btn:hover,
.book-btn-sm:hover {
    background: linear-gradient(135deg, #C58F00 0%, #D97706 100%) !important;
    color: #ffffff !important;
    border-color: #C58F00 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(197, 143, 0, 0.45) !important;
}

/* Call to Action Banner */
.cta-section {
    background: linear-gradient(135deg, #1A120B 0%, #2C1D0E 100%) !important;
    border-top: 4px solid #C58F00 !important;
    border-bottom: 4px solid #C58F00 !important;
}

.cta-btn.cta-call {
    background: linear-gradient(135deg, #C58F00 0%, #D97706 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(197, 143, 0, 0.35) !important;
}

.cta-btn.cta-call:hover {
    background: #ffffff !important;
    color: #1A120B !important;
}

.cta-btn.cta-email {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.cta-btn.cta-email:hover {
    background: #C58F00 !important;
    border-color: #C58F00 !important;
    color: #ffffff !important;
}

/* Ensure Trust Banner Card */
.trust-banner-card {
    background: linear-gradient(135deg, #1A120B 0%, #2C1D0E 100%) !important;
    border: 2px solid rgba(197, 143, 0, 0.4) !important;
    box-shadow: 0 20px 45px rgba(26, 18, 11, 0.35) !important;
}

.trust-customize-btn {
    background: linear-gradient(135deg, #C58F00 0%, #D97706 100%) !important;
    color: #ffffff !important;
}

.trust-customize-btn:hover {
    background: #ffffff !important;
    color: #1A120B !important;
}

/* Quote Sidebar Card */
.quote-widget-card {
    background: linear-gradient(135deg, #1A120B 0%, #2C1D0E 100%) !important;
    border: 1px solid rgba(197, 143, 0, 0.3) !important;
}

/* Footer Section Styling */
.site-footer {
    background-color: #1A120B !important;
    border-top: 4px solid #C58F00 !important;
}

.footer-social a:hover {
    background-color: #C58F00 !important;
}

.links-col ul li a:hover {
    color: #C58F00 !important;
    padding-left: 5px;
}

.contact-item:hover .contact-icon {
    background-color: #C58F00 !important;
}

/* Section Header Badges */
.discover-weekly-tag,
.wcu-sub-badge,
.category-badge,
.slide-badge {
    color: #C58F00 !important;
}


/* ==========================================================================
   TARGETED BOX TEXT & ICON COLORS (Features Banner & Why Choose Us)
   ========================================================================== */

/* Features Banner Box Cards */
.features-banner {
    background: linear-gradient(135deg, #1A120B 0%, #2C1D0E 100%) !important;
    padding: 35px 20px !important;
    border-top: 3px solid #C58F00 !important;
    border-bottom: 3px solid #C58F00 !important;
}

.features-banner .features-container {
    max-width: 1320px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

.features-banner .feature-item {
    background: #ffffff !important;
    padding: 20px 22px !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14) !important;
    border: 1px solid rgba(197, 143, 0, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.features-banner .feature-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 30px rgba(197, 143, 0, 0.25) !important;
    border-color: #C58F00 !important;
}

.features-banner .feature-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #FFF9EE 0%, #FDF4D4 100%) !important;
    color: #C58F00 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    flex-shrink: 0 !important;
}

.features-banner .feature-text h4 {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #1A120B !important;
    margin-bottom: 4px !important;
    line-height: 1.25 !important;
}

.features-banner .feature-text h4 span {
    color: #C58F00 !important;
}

.features-banner .feature-text p {
    font-size: 13px !important;
    color: #475569 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* Why Choose Us Feature Cards Grid */
.why-choose-us .features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 35px !important;
}

.why-choose-us .feature-item {
    background: #ffffff !important;
    padding: 20px 22px !important;
    border-radius: 18px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    gap: 16px !important;
    align-items: flex-start !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.why-choose-us .feature-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 32px rgba(197, 143, 0, 0.2) !important;
    border-color: #C58F00 !important;
}

.why-choose-us .icon-box {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #FFF9EE 0%, #FDF4D4 100%) !important;
    color: #C58F00 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(197, 143, 0, 0.15) !important;
    transition: all 0.3s ease !important;
}

.why-choose-us .feature-item:hover .icon-box {
    transform: scale(1.1) rotate(5deg) !important;
    background: linear-gradient(135deg, #C58F00 0%, #D97706 100%) !important;
    color: #ffffff !important;
}

.why-choose-us .feature-text h3 {
    font-size: 16.5px !important;
    font-weight: 800 !important;
    color: #1A120B !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}

.why-choose-us .feature-text h3 span {
    color: #C58F00 !important;
}

.why-choose-us .feature-text p {
    font-size: 13.5px !important;
    color: #475569 !important;
    line-height: 1.55 !important;
    margin: 0 !important;
}

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

@media (max-width: 600px) {
    .features-banner .features-container {
        grid-template-columns: 1fr !important;
    }
    .why-choose-us .features-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   BANNER HEADER FONT COLOR FIX (Crisp White Text Over Banners)
   ========================================================================== */
.contact-banner-content,
.contact-banner-content h1,
.contact-banner-content h2,
.contact-banner-content h3,
.contact-banner-content p,
.contact-banner-content span {
    color: #ffffff !important;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.9) !important;
}

.contact-banner .overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(180deg, rgba(26, 18, 11, 0.7) 0%, rgba(15, 23, 42, 0.82) 100%) !important;
    z-index: 1 !important;
}

/* ==========================================================================
   SMOOTH SCROLL ANIMATION (Bottom-to-Top Fade Up)
   ========================================================================== */
@keyframes fadeInUpSmooth {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-banner-content h1,
.guide-hero-content h1,
.guide-hero-subtitle {
    animation: fadeInUpSmooth 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scroll-animate {
    opacity: 0 !important;
    transform: translateY(35px) !important;
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: opacity, transform;
}

.scroll-animate.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

