:root {
            --forest: #6abe45;
            --gold: #d4a373;
            --soft-bg: #fdfcfb;
            --card-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--soft-bg);
           
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6{
            color: #000;
            
        }
        
       
        a{
            text-decoration: none;
        }

p, li {line-height: 1.8;color: #212529bf;
    font-size: 0.9rem;}
.section-title{font-size: 24px;}
        /* Top Bar */
        .top-bar {
            background: var(--forest);
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
            
        }
        .top-bar a { color: white; text-decoration: none; }
        
        .bookbtn{
            background: #6abe45;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #6abe45;
    transition: all 0.5s ease;
    font-size: 13px;
    line-height: 13px;
    text-transform: uppercase;
        }
        
        
         .bookbtn:hover{
             background: #fff;
             color: #6abe45;
         }
         
         .iti--separate-dial-code.iti--show-flags .iti__selected-dial-code{
             color: #000;
         }
        

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: 0.3s;
        }
        
        
        
        .nav-link{
           padding: 0 !important;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.5s ease;
    position: relative;
    text-transform: uppercase;
    /*padding: 0 !important;*/
    /*color: #6abe45;*/
    font-size: 12px;
    line-height: 12px;
    /*font-weight: 500;*/
    /*letter-spacing: 0.2px;*/
    /*transition: all 0.5s ease;*/
    /*position: relative;*/
    /*text-transform: uppercase;*/
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
        }
        
        .nav-link:hover{
              color: #6abe45;

        }
        
        
        .nav-link:before{
            content:"";
            position: absolute;
            right:0;
            width: 0;
            height: 1px;
            bottom: -2px;
            background: #6abe45;
             transition: all 0.5s ease;
        }
        
       
        
       .navbar  .nav-item{
            /*margin: 0px 5px;*/
            margin: 0px 3px;
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    padding-top: 4px;
        }
        

        /* Modern Capsule Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(15px);
            margin: 10px auto;
            width: 92%;
            border-radius: 50px;
            padding: 10px 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            z-index: 1050;
            
    /*        background: rgb(27 17 17 / 90%);*/
    /* backdrop-filter: blur(15px); */
    /*margin: 10px auto;*/
    /*width: 92%;*/
    /*border-radius: 50px;*/
    /*padding: 10px 15px;*/
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    /*z-index: 1050;*/
    /*background: #d4a373 !important;*/
        }

        /* Hero Slider */
        .hero-slider .carousel-item {
            height: 75vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            color: white;
        }
        .hero-content { max-width: 800px; }
        .hero-content h2 { font-size: 2.5rem;
    margin-bottom: 12px }

.hero-content p{
    font-size:16px;
}

.fts{
    font-size:2.5rem;
}
/* --- Dropdown Custom Styles --- */

/* Remove default Bootstrap border and add shadow */
.dropdown-menu {
       border: none;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 10px;
    background: #6abe45;
    margin-top: 15px !important;
    top: 4px;
    
}



/* 2. Limit height for the Nested Submenus (Desktop) */
@media (min-width: 992px) {
    .submenu-right {
        max-height: 50vh; /* Limit nested menu height */
        overflow-y: auto; 
        /* Optional: align bottom of submenu with viewport if needed, 
           but usually max-height fixes it */
    }
    
     .nav-link:hover:before{
            right:unset;
            left: 0;
            width: 100%;
           
        }
}

