/* ===================================
   Al-Salam Travel - Custom Styles
   Bootstrap 5 Implementation
   =================================== */

/* Color Variables */
:root {
    --primary: #5c4d33;
    --gold-accent: #c5a47e;
    --teal-dark: #2f1d13;
    --teal-light: #4a3718;
    --gold-muted: #c7822d;
    --background-light: #fdf8f2;
    --background-dark: #2f1d13;
    --card-light: #f7f1e6;
    --text-dark: #2f1d13;
    --text-muted: #5b4538;
    --topbar-bg: #2f1d13;
    --topbar-text: #c5a47e;
}

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    /* border: 1px solid red; */
    /* overflow-x: hidden; */
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}



/* ===================================
   Header & Top Bar
   =================================== */
.top-bar {
    background-color: var(--topbar-bg);
    color: var(--topbar-text);
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--topbar-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: #fff;
}

.top-bar-item .material-symbols-outlined {
    font-size: 16px;
    color: var(--gold-muted);
}
.top-bar-item{
    color:white;
}
.top-bar-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(197, 164, 126, 0.3);
}

.social-icon-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(197, 164, 126, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--topbar-text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-circle:hover {
    background-color: var(--gold-muted);
    color: #fff;
    border-color: var(--gold-muted);
    transform: translateY(-2px);
}

.social-icon-circle i {
    font-size: 14px;
}

@media (max-width: 991px) {
    .top-bar-content {
        justify-content: center;
        gap: 1rem;
    }
    .top-bar-social {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-bar-info {
        /* flex-direction: column; */
        gap: 14px;
        text-align: center;
    }
    .top-bar-item {
        font-size: 0.75rem;
    }
}
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: white;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(167, 130, 71, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.header-content {
    min-height: 80px;
    height: auto;
    padding: 1rem 0;
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



.header-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.02);
}



.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
}

.main-nav .nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

.main-nav .nav-link.active {
    color: var(--gold-accent);
    border-bottom-color: var(--gold-accent);
}

.main-nav .nav-link:hover {
    color: var(--gold-accent);
}

.section-heading, .section-title, .hero-title, .h1, .h2, .h3, .font-display {
    font-family: 'Cinzel', serif;
}

/* Dropdown Styles */
.main-nav .dropdown {
    display: inline-block;
}

.main-nav .dropdown-toggle {
    cursor: pointer;
}

.main-nav .dropdown-toggle::after {
    margin-left: 0.3em;
    vertical-align: 0.1em;
}

.main-nav .dropdown-menu {
    background-color: white;
    border: 1px solid rgba(167, 130, 71, 0.2);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.main-nav .dropdown-item {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s;
}

.main-nav .dropdown-item:hover {
    background-color: rgba(167, 130, 71, 0.1);
    color: var(--gold-accent);
}

.expert-label {
    display: block;
    font-size: 0.625rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.phone-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--gold-accent);
}

.phone-link .material-symbols-outlined {
    font-size: 0.875rem;
}

.btn-gold {
    background-color: #4a3718;
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 12px rgba(74, 55, 24, 0.25);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #c5a47e 0%, #d4b896 100%);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 16px rgba(74, 55, 24, 0.35);
}

.btn-gold:active {
    transform: translateY(0);
}









.floating-chat .chat-btn {
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-dark) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(197, 164, 126, 0.3);
    box-shadow: 0 20px 40px rgba(47, 29, 19, 0.4);
    transition: all 0.4s;
    cursor: pointer;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}



/* ===================================
   Hero Section with Overlapping Form
   =================================== */
.hero-section-new {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 150px;
}



/* Booking Form Section - Overlapping */
.booking-form-section {
    position: relative; 
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(47, 29, 19, 0.2);
    border: 1px solid rgba(197, 164, 126, 0.1);
    z-index: 10;
}
.booking-form-top {
    margin-top: 0px;
}
.form-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.form-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--gold-accent), var(--gold-muted));
    margin: 0 auto 2rem;
    border-radius: 9999px;
}

/* Form Controls */
.form-control-custom-new {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(197, 164, 126, 0.2);
    border-radius: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    background-color: #fdf8f2;
    transition: all 0.3s ease;
}

.form-control-custom-new:focus {
    outline: none;
    border-color: var(--gold-accent);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(197, 164, 126, 0.1);
}

.form-control-custom-new::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Submit Button */
.btn-get-price {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
    color: white;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(47, 29, 19, 0.3);
    letter-spacing: 0.02em;
}

.btn-get-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(47, 29, 19, 0.4);
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-muted) 100%);
}

.btn-get-price:active {
    transform: translateY(0);
}

/* Responsive adjustments for hero banner */
@media (max-width: 992px) {
    .hero-section-new {
        padding-bottom: 120px;
    }
    
    .booking-form-section {
        margin-top: -100px;
        padding: 2rem;
    }
    
    .form-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-banner-bg {
        height: 55vh;
        min-height: 350px;
        /*border-radius: 0 0 1.5rem 1.5rem;*/
        margin: 0 auto;
        width: 100%;
        /*background-position: center;*/
    }
    .booking-form-top {
        margin-top: 0px;
    }
    .hero-section-new {
        padding-bottom: 100px;
    }
    
    .booking-form-section {
        /* margin-top: -80px; */
        padding: 1.75rem;
    }
    
    .form-heading {
        font-size: 1.35rem;
    }
    
    .btn-get-price {
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-banner-bg {
        height: 25vh;
        min-height: auto;
        /*border-radius: 0 0 1rem 1rem;*/
        background-size: cover;
    }
    
    .hero-section-new {
        padding-bottom: 80px;
    }
    
    .booking-form-section {
        margin-top: -60px;
        padding: 1.5rem;
    }
    
    .form-heading {
        font-size: 1.25rem;
    }
    
    .form-control-custom-new {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===================================
   Featured Categories
   =================================== */
.section-title {
    /* font-size: clamp(1.75rem, 5vw, 2.5rem); */
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.title-divider {
    height: 0.25rem;
    width: 5rem;
    background-color: var(--gold-accent);
    margin: 0 auto;
}

.title-divider-gold {
    height: 6px;
    width: 60px;
    background: linear-gradient(to right, var(--gold-accent), var(--gold-muted));
    margin: 1.5rem auto 0;
    border-radius: 9999px;
}

.category-btn {
    background-color: white;
    color: var(--primary);
    padding: 2.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 800;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--gold-accent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    transform-origin: right;
}

.category-btn:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 162, 77, 0.2);
}

.category-btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.category-btn .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--gold-accent);
    padding: 1.25rem;
    background: var(--card-light);
    border-radius: 1.25rem;
    transition: all 0.5s;
}

.category-btn:hover .material-symbols-outlined {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.category-btn span:not(.material-symbols-outlined) {
    font-size: 1rem;
    letter-spacing: 0.02em;
    font-weight: 700;
}





.btn-lg {
    padding: 1.25rem 2.5rem;
    border-radius: 1.25rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 20px 40px -10px rgba(26, 61, 70, 0.2);
}



/* ===================================
   About Section
   =================================== */
.about-video-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 20px 40px rgba(47, 29, 19, 0.15);
    transition: transform 0.3s ease;
}

.about-video-wrapper:hover {
    transform: translateY(-5px);
}

.about-video-wrapper .play-button {
    width: 80px;
    height: 80px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 10px rgba(197, 164, 126, 0.3);
}


/* ===================================
   Holiday Cards (Premium Slider)
   =================================== */
.holiday-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(197, 164, 126, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.holiday-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 60px -15px rgba(47, 29, 19, 0.15);
    border-color: var(--gold-accent);
}

.holiday-img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.holiday-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.holiday-card:hover .holiday-img-box img {
    transform: scale(1.1);
}

.holiday-badge-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(47, 29, 19, 0.85);
    backdrop-filter: blur(8px);
    color: var(--gold-accent);
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 5;
    border: 1px solid rgba(197, 164, 126, 0.3);
}

.holiday-content {
    padding: 2.5rem;
    background: linear-gradient(to bottom, transparent, rgba(253, 248, 242, 0.05));
}

.holiday-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.holiday-card:hover .holiday-title {
    color: var(--gold-accent);
}

.holiday-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.holiday-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.holiday-meta .material-symbols-outlined {
    font-size: 1.25rem;
    color: var(--gold-accent);
}

.holiday-includes {
    margin-bottom: 2rem;
}

.holiday-includes span {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.holiday-includes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.include-tag {
    background: var(--card-light);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(197, 164, 126, 0.1);
    transition: all 0.3s;
}

.holiday-card:hover .include-tag {
    background: white;
    border-color: var(--gold-accent);
}

.holiday-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 164, 126, 0.1);
}

.holiday-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--teal-dark);
    font-family: 'Montserrat', sans-serif;
}

.price-amount span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-holiday-cta {
    width: 54px;
    height: 54px;
    background: var(--teal-dark);
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 10px 20px rgba(47, 29, 19, 0.1);
}

.btn-holiday-cta:hover {
    background: var(--gold-accent);
    color: white;
    transform: rotate(90deg);
}

/* Custom Swiper UI */
.holiday-swiper-container {
    position: relative;
    padding: 0 60px;
}

.holiday-swiper {
    padding: 20px 20px 80px !important;
}

.holiday-swiper .swiper-button-next,
.holiday-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    color: var(--teal-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 1px solid rgba(197, 164, 126, 0.2);
}

.holiday-swiper .swiper-button-next:after,
.holiday-swiper .swiper-button-prev:after {
    font-size: 1.25rem;
    font-weight: 900;
}

.holiday-swiper .swiper-button-next:hover,
.holiday-swiper .swiper-button-prev:hover {
    background: var(--teal-dark);
    color: var(--gold-accent);
    border-color: var(--teal-dark);
}

.holiday-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--teal-dark);
    opacity: 0.2;
    transition: all 0.3s;
}

.holiday-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: var(--gold-accent);
    opacity: 1;
}



/* ===================================
   Planning Section (Premium Redesign)
   =================================== */