/* 3. Style the Scrollbar to match your Forest Theme */
.dropdown-menu::-webkit-scrollbar,
.submenu-right::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track,
.submenu-right::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb,
.submenu-right::-webkit-scrollbar-thumb {
    background: #d4a373; /* Your Gold Color */
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover,
.submenu-right::-webkit-scrollbar-thumb:hover {
    background: #6abe45; /* Your Forest Color */
}

/* Style individual items */
.dropdown-item {
  font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hover effect for items */
.dropdown-item:hover, .dropdown-item:focus {
    background-color: #349609; /* var(--gold) */
    color: #fff;
}

/* Fix for the toggle arrow spacing */
.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}




/* --- Desktop Hover Interaction (Optional) --- */
/* This makes the menu open on hover instead of click on Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu1 {
        display: block;
        animation: fadeInUp 0.3s ease forwards;
    }
}

/* Animation for the dropdown */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Nested Dropdown (Right Side Flyout) --- */

/* 1. Desktop Styles (Hover Effect) */
@media (min-width: 992px) {
    /* Position the nested menu to the right */
    .submenu-right {
        top: 0;
        left: 100%; /* Push completely to the right */
        margin-top: -5px; /* Align top edges */
        margin-left: 0px; 
        display: none; /* Hidden by default */
        position: absolute;
    }

    /* CRITICAL FIX: Only show the submenu that is a direct child (>) of the hovered item */
    .dropdown-submenu:hover > .submenu-right {
        display: block;
        animation: slideInRight 0.3s ease forwards;
    }
}

/* 2. Mobile Styles (Stacking) */
@media (max-width: 991px) {
    .submenu-right {
        position: static;
        display: none; /* Hidden until clicked via JS */
        margin-left: 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        box-shadow: none;
        border-left: 2px solid #d4a373;
    }
    
    /* Show when the class 'show' is added via JS */
    .submenu-right.show {
        display: block;
    }
}

/* Animation for smooth appearance */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


        /* Marquee */
        .announcement {
            background: #fff3cd;
            padding: 10px 0;
            font-weight: 600;
            font-size: 14px;
            line-height: 14px;
            color: #856404;
        }

        /* Listing & Cards */
        .modern-card {
            border: none;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            transition: 0.4s;
            box-shadow: var(--card-shadow);
           
        }
    
        .modern-card i{color:#6abe45;}
        .price-tag {
            background: var(--gold);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            position: absolute;
            top: 15px; right: 15px;
            font-weight: 700;
        }

        /* Section Headings */
        .tagline {
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gold);
            display: block;
            margin-bottom: 5px;
        }

        /* Form Container */
        .enquiry-container {
            background:#f3f4f5;
            border-radius: 40px;
           
           
            position: relative;
            z-index: 100;
        }
        .form-control, .form-select {
             border: 1px solid #eee;
    padding: 12px 12px;
    border-radius: 4px;
    background: #f8f9fa;
    font-size: 12px;
    color: #000000;
        }
        
        .form-control::placeholder{
            color: #000 !important;
        }
        
        .form-control:focus, .form-select:focus {
    color: #000;
      background: #f8f9fa;
    border-color: #d4a373;
    outline: 0;
    box-shadow: unset;
}

/* Specific styling for the select dropdown */
.form-select {
    /* 1. Remove default browser styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    /* 2. Add Custom Arrow Icon (Encoded SVG) */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
    
    /* 3. Position and Size the Arrow */
    background-repeat: no-repeat !important;
    background-position: right 1.2rem center !important;
    background-size: 16px 12px !important;
    
    /* 4. Ensure background color is set */
    background-color: #f8f9fa; 
}
        
        
        .about-img-frame {
    position: relative;
    padding: 0px 20px 20px;
}
.about-img-frame img {
    border-radius: 40px;
    width: 100%;
}
.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #349609;
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}
tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

 /* Listing Section */
        .listing-card {
            border: none;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--card-shadow);
        }
        .listing-card:hover { transform: translateY(-15px); }
        .listing-img { height: 200px; object-fit: cover; }
        .price-badge {
            background: var(--forest);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            position: absolute;
            top: 20px;
            right: 20px;
            font-weight: 600;
        }
        
        
        .bharatbtn{
    padding: 6px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 1px solid #6abe45;
    background: #6abe45;
    border-radius: 20px;
    color: #fff;
    transition: all 0.5s ease;
    width: fit-content !important;
        }
        
        .bharatbtn:hover{
            background: #000;
            color: #fff;
        }
        
        .modal-header{
            padding: 0;
    margin: 0;
    border: 0;
        }
        
        .modal-header .btn-close{
           position: absolute;
    right: 30px;
    top: 20px;
    background: #000;
    opacity: 1;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
        }
        
     