.planning-section {
    background: linear-gradient(135deg, #1a0f08 0%, #301e10 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 15px;
}

.planning-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(197, 164, 126, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(197, 164, 126, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.planning-section .container-fluid {
    position: relative;
    z-index: 10;
}

.section-label-gold {
    color: var(--gold-accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.section-label-gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold-accent);
}

.section-heading-light {
    /* font-size: clamp(2rem, 5vw, 3.25rem); */
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-description-light {
    color: rgba(255, 255, 255, 0.6);
    max-width: 850px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
}

.planning-step-v2 {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 164, 126, 0.1);
    padding: 1.6rem 2rem;
    border-radius: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.planning-step-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.planning-step-v2:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(197, 164, 126, 0.3);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.planning-step-v2:hover::before {
    transform: scaleX(1);
}

.planning-icon-box {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(197, 164, 126, 0.2) 0%, rgba(197, 164, 126, 0.05) 100%);
    border: 1px solid rgba(197, 164, 126, 0.2);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: var(--gold-accent);
    position: relative;
    transition: all 0.5s ease;
}

.planning-step-v2:hover .planning-icon-box {
    transform: rotateY(180deg);
    background: var(--gold-accent);
    color: #1a0f08;
    box-shadow: 0 0 30px rgba(197, 164, 126, 0.3);
}

.planning-icon-box .material-symbols-outlined {
    font-size: 3rem;
}

.planning-number-v2 {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background: var(--gold-accent);
    color: #1a0f08;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.2);
    transition: all 0.5s ease;
}

.planning-step-v2:hover .planning-number-v2 {
    background: white;
    transform: scale(1.1) rotate(10deg);
}

.planning-title-v2 {
    color: white;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.planning-desc-v2 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.planning-step-v2:hover .planning-desc-v2 {
    color: rgba(255, 255, 255, 0.9);
}
.package-star-rating{
    margin-left: 30px;
}


/* ===================================
   Travel Benefits Section
   =================================== */
.benefits-section {
    padding: 2.5rem 0;
    background-color: #fdf8f2;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    height: 100%;
    border: 1px solid rgba(47, 29, 19, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}


.benefit-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 77, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    flex-shrink: 0;
    margin-bottom: 10px;
}

.benefit-icon-box .material-symbols-outlined {
    font-size: 2rem;
}
.benefit-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    /* border: 1px solid red; */
    width: 100%;
}
.benefit-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #23120b;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.benefit-info p {
    font-size: 0.85rem;
    color: #6a5a4d;
    margin-bottom: 0;
    font-weight: 500;
}
.benefit-card:hover {
    transform: translateY(-5px);
    background-color: #4a3718;
    box-shadow: 0 10px 25px rgba(47, 29, 19, 0.08);
    color: white;
}
.benefit-card:hover .benefit-info h4 {
    color: white;
}
.benefit-card:hover .benefit-info p {
    color: white;
}
@media (max-width: 767.98px) {
    .benefits-section {
        padding: 2rem 0;
    }
    .benefit-card {
        padding: 1.25rem;
    }
    .benefit-icon-box {
        width: 50px;
        height: 50px;
    }
    .benefit-icon-box .material-symbols-outlined {
        font-size: 1.75rem;
    }
    .benefit-info h4 {
        font-size: 1rem;
    }
    .package-star-rating{
    margin-left: 0px;
}
}

/* ===================================
   Features Section
   =================================== */
.bg-pattern {
    background-color: #f8fafc;
    background-image: radial-gradient(rgba(26, 61, 70, 0.05) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    padding: 0px 15px;
}

.feature-card {
    padding: 3.5rem 2.5rem;
    background-color: white;
    border-radius: 2.5rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px -20px rgba(26, 61, 70, 0.1);
    border-color: rgba(201, 162, 77, 0.2);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    background-color: #f1f5f9;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    margin-bottom: 2rem;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-muted) 100%);
    color: white;
    transform: rotateY(360deg);
}

.feature-icon .material-symbols-outlined {
    font-size: 2rem;
}

.feature-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ===================================
   Footer - Redesign
   =================================== */
/* ===================================
   Footer - Redesign
   =================================== */
.footer {
    background-color: #1a0f0a; /* Deepest warm brown */
    background-image: radial-gradient(circle at 50% 0%, rgba(197, 164, 126, 0.05) 0%, transparent 70%);
    color: #e2d1c3;
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid rgba(197, 164, 126, 0.1);
}

.footer-main-content {
    position: relative;
    z-index: 2;
}

.footer-logo-wrapper {
    background-color: white;
    padding: 15px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bfa694;
    margin-bottom: 30px;
}

.footer-social-v2 {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(197, 164, 126, 0.1);
    border: 1px solid rgba(197, 164, 126, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-circle:hover {
    background: var(--gold-accent);
    color: #1a0f0a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(197, 164, 126, 0.2);
}

.footer-heading {
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    letter-spacing: 0.05em;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 15px;
}

.footer-nav-list a {
    color: #bfa694;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: var(--gold-accent);
    transform: translateX(8px);
}

/* Contact List */
.premium-contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.premium-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(197, 164, 126, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    flex-shrink: 0;
    border: 1px solid rgba(197, 164, 126, 0.15);
}

.contact-details span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #8c7261;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
    width: max-content;
}

.contact-details a, .contact-details p {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 0;
}

/* Trust Area */
.trust-signature-area {
    background: rgba(197, 164, 126, 0.03);
    border: 1px solid rgba(197, 164, 126, 0.1);
    padding: 40px;
    border-radius: 24px;
    margin: 60px 0 40px;
}

.trust-message {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-main-icon {
    font-size: 3rem;
    color: var(--gold-accent);
}

.trust-message strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.trust-message p {
    color: #bfa694;
    font-size: 0.9rem;
    margin: 0;
}

.trust-logos-v2 {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    align-items: center;
}

.trust-badge {
    height: 45px;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

.footer-policy-box {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-policy-box p {
    font-size: 0.8rem;
    line-height: 2;
    color: #8c7261;
    font-style: italic;
}

.footer-policy-box a {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.footer-policy-box a:hover {
    border-bottom-color: var(--gold-accent);
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(197, 164, 126, 0.1);
    padding: 30px 0;
}

.copyright-text {
    font-size: 0.9rem;
    color: #8c7261;
    margin: 0;
}

.bottom-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.bottom-nav-links a {
    color: #8c7261;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.bottom-nav-links a:hover {
    color: white;
}

@media (max-width: 991px) {
    .trust-logos-v2 {
        justify-content: center;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .trust-message {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    .footer-heading {
        margin-top: 20px;
    }
    .bottom-nav-links {
        justify-content: center;
        margin-top: 20px;
    }
    .copyright-text {
        text-align: center;
    }
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 991.98px) {
    .hero-section {
        height: 50vh;
    }
    .header-logo {
        width: 180px;
    }
    .header-content {
        padding: 0.75rem 1.5rem;
    }
    .search-box {
        transform: translateY(50%);
        width: 92%;
        padding: 1.25rem 1.5rem;
    }
    .overlap-clearance {
        padding-top: 120px !important;
    }
}

@media (max-width: 767.98px) {
    .header-logo {
        width: 140px;
    }
    .header-content {
        padding: 0.75rem 1rem;
        min-height: 70px;
    }
    .hero-section {
        height: 350px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .search-tabs {
        flex-direction: column;
    }
    
    .search-tab {
        justify-content: center;
    }
    
    .search-box {
        display: none;
    }
    

    
    .holiday-card {
        min-width: 280px;
        width: 100%;
    }
    

    
    .category-btn {
        padding: 1.5rem 1rem;
    }
    
    .package-card-custom {
        margin-bottom: 1rem;
    }
    
    .btn-gold {
        padding: 0.75rem 1.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-heading {
        margin-bottom: 25px;
        font-size: 1.15rem;
    }
    
    .trust-signature-area {
        padding: 25px 20px;
        margin: 40px 0 30px;
    }
    
    .trust-main-icon {
        font-size: 2.5rem;
    }
    
    .trust-logos-v2 {
        gap: 20px;
        margin-top: 20px;
    }
    
    .trust-badge {
        height: 35px;
    }
    
    .footer-policy-box {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .bottom-nav-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 400px) {
    .header-logo {
        width: 100px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .premium-contact-item {
        gap: 12px;
    }
    
    .contact-icon-box {
        width: 36px;
        height: 36px;
    }
    
    .contact-details a, .contact-details p {
        font-size: 0.9rem;
    }
}

/* ===================================
   Mobile Navigation Drawer Styles
   =================================== */
.mobile-nav-toggle {
    background: none;
    border: none;
    color: var(--primary);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-toggle .material-symbols-outlined {
    font-size: 2.25rem;
}

.mobile-nav-toggle:hover {
    color: var(--gold-accent);
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(253, 248, 242, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(47, 29, 19, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 360px) {
    .mobile-menu-drawer {
        width: 270px;
    }
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 27, 30, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.mobile-menu-logo {
    height: 50px;
}

.mobile-menu-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: var(--gold-accent);
    color: white;
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    padding: 0.875rem;
    border-radius: 10px;
    transition: all 0.3s;
    letter-spacing: -0.01em;
}

.mobile-nav-link.active {
    background: rgba(201, 162, 77, 0.1);
    color: var(--gold-accent);
}

.mobile-nav-link:hover {
    background: #f8fafc;
    color: var(--gold-accent);
    padding-left: 1.25rem;
}

.mobile-menu-group {
    border-radius: 10px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 5px;
}

.mobile-group-header {
    padding: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary);
    font-weight: 800;
    cursor: pointer;
    font-size: 1.05rem;
}

.mobile-group-header .material-symbols-outlined {
    transition: transform 0.3s ease;
}

.mobile-menu-group.active .mobile-group-header {
    color: var(--gold-accent);
}

.mobile-menu-group.active .mobile-group-header .material-symbols-outlined {
    transform: rotate(180deg);
}

.mobile-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu-group.active .mobile-group-content {
    max-height: 400px;
    padding-bottom: 0.75rem;
}

.mobile-group-content a {
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-group-content a:hover,
.mobile-group-content a.active {
    background: white;
    color: var(--gold-accent);
    padding-left: 1.25rem;
}


.mobile-menu-footer {
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
    margin-top: 2rem;
}

.mobile-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 16px;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(26, 61, 70, 0.2);
}

.mobile-contact-btn:hover {
    transform: translateY(-2px);
    background: var(--teal-dark);
    color: white;
}

.mobile-contact-btn .material-symbols-outlined {
    color: var(--gold-accent);
}

/* ===================================
   Popular Umrah Packages Section
   =================================== */
:root {
    --umrah-primary: #5c4d33;
    --umrah-gold-accent: #c5a47e;
    --umrah-background-light: #fdf8f2;
    --umrah-card-light: #f7f1e6;
}
.popular-umrah-packages {
    background-color: var(--umrah-background-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.popular-umrah-packages .cont {
    max-width: 1550px;
    width: 100%;
    padding: 0 15px;
}
.font-display { font-family: 'Cinzel', serif; }

.textured-bg {
    background-color: #2f1d13;
}

.package-card-custom {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(197, 164, 126, 0.2);
    background-color: #fff;
    box-shadow: 0 15px 35px -5px rgba(47, 29, 19, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(47, 29, 19, 0.15);
}

.card-img-wrapper {
    position: relative;
    height: 290px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card-custom:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-header-black {
    background-color: #2f1d13;
    padding: 1.25rem 1.5rem;
}
.card-header-black h3 {
    font-size: 1.25rem;
}

.card-body-custom {
    padding: 1.25rem;
    flex-grow: 1;
    background-color: #fdf8f2; /* Creamy background as seen in img */
}

.package-info-grid {
    display: flex;
    /* grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 1.25rem; */
    align-items: center;
}

.info-hotel-list {
    display: flex;
    justify-content: space-between;
    /* flex-direction: column; */
    /* gap: 8px; */
    width: 100%;
}

.info-hotel-item {
    display: flex;
    align-items: center;
    width: max-content;
    /* justify-content: flex-end; */
    /* gap: 10px; */
    color: #2f1d13;
    font-weight: 700;
    font-size: 0.8rem;
    
}
.info-hotel-item div{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    /* align-items: center; */
}
.info-hotel-item img {
    width: 30px;
    height: 40px;
    object-fit: contain;
}

.info-price-box {
    text-align: right;
    display: flex;
    /* flex-direction: column; */
    /* justify-content: e; */
    align-items: flex-end;
    gap: 1rem;
    /* justify-content: space-between; */
    margin-bottom: 1rem;
}

.info-price-value {
    font-family: montserrat, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #2f1d13;
    line-height: 1;
    display: block;
}

.info-booking-text {
    color: #4a3718 !important;
    font-size: 0.85rem;
    font-weight: 600;
    background: linear-gradient(to bottom, #E8D3A5, #D4B06A, #B8892F) !important;
    padding: 6px 15px;
}

.info-booking-price {
    font-weight: 800;
}


.divide-custom {
    /* border-top: 1px solid var(--umrah-primary); */
    border-bottom: 1px solid var(--umrah-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    margin-bottom: 10px;
}
.item-hotel-name{
    font-size: 14px;
}
.divide-custom{
    margin-top: 15px;
}
.divide-custom .material-icons{
    font-size: 1.15rem;
}
.divide-custom > div {
    text-align: center;
    border-right: 1px solid rgba(92, 77, 51, 0.4);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
}

.divide-custom > div:last-child {
    border-right: none;
}
.item-night{
    font-size: 0.9rem;
}
.item-night-1{
    display: none;
}
@media (max-width: 1350px) {
    .divide-custom > div {
        font-size: 0.55rem;
    }
    .item-night{
        /* display: none; */
        font-size: 12px;
    }
    .item-night-1{
        display: none;
    }
    .divide-custom .material-icons{
    font-size: 1rem;
}
    .info-price-value{
        font-size: 1.7rem;
    }
    .info-booking-text {
        padding: 6px 10px;
    }
    .card-header-black h3 {
    font-size: 1.15rem;
}
.item-hotel-name{
    font-size: 11px;
}
.info-hotel-item {
    font-size: 12px;
}
}

@media (max-width: 576px) {
    .divide-custom {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }
    .divide-custom > div {
        border-right: none;
        padding: 5px;
    }
    .info-booking-text {
    font-size: 0.8rem;
    padding: 6px 8px !important;
}
.info-hotel-item {
    font-size: 0.65rem !important;
}
.item-night{
    font-size: 0.6rem;
}
.info-hotel-item img {
    width: 35px;
    height: 45px;
    object-fit: contain;
}
}

.btn-enquire {
    background-color: #4a3718;
    color: #fff;
    border-radius: 0;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    padding: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    border: 1px solid #4a3718;
    width: 100%;
    transition: opacity 0.3s;
}

.btn-enquire:hover {
    opacity: 0.9;
    color: #fff;
    background-color: #624429;
}

.btn-details {
    background-color: #efd5bd !important;
    color: #624429;
    border: 1px solid #4a3718;
    border-radius: 0;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    padding: 0.6rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.btn-details:hover {
    background-color: #e5c3a2;
}

.title-line {
    height: 1px;
    width: 3rem;
    background-color: var(--umrah-gold-accent);
    opacity: 0.5;
}

.title-dot {
    width: 6rem;
    height: 4px;
    background-color: var(--umrah-gold-accent);
    margin: 0.5rem auto;
    border-radius: 2px;
    opacity: 0.3;
}

/* ===================================
   Section Overlap Clearance
   =================================== */
.overlap-clearance {
    padding-top: 150px !important;
}

/* Additional Mobile Optimizations */
@media (max-width: 991px) {
    .holiday-swiper-container {
        padding: 0 20px;
    }
}

@media (max-width: 575px) {
    .holiday-swiper-container {
        padding: 0 10px;
    }
    
    .holiday-swiper .swiper-button-next,
    .holiday-swiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .package-card-custom {
        margin: 0 auto 1.5rem;
        /*max-width: 400px;*/
    }
}
/* ===================================
   Mobile Slider for Package Cards
   =================================== */
.mobile-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.mobile-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .mobile-slider-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .mobile-slider-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .mobile-slider {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0rem;
        padding: 0 0rem 2rem;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    
    .mobile-slider .col-12 {
        flex: 0 0 90%;
        max-width: 90%;
        scroll-snap-align: center;
        padding-right: 0px;
    }
    
    .mobile-slider .package-card-custom {
        height: 100%;
        margin: 0;
    }
}

@media (max-width: 575.98px) {
    .mobile-slider .col-12 {
        flex: 0 0 90%;
        max-width: 98.5%;
    }
}

/* ===================================
   New Hero Section Styles
   =================================== */
.hero-section-new {
    background: linear-gradient(135deg, #fdf8f2 0%, #ffffff 100%);
    padding: 0px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(197, 164, 126, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Left Content Styles */
.hero-content-left {
    padding: 20px 30px;
    position: relative;
    z-index: 2;
}

.hero-badge-top {
    display: inline-block;
    background: linear-gradient(135deg, #c5a47e 0%, #d4b896 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(197, 164, 126, 0.3);
}

.hero-main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 6vw, 2.5rem);
    font-weight: 900;
    color: #4c3526;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.hero-subtitle-text {
    font-size: 1.1rem;
    color: #2f1d13;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-cta-box {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid #4a3718;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero-cta-box span {
    display: block;
    line-height: 1.4;
}

.cta-book {
    font-size: 1rem;
    color: #2f1d13;
    font-weight: 600;
}

.cta-highlight {
    font-size: 1.5rem;
    color: #4a3718;
    font-weight: 800;
    margin: 5px 0;
}

.cta-with {
    font-size: 0.95rem;
    color: #5b4538;
    font-weight: 600;
}

.offer-badge {
    background: linear-gradient(135deg, #4a3718 0%, #5c4d33 100%);
    color: white;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(74, 55, 24, 0.3);
    line-height: 1.6;
}

.offer-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.offer-highlight {
    font-weight: 800;
    color: #c5a47e;
}

.offer-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #c5a47e;
    margin: 0 5px;
}

/* Right Image Styles */
.hero-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 0 0 0 80px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 29, 19, 0.3) 0%, rgba(0, 90, 65, 0.2) 100%);
}

/* Booking Form Section */
.booking-form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(197, 164, 126, 0.2);
}

.form-heading {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2f1d13;
    text-align: center;
    margin-bottom: 15px;
}

.form-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #c5a47e, #d4b896);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.umrah-booking-form {
    margin-top: 30px;
}

.form-control-custom-new {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2f1d13;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control-custom-new:focus {
    outline: none;
    border-color: #c5a47e;
    background: white;
    box-shadow: 0 4px 12px rgba(197, 164, 126, 0.15);
}

.form-control-custom-new::placeholder {
    color: #999;
    font-weight: 500;
}

.btn-get-price {
    width: 100%;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgb(92, 77, 51) 0%, rgb(47, 29, 19) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.05em; */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 90, 65, 0.3);
}

.btn-get-price:hover {
    transition: all 0.3s linear;
    background: linear-gradient(135deg, #c5a47e 0%, #d4b896 100%);
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: white;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    
    
    .hero-content-left {
        padding: 30px 20px;
    }
    
    .hero-image-wrapper {
        height: 350px;
        border-radius: 0 0 40px 40px;
        margin-bottom: 30px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .booking-form-section {
        padding: 30px 25px;
    }
    
    .form-heading {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    
    
    .hero-content-left {
        padding: 25px 15px;
    }
    
    .hero-image-wrapper {
        height: 280px;
        border-radius: 0 0 30px 30px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-cta-box {
        padding: 15px 20px;
    }
    
    .cta-highlight {
        font-size: 1.3rem;
    }
    
    .offer-badge {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .booking-form-section {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .form-heading {
        font-size: 1.5rem;
    }
    
    .form-control-custom-new {
        padding: 13px 18px;
        font-size: 0.95rem;
    }
    
    .btn-get-price {
        padding: 14px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    
    .hero-content-left {
        padding: 20px 15px;
    }
    
    .hero-image-wrapper {
        height: 220px;
        border-radius: 0 0 20px 20px;
    }
    
    .hero-badge-top {
        font-size: 0.7rem;
        padding: 6px 18px;
    }
    
    .hero-main-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-text {
        font-size: 1rem;
    }
    
    .hero-cta-box {
        padding: 12px 15px;
    }
    
    .cta-book, .cta-with {
        font-size: 0.9rem;
    }
    
    .cta-highlight {
        font-size: 1.2rem;
    }
    
    .offer-badge {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .offer-price {
        font-size: 1.1rem;
    }
    
    .booking-form-section {
        padding: 20px 15px;
        margin-top: 25px;
        border-radius: 15px;
    }
    
    .form-heading {
        font-size: 1.3rem;
    }
    
    .form-divider {
        width: 60px;
        height: 3px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================================================
   Contact Us Page Styles
   ========================================================================== */

/* ==========================================================================
   Contact Us Page Styles - Unified Redesign
   ========================================================================== */

.contact-hero {
    background: linear-gradient(rgba(47, 29, 19, 0.85), rgba(47, 29, 19, 0.85)), url('./images/banner-salam.webp');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #efd5bd;
    letter-spacing: 1px;
}

.contact-hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

/* Main Combined Section */
.contact-main-section {
    padding: 6rem 0;
    background-color: #fdf8f2;
    margin-top: -4rem; /* Overlap effect */
    position: relative;
    z-index: 10;
}

.contact-combined-card {
    background: white;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(47, 29, 19, 0.1);
    display: flex;
    flex-wrap: wrap;
    border: 1px solid rgba(74, 55, 24, 0.05);
}

/* Info Side (Left) */
.contact-side-info {
    flex: 1 1 350px;
    background-color: #4a3718;
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

.contact-side-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #efd5bd;
    margin-bottom: 1.5rem;
}

.contact-side-info p {
    font-family: 'Montserrat', sans-serif;
    opacity: 0.8;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.info-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-icon-v2 {
    width: 60px;
    height: 60px;
    background: rgba(239, 213, 189, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #efd5bd;
    flex-shrink: 0;
}

.info-icon-v2 .material-symbols-outlined {
    font-size: 28px;
}

.info-text-v2 h5 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #efd5bd;
}

.info-text-v2 p, .info-text-v2 a {
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    opacity: 0.9;
    margin: 0;
    display: block;
    transition: color 0.3s;
}

.info-text-v2 a:hover {
    color: #efd5bd;
}

/* Form Side (Right) */
.contact-main-form-box {
    flex: 2 1 500px;
    padding: 4rem;
    background: white;
}

.contact-main-form-box h3 {
    font-family: 'Playfair Display', serif;
    color: #4a3718;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-input-v2 {
    width: 100%;
    padding: 1.1rem 1.4rem;
    border: 1px solid rgba(74, 55, 24, 0.1);
    border-radius: 1rem;
    background: #fdfaf7;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.contact-input-v2:focus {
    outline: none;
    background: white;
    border-color: #4a3718;
    box-shadow: 0 0 0 4px rgba(74, 55, 24, 0.05);
}

.contact-label-v2 {
    display: block;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #624429;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.btn-premium-send {
    background: #4a3718;
    color: #efd5bd;
    border: none;
    padding: 1.25rem 3.5rem;
    border-radius: 3rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(74, 55, 24, 0.15);
}

.btn-premium-send:hover {
    background: #624429;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(74, 55, 24, 0.25);
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 6rem 0;
    }
    
    .contact-side-info, .contact-main-form-box {
        padding: 3rem;
    }
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    
    .contact-main-section {
        margin-top: -2rem;
        padding: 3rem 0;
    }
    
    .contact-combined-card {
        border-radius: 1.5rem;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .contact-side-info, .contact-main-form-box {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-side-info {
        order: 2;
    }
    
    .contact-main-form-box {
        order: 1;
    }
    
    .contact-main-form-box h3, .contact-side-info h3 {
        font-size: 2rem;
    }
}

/* Package Overview Section */
.package-overview-section {
    padding: 2rem 0 3rem 0;
    background-color: #fdf8f2;
    text-align: center;
}

.overview-content-box {
    /* max-width: 1000px; */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.overview-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #4a3718;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.elegant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: #c5a47e;
}

.divider-icon {
    font-size: 14px;
    color: #c5a47e;
}

.overview-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #624429;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.overview-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #5b4538;
}

@media (max-width: 767px) {
    .overview-title {
        font-size: 2.5rem;
    }
    .overview-subtitle {
        font-size: 1.2rem;
    }
    
}

/* Tour Card Specific Styles */
.tour-card {
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.tour-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2f1d13;
    margin-bottom: 0.75rem;
}

.tour-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.tour-inclusions h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #4c3526;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.tour-inclusions ul {
    padding-left: 0;
    list-style: none;
}

.tour-inclusions ul li {
    font-size: 0.9rem;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.tour-inclusions ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c7822d;
    font-weight: bold;
    font-size: 1.2rem;
}

.tour-price .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2f1d13;
}

.tour-price .pp {
    font-size: 0.9rem;
    color: #c7822d;
    font-weight: 600;
}

.btn-wa {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.btn-wa:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: white;
}

@media (max-width: 950px) {
    .section-description{
        width: 90%;
    }
}


/* ===================================
   Package Details Page
   =================================== */

/* Package Hero Section */
.package-hero-section {
    background: linear-gradient(135deg, #2f1d13 0%, #4a3718 100%);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.package-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(197, 164, 126, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.package-hero-content {
    position: relative;
    z-index: 2;
}

.package-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.package-breadcrumb a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s;
}

.package-breadcrumb a:hover {
    color: white;
}

.package-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.package-breadcrumb .material-icons {
    font-size: 1rem;
}

.package-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.package-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.package-rating {
    display: flex;
    gap: 0.25rem;
}

.package-rating .material-icons {
    color: var(--gold-accent);
    font-size: 1.25rem;
}

.package-hotels {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.package-hotels .material-icons {
    color: var(--gold-accent);
}

.package-hero-price {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 164, 126, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.price-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-accent);
    font-family: 'Montserrat', sans-serif;
}

.price-per {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.price-booking {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-accent);
    color: #2f1d13;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
}

.price-booking .material-icons {
    font-size: 1.5rem;
}

/* Main Details Section */
.package-details-main {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.details-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 164, 126, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.details-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.details-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.details-card-title .material-icons {
    color: var(--gold-accent);
    font-size: 2rem;
}

/* Package Highlights */
.package-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-light);
    border-radius: 1rem;
    border: 1px solid rgba(197, 164, 126, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: white;
    border-color: var(--gold-accent);
    transform: translateY(-3px);
}

.highlight-item .material-icons {
    font-size: 2.5rem;
    color: var(--gold-accent);
}

.highlight-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.package-description {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Hotel Showcase */
.hotel-showcase {
    padding: 2rem;
    background: var(--card-light);
    border-radius: 1.25rem;
    border: 1px solid rgba(197, 164, 126, 0.1);
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hotel-name {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
    margin: 0;
}

.hotel-location .material-icons {
    color: var(--gold-accent);
    font-size: 1.25rem;
}

.hotel-rating {
    display: flex;
    gap: 0.25rem;
}

.hotel-rating .material-icons {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.hotel-gallery {
    margin-top: 1.5rem;
}

.hotel-img {
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.5s ease;
    cursor: pointer;
}

/* Standardize heights for desktops */
@media (min-width: 768px) {
    .hotel-gallery > .row > .col-md-6:first-child .hotel-img {
        height: 320px; /* Main featured image height */
    }
    
    .hotel-gallery > .row > .col-md-6:last-child .hotel-img {
        height: 156px; /* Supporting images ( (320-8)/2 ) */
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .hotel-img {
        height: 220px;
        margin-bottom: 0.5rem;
    }
}

.hotel-img:hover {
    transform: scale(1.02);
}


/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 2rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-accent), var(--gold-muted));
    border-radius: 9999px;
}

.itinerary-item {
    position: relative;
    padding-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.itinerary-item:last-child {
    padding-bottom: 0;
}

.itinerary-day {
    position: absolute;
    left: -2rem;
    transform: translateX(-50%);
    background: var(--gold-accent);
    color: #2f1d13;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(197, 164, 126, 0.3);
}

.itinerary-content {
    flex: 1;
    padding: 1.5rem;
    background: var(--card-light);
    border-radius: 1rem;
    border: 1px solid rgba(197, 164, 126, 0.1);
    margin-left: 3rem;
}

.itinerary-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.itinerary-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Inclusions & Exclusions */
.inclusion-title {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inclusion-list,
.exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-list li,
.exclusion-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--card-light);
    border-radius: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.inclusion-list li:hover,
.exclusion-list li:hover {
    background: white;
    transform: translateX(5px);
}

.inclusion-list li .material-icons {
    color: #22c55e;
    font-size: 1.25rem;
}

.exclusion-list li .material-icons {
    color: #ef4444;
    font-size: 1.25rem;
}

/* Additional Info */
.additional-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    padding: 1rem 1.5rem;
    background: var(--card-light);
    border-radius: 0.75rem;
    border-left: 4px solid var(--gold-accent);
    color: var(--text-muted);
    line-height: 1.6;
}

.info-item strong {
    color: var(--text-dark);
}

/* Booking Sidebar */
.booking-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(197, 164, 126, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.booking-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-price-display {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-light);
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.booking-price-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.booking-price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-accent);
    font-family: 'Montserrat', sans-serif;
}

.booking-price-per {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.booking-form .form-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.booking-form .form-control {
    border: 2px solid rgba(197, 164, 126, 0.2);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 0.2rem rgba(197, 164, 126, 0.15);
}

.btn-booking-submit {
    width: 100%;
    background: linear-gradient(135deg, #4a3718 0%, #2f1d13 100%);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 29, 19, 0.3);
}

.btn-booking-submit:hover {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-muted) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 164, 126, 0.4);
}



/* Responsive Design */
@media (max-width: 991.98px) {
    .booking-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .package-hero-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .itinerary-content {
        margin-left: 2rem;
    }
}

@media (max-width: 767.98px) {
    .package-hero-section {
        padding: 2rem 0 1.5rem;
    }
    
    .package-hero-title {
        font-size: 1.75rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .details-card {
        padding: 1.5rem;
    }
    
    .package-highlights {
        grid-template-columns: 1fr;
    }
    
    .hotel-showcase {
        padding: 1.5rem;
    }
    
    .itinerary-timeline {
        padding-left: 1.5rem;
    }
    
    .itinerary-day {
        width: 50px;
        height: 50px;
        font-size: 0.75rem;
        left: -1.5rem;
    }
    
    .itinerary-content {
        margin-left: 1.5rem;
        padding: 1rem;
    }
}

/* ===================================
   Why Choose Cards
   =================================== */
.why-choose-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(47, 29, 19, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c5a47e, #c7822d);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(47, 29, 19, 0.15);
    border-color: rgba(197, 164, 126, 0.3);
}

.why-choose-card:hover::before {
    transform: scaleX(1);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fdf8f2 0%, #f7f1e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.why-choose-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a47e, #c7822d);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-card:hover .why-choose-icon::after {
    opacity: 1;
}

.why-choose-icon .material-symbols-outlined {
    font-size: 2.5rem;
    color: #c7822d;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-icon .material-symbols-outlined {
    color: #c5a47e;
    transform: scale(1.1);
}

.why-choose-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2f1d13;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-title {
    color: #c7822d;
}

.why-choose-desc {
    font-size: 0.95rem;
    color: #5b4538;
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-choose-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-choose-icon .material-symbols-outlined {
        font-size: 2rem;
    }
    
    .why-choose-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .why-choose-card {
        padding: 1.75rem 1.25rem;
    }
    
    .why-choose-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .why-choose-icon .material-symbols-outlined {
        font-size: 1.75rem;
    }
    
    .why-choose-title {
        font-size: 1.1rem;
    }
    
    .why-choose-desc {
        font-size: 0.9rem;
    }
}

/* ===================================
   FAQ Section
   =================================== */
.faq-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(47, 29, 19, 0.08);
    border: 1px solid rgba(197, 164, 126, 0.2);
}

.faq-item {
    border-bottom: 1px solid rgba(197, 164, 126, 0.15);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2f1d13;
    transition: all 0.3s ease;
    gap: 1.5rem;
}

.faq-question:hover {
    color: #c7822d;
}

.faq-icon {
    font-size: 1.5rem;
    color: #c7822d;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdf8f2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer p {
    padding-top: 1rem;
    margin: 0;
    color: #5b4538;
    line-height: 1.8;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-question {
    color: #c7822d;
    margin-bottom: 0.5rem;
}

.faq-item.active .faq-icon {
    background: #c7822d;
    color: white;
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .faq-container {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
    }
    
    .faq-icon {
        width: 36px;
        height: 36px;
        /* font-size: 1.25rem; */
    }
}

/* ===================================
   How It Works (Journey Steps)
   =================================== */
.how-it-works-section {
    background-color: #ffffff;
    padding: 100px 15px;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: 'JOURNEY';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    z-index: 1;
    pointer-events: none;
    letter-spacing: 0.2em;
}

.step-card-wrapper {
    position: relative;
    z-index: 2;
}

.step-card-v2 {
    background: white;
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.step-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(47, 29, 19, 0.1);
    border-color: var(--gold-accent);
}

.step-icon-outer {
    width: 80px;
    height: 80px;
    background: #fdf8f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--gold-accent);
    position: relative;
    border: 1px solid rgba(197, 164, 126, 0.2);
    transition: all 0.4s ease;
}

.step-card-v2:hover .step-icon-outer {
    background: var(--gold-accent);
    color: white;
    transform: scale(1.1);
}

.step-icon-outer .material-symbols-outlined {
    font-size: 2.5rem;
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #2f1d13;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.step-title-v2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #2f1d13;
    margin-bottom: 1rem;
}

.step-desc-v2 {
    color: #5b4538;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Connecting Line (Desktop) */
@media (min-width: 992px) {
    .step-card-wrapper:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -15%;
        width: 30%;
        height: 2px;
        border-top: 2px dashed rgba(197, 164, 126, 0.3);
        z-index: -1;
    }
}

/* ===================================
   Quote CTA Section
   =================================== */
.quote-cta-section {
    background: linear-gradient(rgba(47, 29, 19, 0.92), rgba(47, 29, 19, 0.92)), url('./images/banner-salam.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 15px;
    color: white;
    text-align: center;
    position: relative;
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
}

.quote-heading {
    font-family: 'Cinzel', serif;
    /* font-size: clamp(2rem, 5vw, 3rem); */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gold-accent);
}

.quote-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quote-contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-pill {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.contact-pill:hover {
    background: rgba(197, 164, 126, 0.15);
    border-color: var(--gold-accent);
    color: var(--gold-accent);
    transform: translateY(-5px);
}

.contact-pill .material-symbols-outlined {
    font-size: 0.8rem;
    color: var(--gold-accent);
}

.contact-pill span:not(.material-symbols-outlined) {
    font-weight: 600;
    font-size: 0.8rem;
}

.btn-premium-quote {
    background: linear-gradient(135deg, #c5a47e 0%, #d4b896 100%);
    color: #2f1d13;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    box-shadow: 0 15px 30px rgba(197, 164, 126, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.btn-premium-quote:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(197, 164, 126, 0.4);
    color: #2f1d13;
}

.btn-premium-quote .material-symbols-outlined {
    transition: transform 0.3s ease;
}

.btn-premium-quote:hover .material-symbols-outlined {
    transform: translateX(5px);
}

.whatsapp-instant {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .quote-contact-box {
        flex-direction: column;
        align-items: center;
    }
    .contact-pill {
        width: 100%;
        max-width: 320px;
    }
    .how-it-works-section::before {
        font-size: 8rem;
    }
    .btn-premium-quote {
    font-size: 0.9rem;
    padding:10px 20px;
    }
}

/* ===================================
   Umrah Guide Components
   =================================== */
.umrah-guide-section {
    padding: 80px 25px;
    background-color: #fdfaf7;
    color: #2f1d13;
}

.guide-intro-box {
    padding-left: 50px;
    padding-right: 50px;
}

.guide-main-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    /* font-size: clamp(1.75rem, 4vw, 2.5rem); */
    color: #2f1d13;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: left;
}

.guide-lead-text {
    font-size: 1rem;
    line-height: 1.4;
    color: #5b4538;
    text-align: justify;
    font-family: montserrat, sans-serif;
}

/* Feature Grid (Inclusions) */
.feature-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
}

.feature-pill-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(197, 164, 126, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-pill-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
    box-shadow: 0 15px 40px rgba(197, 164, 126, 0.15);
}

.feature-pill-icon {
    width: 60px;
    height: 60px;
    background: #fdf8f2;
    color: var(--gold-accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-pill-icon .material-symbols-outlined {
    font-size: 2rem;
}

.feature-pill-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2f1d13;
}

.feature-pill-desc {
    font-size: 0.95rem;
    color: #5b4538;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Ritual Timeline */
.ritual-timeline {
    position: relative;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.ritual-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(197, 164, 126, 0.2);
}

.ritual-step-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.ritual-step-dot {
    position: absolute;
    left: 10px;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--gold-accent);
    border: 4px solid white;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 2px var(--gold-accent);
}

.ritual-step-content {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ritual-step-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #2f1d13;
    margin-bottom: 0.5rem;
}

/* Ziyarah Cards */
.ziyarah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.ziyarah-mini-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(197, 164, 126, 0.1);
    display: flex;
    flex-direction: column;
}

.ziyarah-mini-img {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.ziyarah-mini-content {
    padding: 1.25rem;
}

.ziyarah-mini-name {
    font-weight: 700;
    color: #2f1d13;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

/* Preparation Box */
.preparation-box {
    background: #2f1d13;
    color: white;
    padding: 4rem;
    border-radius: 2rem;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.preparation-box::after {
    content: 'CHECKLIST';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.prep-list-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 30px;
}

.prep-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.prep-check-v2 {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

/* Generic Guide Content */
.guide-text-block {
    margin-bottom: 3rem;
}

.guide-sub-heading {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #2f1d13;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.guide-sub-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold-accent);
}

.text-gold-accent {
    color: var(--gold-accent) !important;
}

@media (max-width: 991px) {
    .preparation-box {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {
    .feature-grid-v2 {
        grid-template-columns: 1fr;
    }
    .prep-list-v2 {
        grid-template-columns: 1fr;
    }
    
    
}
@media (max-width: 550px) {
    .guide-intro-box {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* ===================================
   Premium Editorial Section (Card-less)
   =================================== */
.premium-editorial-section {
    padding: 50px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    color: #2f1d13;
}

.editorial-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 25px;
}

.editorial-header {
    margin-bottom: 40px;
    position: relative;
}

.editorial-main-title {
    font-family: 'Cinzel', serif;
    /* font-size: clamp(2.5rem, 6vw, 4rem); */
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #2f1d13;
}

.editorial-lead {
    font-size: 1rem;
    line-height: 1.8;
    color: #5b4538;
    max-width: 1100px;
    padding-left: 2rem;
    border-left: 4px solid var(--gold-accent);
}

/* Inclusions Ribbon */
.editorial-ribbon {
    background: #fdfaf7;
    padding: 4rem 0;
    margin: 80px 0;
    border-top: 1px solid rgba(197, 164, 126, 0.2);
    border-bottom: 1px solid rgba(197, 164, 126, 0.2);
}

.ribbon-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ribbon-text {
    font-size: 1.15rem;
    color: #5b4538;
    line-height: 1.8;
    font-weight: 500;
}

/* Tier Panels (Card-less Staggered) */
.tier-panel {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 40px;
}

.tier-panel.reverse {
    flex-direction: row-reverse;
}

.tier-info {
    flex: 1;
    position: relative;
}

.tier-visual {
    flex: 1;
}

.tier-number-decor {
    position: absolute;
    top: -60px;
    left: -40px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(197, 164, 126, 0.05);
    font-family: 'Cinzel', serif;
    z-index: 1;
    line-height: 1;
}

.tier-label-alt {
    color: var(--gold-accent);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 2;
}

.tier-heading-v2 {
    font-family: 'Cinzel', serif;
    /* font-size: 2.5rem; */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2f1d13;
    position: relative;
    z-index: 2;
}

.tier-desc-v2 {
    font-size: 1rem;
    line-height: 1.8;
    color: #5b4538;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.tier-feature-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.tier-feature-item-v2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #2f1d13;
    font-size: 0.95rem;
}

.tier-feature-item-v2 .bullet {
    width: 32px;
    height: 32px;
    background: #fdfaf7;
    color: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(197, 164, 126, 0.2);
}

/* Image Frames */
.editorial-frame {
    position: relative;
    padding: 20px;
    height: 450px;
}

.editorial-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 1px solid var(--gold-accent);
    z-index: 1;
}

.editorial-frame img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: 30px 30px 60px rgba(47, 29, 19, 0.08);
}

@media (max-width: 991px) {
    .tier-panel, .tier-panel.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .editorial-lead {
        margin: 0 auto;
        text-align: left;
    }
    .tier-number-decor {
        left: 50%;
        transform: translateX(-50%);
    }
    .tier-feature-grid-v2 {
        justify-content: center;
    }
}

/* ===================================
   Pilgrimage Handbook (Scrollable)
   =================================== */
.handbook-section {
    padding: 40px 0;
    background-color: #fdfaf7;
    border-top: 1px solid rgba(197, 164, 126, 0.2);
}

.handbook-wrapper {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(47, 29, 19, 0.05);
    overflow: hidden;
    height: 700px; /* Fixed height for scrollbar */
}

/* Local Navigation */
.handbook-nav-sidebar {
    width: 300px;
    background: #2f1d13;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
}

.handbook-nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.handbook-nav-link:hover, .handbook-nav-link.active {
    background: rgba(197, 164, 126, 0.1);
    color: #c5a47e;
    border-left-color: #c5a47e;
}

/* Content Area */
.handbook-scroll-area {
    flex: 1;
    padding: 60px;
    overflow-y: auto;
    scroll-behavior: smooth;
    position: relative;
}

/* Custom Scrollbar for Handbook */
.handbook-scroll-area::-webkit-scrollbar, 
.handbook-nav-sidebar::-webkit-scrollbar {
    width: 6px;
}
.handbook-scroll-area::-webkit-scrollbar-track {
    background: transparent;
}
.handbook-scroll-area::-webkit-scrollbar-thumb {
    background: rgba(197, 164, 126, 0.3);
    border-radius: 10px;
}
.handbook-scroll-area::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

.handbook-article {
    margin-bottom: 20px;
}

.handbook-article:last-child {
    margin-bottom: 0;
}

.handbook-label {
    display: inline-block;
    background: #fdfaf7;
    color: var(--gold-accent);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.handbook-title {
    font-family: 'Cinzel', serif;
    color: #2f1d13;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.handbook-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #5b4538;
}

.handbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.handbook-mini-card {
    background: #fdfaf7;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(197, 164, 126, 0.1);
}

.handbook-mini-icon {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.handbook-mini-title {
    font-weight: 700;
    color: #2f1d13;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Card-less List Layout */
.handbook-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 2rem;
}

.handbook-list-item-v2 {
    display: flex;
    gap: 5px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(197, 164, 126, 0.3);
}

.handbook-list-item-v2:last-child {
    border-bottom: none;
}

.handbook-list-num {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold-accent);
    font-weight: 700;
    line-height: 1;
    min-width: 40px;
}

.handbook-list-content {
    flex: 1;
}

.handbook-list-title {
    font-weight: 700;
    color: #2f1d13;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.handbook-list-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5b4538;
}

@media (max-width: 991px) {
    /* .handbook-wrapper {
        flex-direction: column;
        height: auto;
    } */
    .handbook-nav-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding: 20px;
    }
    .handbook-scroll-area {
        height: 600px;
        padding: 30px;
    }
}




/* ===================================
   Form Popup Messages
   =================================== */
.form-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.form-popup.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-left: 5px solid #2e7d32;
}

.form-popup.error {
    background: linear-gradient(135deg, #f44336, #e53935);
    color: white;
    border-left: 5px solid #c62828;
}

.form-popup p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 600px) {
    .form-popup {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
    .editorial-frame {
        height: auto;
    }
    .editorial-frame img {
        height: auto;
    }
    .card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}
}