.discover-box {
    background: linear-gradient(#6abe45, #6abe45), url(https://images.unsplash.com/photo-1547234935-80c7145ec969?auto=format&fit=crop&w=1200&q=80);
    background-size: cover;
    color: white;
    border-radius: 40px;
    padding: 80px 40px;
    background-position: center;
}


.modern-card { border: none; background: white; border-radius: 25px; overflow: hidden; transition: 0.4s; box-shadow: var(--card-shadow); }

        
        .activity-icon {
    background: rgba(212, 163, 115, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.why-section {
    background: var(--forest);
    border-radius: 30px;
    color: white;
    
}
.feature-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    height: 100%;
    transition: 0.3s;
}
.feature-item i{
    color: rgb(255 255 255) !important;
}

.gallery-img {
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    width: 100%;
    transition: 0.5s;
    cursor: pointer;
}


/* FAQ Accordion */
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            background: transparent;
        }
        .accordion-button {
            border-radius: 0px !important;
            padding: 20px;
            font-weight: 600;
            box-shadow: var(--card-shadow);
            color: #6abe45;
        }
        .accordion-button:not(.collapsed) {
            background-color: var(--gold);
            color: white;
        }
        .accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow:unset;
}

.formbtn{
   background: #6abe45;
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    border: 1px solid #6abe45;
    transition: all 0.5s ease;
}
.formbtn:hover {
    background: #fff;
    color: #6abe45;
}

label.error{
    color: red !important;
    font-size: 12px !important;
}


 /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: var(--card-shadow);
            border-left: 5px solid var(--gold);
        }
        
        
        
        /**/
        
        
          .inner-hero {
            background: linear-gradient(rgba(2, 44, 34, 0.8), rgba(2, 44, 34, 0.8)), url('https://penchsafari.com/front/assets/img/Pench%20Feature%20Image.jpg');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }
        .booking-horizontal {
            background: white;
            border-radius: 40px;
            padding: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            margin-top: -60px;
            position: relative;
            z-index: 100;
        }
        .info-card {
            border: none;
            background: #fff;
            border-radius: 25px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid #f0f0f0;
        }
        .table-custom {
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #eee;
        }
        .table-custom thead th {
            background: var(--forest);
            color: white;
            padding: 15px;
            border: none;
        }
        .table-custom td { padding: 12px 15px; border-bottom: 1px solid #eee; font-size: 0.9rem;}
        
        .rules-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            list-style: none;
        }
        .rules-list li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--gold);
        }
        .zone-badge {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .bg-mp { background: #e8f5e9; color: #2e7d32; }
        .bg-mh { background: #e3f2fd; color: #1565c0; }
        .iti { width: 100%; }
        
        
        
         /* Hero */
        .hotel-hero {
            background: linear-gradient(rgba(2, 44, 34, 0.7), rgba(2, 44, 34, 0.7)), url('https://penchsafari.com/admin/uploads/hotels/2/hotel_2_Bonfire%20Area.webp');
            background-size: cover; background-position: center; padding: 100px 0 120px; color: white; text-align: center;
        }

        /* Horizontal Filter Capsule */
        .filter-capsule {
            background: white; border-radius: 100px; padding: 20px 40px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.1); margin-top: -60px;
            position: relative; z-index: 1000; border: 1px solid #eee;
        }
        .filter-capsule label { display: block; font-size: 0.65rem; font-weight: 800; color: var(--gold); text-transform: uppercase; margin-bottom: 5px; }
        .filter-capsule select, .filter-capsule input { border: none; font-weight: 600; font-size: 0.85rem; color:#000; width: 100%; outline: none; background: transparent; }
        .divider-v { width: 1px; height: 40px; background: #eee; margin: 0 15px; }
        
        
        .datepicker::placeholder{
            color: #000 !important;
        }

        /* Traveller Dropdown Custom UI */
        .traveller-wrap { position: relative; }
        #dropdownMenu { 
            display: none; position: absolute; top: 110%; left: 0; width: 300px; 
            background: white; border-radius: 25px; padding: 25px; 
            box-shadow: 0 15px 40px rgba(0,0,0,0.15); z-index: 1000; border: 1px solid #eee;
        }
        .qty-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid #ddd; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; color: var(--forest); font-weight: bold; }

        /* Listing Cards */
        .hotel-premium-card {
            background: white; border-radius: 40px; overflow: hidden;
            display: flex; margin-bottom: 20px; border: 1px solid #f0f0f0; transition: 0.4s;
        }
        .hotel-premium-card:hover { box-shadow: var(--card-shadow); border-color: var(--gold); }
        .hotel-gallery-side { width: 35%; position: relative; }
        .hotel-gallery-side img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
        .hotel-content-side { width: 45%; padding: 20px; display: flex; flex-direction: column; justify-content: center; }
        .hotel-pricing-side { width: 20%; padding: 15px; border-left: 1px solid #f5f5f5; background: #fafafa; text-align: center; display: flex; flex-direction: column; justify-content: center; }

        /* Amenity Icons Style */
        .amenity-row-premium { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 20px; }
        .amenity-item-box { text-align: center; width: 45px; }
        .amenity-item-box img { width: 25px; height: 25px; margin-bottom: 5px; filter: contrast(0.5); }
        .amenity-item-box span { display: block; font-size: 0.6rem; font-weight: 700; color: #888; text-transform: uppercase; line-height: 1; }

        .price-val-big { font-size: 1.5rem; font-weight: 900; color: var(--forest); display: block; }
        .score-pill { background: var(--forest); color: white; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; }

        /* Enquiry Form Premium Background */

        .luxury-form-box {
            background: #fff;
            border-radius: 35px; padding: 30px; color: #000;
            border: 1px solid rgba(212, 163, 115, 0.3);
        }
        .luxury-form-box h4 { color: var(--gold); font-weight: 900; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
        .luxury-form-box .form-control, .luxury-form-box .form-select {
            border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 5px;
    background: #f8f9fa;
    font-size: 14px;
    color: #000 !important;
        }
        .luxury-form-box .form-control::placeholder { color: #000 !important; }
        .luxury-form-box .form-control:focus { background: rgba(255, 255, 255, 0.15); border-color: var(--gold); box-shadow: none; color: #000 !important; }
        
        
        
        
        /* Stay Experience Section Styles */
.stay-experience-section {
    padding: 80px 0;
    background-color: #fff;
}

.experience-content h2 {
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.experience-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin-top: 10px;
    border-radius: 2px;
}

.experience-text {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.boundary-badge {
    display: inline-block;
    background: #f0f4f2;
    color: var(--forest);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Facility Grid Styles */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.facility-item {
    background: var(--soft-bg);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.facility-item:hover {
    background: white;
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.facility-icon {
    width: 45px;
    height: 45px;
    background: var(--forest);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.facility-item h6 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--forest);
}

.facility-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #777;
    line-height: 1.4;
}


/* Container Fix */
.resort-gallery-slider {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.resort-gallery-slider .carousel-inner {
    height: 100%;
}

.resort-gallery-slider .carousel-item {
    height: 100%; /* Matching your hotel-premium-card height */
}

/* Specific Image Class to prevent stretching */
.resort-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resort-gallery-slider .carousel-item:hover .resort-slider-img {
    transform: scale(1.05);
}

/* Custom Navigation UI */
.resort-gallery-slider .carousel-control-prev,
.resort-gallery-slider .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    color: #6abe45;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0; /* Hidden by default */
    transition: all 0.3s ease;
    margin: 0 10px;
}

.resort-gallery-slider:hover .carousel-control-prev,
.resort-gallery-slider:hover .carousel-control-next {
    opacity: 1; /* Show on hover */
}

.resort-gallery-slider .carousel-control-prev:hover,
.resort-gallery-slider .carousel-control-next:hover {
    background: #d4a373;
    color: white;
}

/* Dot Indicators */
.resort-gallery-slider .carousel-indicators {
    margin-bottom: 15px;
}

.resort-gallery-slider .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #6abe45;
}

.resort-gallery-slider .carousel-indicators .active {
    background-color: #d4a373;
}


 /* Custom styles to maintain the premium theme while integrating filters */
        .filter-sidebar-box {
            background: #fff;
            border-radius: 25px;
            padding: 25px;
            border: 1px solid #eee;
            margin-bottom: 25px;
        }
        .filter-sidebar-box h3 {
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .filter-group { margin-bottom: 25px; }
        .filter-group h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; color: #555; }
        .checkbox-item { margin-bottom: 8px; font-size: 0.85rem; display: flex; align-items: center; gap: 8px; cursor: pointer;}
        .checkbox-item input { width: 16px; height: 16px; accent-color: #ffc107; }
        .checked-star { color: #ffc107; }
        #panel { display: none; }
        .read-more-btn { background: none; border: none; color: #355e3a; font-weight: 700; padding: 0; text-decoration: underline; }
        
        
        
        
          /* Scoped CSS for Do's and Don'ts Page (Prefix: dd-) */

        /* Hero Section */
        .dd-hero {
            background: linear-gradient(rgba(2, 44, 34, 0.8), rgba(2, 44, 34, 0.8)), url('https://penchsafari.com/front/assets/img/Pench%20Feature%20Image.jpg');
            background-size: cover;
            background-position: center;
            padding: 150px 0 100px;
            color: white;
            text-align: center;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }

        /* Card Styling (Replaces modern-card) */
        .dd-card {
            border: none;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            transition: 0.4s;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            height: 100%;
            padding: 40px;
            position: relative;
        }
        .dd-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
        }

        /* List Styling (Replaces guidelines-list) */
        .dd-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .dd-list li {
            position: relative;
            padding-left: 45px;
            margin-bottom: 20px;
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
            border-bottom: 1px dashed #eee;
            padding-bottom: 15px;
        }
        .dd-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        /* Icons for Do's */
        .dd-list-success li::before {
            content: "\f058"; /* FontAwesome Check Circle */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #198754; /* Bootstrap Success Green */
            font-size: 1.4rem;
        }

        /* Icons for Don'ts */
        .dd-list-danger li::before {
            content: "\f05e"; /* FontAwesome Ban */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #dc3545; /* Bootstrap Danger Red */
            font-size: 1.4rem;
        }

        /* CTA Section (Replaces cta-section) */
        .dd-cta-box {
            background: #f3f4f5;
            border-radius: 30px;
            padding: 50px;
            margin-top: 50px;
        }

        /* Button Override (Optional, ensures specific styling) */
        .dd-btn {
            padding: 10px 30px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            border: 1px solid #6abe45;
            background: transparent;
            border-radius: 20px;
            color: #6abe45;
            transition: all 0.5s ease;
            font-weight: 700;
            text-decoration: none;
        }
        .dd-btn:hover {
            background: #6abe45;
            color: #fff;
        }
        
        
        
           /* 1. Hero Section */
        .pi-hero {
            background: linear-gradient(rgba(2, 44, 34, 0.8), rgba(2, 44, 34, 0.8)), url('https://penchsafari.com/front/assets/img/Pench%20Feature%20Image.jpg');
            background-size: cover;
            background-position: center;
            padding: 140px 0 100px;
            color: white;
            text-align: center;
            border-bottom-left-radius: 40px;
            border-bottom-right-radius: 40px;
            margin-bottom: 50px;
        }

        /* 2. Common Components */
        .pi-section-title {
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }
        .pi-section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--gold);
            margin-top: 10px;
        }

        .pi-card {
            background: white;
            border-radius: 20px;
            border: 1px solid #eee;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .pi-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--gold);
        }

        /* 3. History Section */
        .pi-history-img {
            border-radius: 30px;
            width: 100%;
            height: 100%;
            object-fit: cover;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        /* 4. Features & Stats */
        .pi-stat-box h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .pi-stat-box p {
            font-size: 0.9rem;
            margin-bottom: 5px;
            color: #555;
            border-bottom: 1px dashed #eee;
            padding-bottom: 5px;
        }
        .pi-list-check {
            list-style: none;
            padding: 0;
        }
        .pi-list-check li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .pi-list-check li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--gold);
        }

        /* 5. Reasons Icons */
        .pi-icon-box {
            text-align: center;
            padding: 30px 20px;
            background: #fff;
            border-radius: 20px;
            height: 100%;
            border: 1px solid #f0f0f0;
            transition: 0.3s;
        }
        .pi-icon-box:hover { background: var(--forest); color: white; }
        .pi-icon-box:hover h3, .pi-icon-box:hover p { color: white; }
        .pi-icon-box i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }

        /* 6. Form Styling */
        .pi-form-wrapper {
            background: var(--forest);
            padding: 40px;
            border-radius: 30px;
            color: white;
        }
        .pi-form-wrapper h3 { color: white; margin-bottom: 25px; font-weight: 700; }
        .pi-form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            border-radius: 10px;
            padding: 12px;
            margin-bottom: 15px;
        }
        .pi-form-control::placeholder { color: rgba(255,255,255,0.6); }
        .pi-form-control:focus {
            background: rgba(255,255,255,0.2);
            color: white;
            outline: none;
            box-shadow: none;
            border-color: var(--gold);
        }
        .pi-form-select {
            background-color: rgba(255,255,255,0.1);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }
        .pi-form-select option { color: #333; }
        .pi-btn-submit {
            background: var(--gold);
            color: white;
            width: 100%;
            padding: 12px;
            border-radius: 50px;
            border: none;
            font-weight: 700;
            transition: 0.3s;
        }
        .pi-btn-submit:hover { background: white; color: var(--forest); }

        /* 7. Gallery Cards */
        .pi-gallery-card img {
            height: 220px;
            width: 100%;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
        }
        
        /* 8. Rules Section */
        .pi-rules-section {
            background: #e8f5e9;
            padding: 60px 0;
            border-radius: 40px;
            margin-top: 50px;
        }
        .pi-rules-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .pi-rules-list i { color: #d32f2f; margin-right: 10px; }

        /* 9. Packages Grid (Replaces Swiper for stability in static HTML) */
        .pi-pkg-card {
            border: 1px solid #eee;
            border-radius: 20px;
            overflow: hidden;
            background: white;
            transition: 0.3s;
            height: 100%;
        }
        .pi-pkg-img { height: 200px; width: 100%; object-fit: cover; }
        .pi-pkg-body { padding: 20px; }
        .pi-pkg-price { color: var(--forest); font-weight: 800; font-size: 1.2rem; }
        .pi-pkg-btn {
            display: inline-block;
            padding: 8px 20px;
            background: var(--forest);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-size: 0.85rem;
            float: right;
        }
        .pi-pkg-btn:hover{ color: #fff; background: var(--gold); }

        /* Custom override for IntlTelInput to match theme */
        .iti__selected-dial-code { color: white; }
        .iti { width: 100%;  }



@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: 1fr;
    }
}




/**/


/* --- Jungle Footer CSS --- */

:root {
    --forest-deep: #011c16;
    --forest-green: #6abe45;
    --gold: #d4a373;
    --leaf-pattern: url('https://www.transparenttextures.com/patterns/dark-matter.png'); /* Subtle texture */
    /* You can replace the URL above with a real leaf image if preferred, e.g., an unsplash link */
}

.jungle-footer {
    position: relative;
    background-color: var(--forest-green);
    color: #fff;
    padding-top: 80px;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    /* Adding a leaf background image here */
    background-image: 
        linear-gradient(to bottom, #349609, rgba(1, 28, 22, 0.98)); 
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed; /* Parallax effect for the leaves */
}

/* Logo */
.footer-logo {
    height: 55px;
    /*filter: brightness(0) invert(1);*/
    /*opacity: 0.9;*/
}

/* Private Agency Notice Box */
.private-notice-box {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: #ffcccc;
}

.private-notice-box i {
    font-size: 1.1rem;
    color: #ff6b6b;
    margin-top: 2px;
}

/* Titles */
.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--gold);
    padding-left: 15px;
}

/* Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

/* Hover effect: Gold color + slide right */
.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-links a::before {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--gold);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

/* Contact Details */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    background: rgba(212, 163, 115, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.9rem;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--forest-deep);
    transform: translateY(-3px);
}

/* Bottom Copyright */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-links a:hover {
        padding-left: 0; /* Disable slide on mobile if desired */
    }
    .footer-title {
        margin-top: 20px;
    }
}
        

        /* Footer */
/*        footer {*/
            /*padding: 150px 0 50px;*/
/*            background: #f1f5f9;*/
            /*margin-top: -50px;*/
/*        }*/
        
/*        footer ul li{*/
/*            margin-bottom: 12px;*/
/*        }*/
        
/*        footer ul li a{*/
/*            color: #212529bf;*/
/*        }*/
        
/*          footer .footer-info p {*/
/*    font-size: 14px;*/
/*    line-height: 24px;*/
/*    margin-bottom: 0;*/
/*    font-family: "Roboto", sans-serif;*/
/*}*/

/* footer .footer-info p a{*/
/*         font-weight: 600;*/
/*    color: #000000;*/
/*    text-decoration: none;*/
/* }*/
 
/* .social-links a {*/
/*   font-size: 18px;*/
/*    display: inline-block;*/
/*    background: #02261d;*/
/*    color: #fff;*/
/*    line-height: 1;*/
/*    padding: 8px 0;*/
/*    margin-right: 4px;*/
/*    border-radius: 4px;*/
/*    text-align: center;*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    transition: 0.3s;*/
/*}*/


 /* Disclaimer Styling */
        .declaration-box {
            background: #fff9f0;
            border-left: 5px solid var(--gold);
            padding: 25px;
            border-radius: 20px;
            font-size: 0.85rem;
            line-height: 1.6;
            margin-bottom: 40px;
            box-shadow: var(--card-shadow);
        }

        /* Info Card Styling */
        .contact-info-card {
            background: white;
            border-radius: 30px;
            padding: 30px;
            height: 100%;
            transition: 0.3s;
            border: 1px solid #f0f0f0;
            box-shadow: var(--card-shadow);
            text-align: center;
        }
        .contact-info-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
        }
        .info-icon {
            width: 60px;
            height: 60px;
            background: var(--forest);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto 20px;
            font-size: 1.5rem;
        }
        .info-card-title {
            font-weight: 800;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--forest);
        }
        .info-card-text {
            color: #555;
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* Form Customization to match Luxury Theme */
        .contact-form-wrap {
            background: white;
            padding: 40px;
            border-radius: 40px;
            box-shadow: var(--card-shadow);
            border: 1px solid #eee;
        }
        .iti { width: 100% !important; }
        
        .textwarning{
            color:#d4a373 !important;
        }
        .borderwarning{
            border-color:#d4a373 !important;
        }
        
        
        
         /* 1. Hero Section */
        .pf-hero {
            background: linear-gradient(rgba(2, 44, 34, 0.8), rgba(2, 44, 34, 0.8)), url('https://penchsafari.com/front/assets/img/Pench%20Feature%20Image.jpg');
            background-size: cover;
            background-position: center;
            padding: 160px 0 100px;
            color: white;
            text-align: center;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
            margin-bottom: 60px;
        }

        /* 2. Intro Text */
        .pf-intro {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
        }
        .pf-intro h2 {
            color: var(--forest);
            font-weight: 800;
            margin-bottom: 20px;
        }

        /* 3. Accordion Styling */
        .pf-accordion .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 15px !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            overflow: hidden;
            background: white;
        }

        .pf-accordion .accordion-button {
            background-color: white;
            color: var(--forest);
            font-weight: 700;
            padding: 20px 25px;
            box-shadow: none;
            font-size: 1.05rem;
        }

        .pf-accordion .accordion-button:not(.collapsed) {
            background-color: var(--forest);
            color: white;
        }

        .pf-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,0.1);
        }

        .pf-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23022c22'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .pf-accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .pf-accordion .accordion-body {
            padding: 25px;
            color: #555;
            line-height: 1.6;
            background: #fdfdfd;
        }

        /* 4. Help Box */
        .pf-help-box {
            background: #f8f9fa;
            border-left: 5px solid var(--gold);
            padding: 30px;
            border-radius: 15px;
            margin-top: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .pf-help-text h5 { color: var(--forest); font-weight: 700; margin-bottom: 5px; }
        .pf-help-text p { margin-bottom: 0; color: #666; font-size: 0.9rem; }
        .pf-help-btn {
            background: var(--gold);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }
        .pf-help-btn:hover { background: var(--forest); color: white; }
        
        
         /* 1. Hero Section */
        .dp-hero {
            background: linear-gradient(rgba(2, 44, 34, 0.8), rgba(2, 44, 34, 0.8)), url('https://penchsafari.com/front/assets/img/Pench%20Feature%20Image.jpg');
            background-size: cover;
            background-position: center;
            padding: 160px 0 100px;
            color: white;
            text-align: center;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
            margin-bottom: 60px;
        }

        /* 2. Intro Text */
        .dp-intro {
            max-width: 800px;
            margin: 0 auto 50px;
            text-align: center;
        }
        .dp-intro h2 {
            color: var(--forest);
            font-weight: 800;
            margin-bottom: 20px;
        }

        /* 3. Disclaimer Cards */
        .dp-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            height: 100%;
            border: 1px solid #f0f0f0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: 0.3s;
        }
        .dp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border-color: var(--gold);
        }

        .dp-card-icon {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .dp-card h4 {
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .dp-text {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* Highlight Card for Government Disclaimer */
        .dp-alert-card {
            background: var(--soft-yellow);
            border-color: #ffeeba;
        }
        .dp-alert-card .dp-card-icon {
            color: #d69e2e;
        }

        /* 4. Contact Box */
        .dp-contact-box {
            background: var(--forest);
            color: white;
            border-radius: 25px;
            padding: 40px;
            margin-top: 50px;
            text-align: center;
        }
        .dp-contact-box a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
        }
        .dp-contact-box a:hover {
            color: white;
            text-decoration: underline;
        }
        
        
        /* --- Hotel Card CSS --- */
        .package-card {
            border: 1px solid #eef0f2;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .package-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: #d4a373;
        }

        .pkg-img-wrap { position: relative; height: 210px; overflow: hidden; }
        .pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        
        .pkg-badge {
            position: absolute; top: 15px; left: 15px; background: #c5a059;
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 10px;
    line-height: 10px;
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: inline-block;
        }

        .pkg-price-tag {
            position: absolute; bottom: 15px; right: 15px; background: #6abe45;
            backdrop-filter: blur(4px); color: white; padding: 6px 14px; border-radius: 8px;
            font-size: 0.9rem;
        }

        .pkg-body { padding: 20px; flex-grow: 1; }
        .pkg-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: #777; margin-bottom: 10px; font-weight: 600; text-transform: uppercase; }
        .pkg-title { font-size: 1.2rem; font-weight: 800; color: #6abe45; margin-bottom: 8px; }
        .pkg-description { font-size: 0.85rem; color: #666; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.5; }

        .pkg-inclusions { display: flex; gap: 10px; margin-bottom: 18px; padding: 10px 0; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
        .pkg-inclusions div { flex: 1; text-align: center; font-size: 0.6rem; font-weight: 700; color: #6abe45; }
        .pkg-inclusions i { display: block; font-size: 0.9rem; color: #d4a373; margin-bottom: 4px; }

        .pkg-features { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 0; list-style: none; }
        .pkg-features li { font-size: 0.75rem; color: #444; display: flex; align-items: center; gap: 5px; }
        .pkg-features i { color: #28a745; font-size: 0.7rem; }

        .pkg-footer { padding: 0 20px 20px; display: flex; gap: 10px; }
        .btn-view, .btn-book { border-radius: 50px; font-weight: 600; font-size: 13px; padding: 10px 12px; flex: 1; text-align: center; text-decoration: none; transition: 0.3s; }
        .btn-view { border: 1px solid #6abe45; color: #6abe45; }
        .btn-view:hover { background: #6abe45; color: white; }
        .btn-book { background: #6abe45; color: white; border: none; }
        .btn-book:hover { background: #d4a373; }
        
       
        
        .single-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}
.single-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}
.banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.banner-caption p {
    opacity: 0.8;
}

.safari-badge {
   background: #d4a373;
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 10px;
    line-height: 10px;
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: inline-block;
}
 .section-title { padding-bottom: 10px;position:relative; font-weight: 600;}
        .section-title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 4px; background: #d4a373; font-size: 26px;}
        .section-title1::after {  right: 0; margin:auto;}
        
        
        .btn-main{
            background: #ffca2c !important;
            color: #000;
            letter-spacing: 0.8px;
            font-size: 14px;
        }
        
         #resortForm label,#packageForm label{
            font-size: 0.8rem;
            color: #212529bf;
        }
        
        .modal{
            z-index: 99999;
        }
        