:root {
    --primary-color: #8B7646;
    --secondary-color: #8B7646;
    --accent-color: #f5f5f0;
    --text-color: #333;
    --light-green: #d1d5da;
    --dark-green: #1e5e47;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --header-height: 80px;
    --jch-primary-color: #8B7646;
            --jch-secondary-color: #f8f9fa;
            --jch-accent-color: #ff6b35;
            --jch-dark-color: #333;
            --jch-light-color: #fff;
            --jch-gold-color: #ffd700;
            --jch-purple-color: #764ba2;
            --jch-gray-light: #f5f5f5;
            --jch-gray-medium: #e9ecef;
             --gate-primary-color: #2c7a2c;
            --gate-secondary-color: #f8f9fa;
            --gate-accent-color: #ff6b35;
            --gate-dark-color: #333;
            --gate-light-color: #fff;
            --gate-gold-color: #ffd700;
            --gate-purple-color: #764ba2;
            --gate-blue-color: #4a90e2;
            --gate-teal-color: #00897b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-color);
    overflow-x: hidden;
    /* Remove padding-top to prevent overlap issues */
    padding-top: 0;

}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--accent-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: #f5f5f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    height: var(--header-height);
}

.navbar.scrolled {
    padding: 10px 5%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    background-color: #8B7646;
}

.logo {
    height: 48px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}
.contact > a{
    text-decoration: none;
    color: #8B7646;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8B7646;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    /* Set height to 100vh to take full viewport height */
    height: 100vh;
    /* Remove negative margin to prevent overlap */
    margin-top: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/headerimg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
    /* Adjust margin to account for fixed navbar */
    margin-top: var(--header-height);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: perspective(500px) rotateX(0deg);
    transition: transform 0.5s ease;
}

.hero-title:hover {
    transform: perspective(500px) rotateX(5deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 18px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 127, 98, 0.3);
}

.cta-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(42, 127, 98, 0.4);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* Section Styles */
.section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 0.8rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.highlight-card {
    background-color: var(--light-green);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--light-green);
    color: black;
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.2) rotateY(180deg);
}

/* Safari Section with Glass Effect */
.safari-section {
    background: linear-gradient(135deg, var(--light-green), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid var(--glass-border);
    padding: 60px 5%;
    margin: 40px auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.safari-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.safari-zones-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.zone-category {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}
.zone-img{
    height: 480px;
}
.zone-category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zone-category-title i {
    font-size: 1.8rem;
}

.zone-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.zone-contents{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Image Gallery Styles */
.image-gallery {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.main-image-container {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.main-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.main-image-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

}

.main-image-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.safari-zones {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.zone-tag {
    background-color: var(--light-green);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.zone-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.zone-tag:hover::before {
    left: 100%;
}

.zone-tag:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(42, 127, 98, 0.3);
}

.zone-tag.active {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(42, 127, 98, 0.3);
}

.zone-description {
    margin-top: 15px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    font-style: italic;
}

.tip-box {
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-box i {
    color: #ffc107;
    font-size: 1.5rem;
}

/* Amenities Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.amenity-card:hover::before {
    transform: scaleX(1);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.amenity-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.amenity-content {
    padding: 20px;
}

.amenity-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-container {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 30px;
    background-color: var(--light-green);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: white;
    font-size: 2rem;
}

/* Location Section */
.location-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-green);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Lead Capture Section */
.lead-capture {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 5%;
}

.lead-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-input {
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 50px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --header-height: 120px;
    }

    .navbar {
        padding: 10px 3%;
        flex-direction: column;
        gap: 10px;
        height: auto;
        min-height: var(--header-height);
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        margin-left: -38px;
        
    }
    .hello{
        margin-left: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section {
        padding: 60px 3%;
    }

    .section-title {
        font-size: 2rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .main-image-container {
        height: 200px;
    }
}
/*@media (max-width: 360px){
    .navshift {
    /*margin-left: 18px;*/
}
/* Lightbox for Gallery */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.gap1 {
    margin-bottom: -8px;
    margin-top: -18px;
}

.gap2 {
    margin-bottom: 28px;
}

/**/

.safari-section {
    background: linear-gradient(135deg, var(--light-green), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border: 1px solid var(--glass-border);
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safari-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.safari-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.zone-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.zone-tab {
    padding: 12px 25px;
    background-color: var(--light-green);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.zone-tab:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 127, 98, 0.3);
}

.zone-tab.active {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 127, 98, 0.3);
}

.zone-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.zone-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.zone-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.zone-card {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.zone-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.zone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zone-card:hover .zone-image {
    transform: scale(1.05);
}

.zone-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.zone-details {
    padding: 8px;
}

.zone-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    text-align: justify;
}

.tip-box {
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-box i {
    color: #ffc107;
    font-size: 1.5rem;
}

.cta-container {
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.cta-secondary{
    display: inline-block;
    padding: 15px 30px;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s 
ease;
    text-decoration: none;
        background-color: transparent;
    color: white;
    border: 2px solid white;
}
.cta-button:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 127, 98, 0.3);
}

@media (max-width: 768px) {
    .safari-section {
        padding: 40px 3%;
    }


    .section-title {
        font-size: 2rem;
    }

    .zone-cards {
        grid-template-columns: 1fr;
    }

    .zone-tabs {
        flex-direction: column;
        align-items: center;
    }

    .zone-tab {
        width: 80%;
        text-align: center;
    }
}   
.cta-btn{
        display: inline-block;
    padding: 15px 30px;
    color: #8B7646;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
     background-color: transparent;
    color: white;
    border: 2px solid white;
}
.cta-btn:hover{
     background-color: var(--light-green);
     color: #8B7646;
}

.cta-button:hover{
    background-color: var(--light-green);
    color: #8B7646;
}


      .svt-section {
            padding: 60px 4%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .svt-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            text-align: center;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            width: 100%;
        }

        .svt-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }

        .svt-subtitle {
            text-align: center;
            margin-bottom: 50px;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .svt-container {
            position: relative;
            overflow: visible;
            margin: 40px auto;
            max-width: 1000px;
        }

        .svt-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .svt-video-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            background: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .svt-video-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
        }

        .svt-video-box {
            position: relative;
            width: 100%;
            padding-bottom: 150%;
            height: 0;
            overflow: hidden;
            border-radius: 15px;
        }

        .svt-video-box video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 15px;
            object-fit: cover;
        }

        .svt-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            color: white;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .svt-video-card:hover .svt-overlay {
            opacity: 1;
        }

        .svt-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .svt-video-title {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .svt-video-desc {
            font-size: clamp(0.9rem, 2vw, 1rem);
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .svt-author {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 15px;
        }

        .svt-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 3px solid white;
            object-fit: cover;
        }

        .svt-info {
            text-align: center;
        }

        .svt-name {
            font-size: clamp(0.95rem, 2.5vw, 1.1rem);
            font-weight: 600;
        }

        .svt-loc {
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            color: rgba(255, 255, 255, 0.9);
        }

        .svt-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .svt-play:hover {
            background-color: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .svt-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .svt-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .svt-dot.active {
            background-color: var(--primary-color);
            transform: scale(1.3);
        }

        .svt-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary-color);
            color: white;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .svt-nav:hover {
            background-color: var(--dark-green);
            transform: translateY(-50%) scale(1.1);
        }

        .svt-prev { left: 20px; }
        .svt-next { right: 20px; }

        .svt-cta {
            text-align: center;
            margin-top: 40px;
        }

        .svt-btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
        }

        .svt-btn:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-5px);

        }
        .arrow-btn{
            display: none;
        }

        .svt-fade {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .svt-fade.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .video-section{
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            gap: 28px;
            flex-wrap: wrap;
            padding: 25px 28px;
        }
        .box-one {
            border: 8px solid #8B7646;
            padding: 8px;
        }
        .box-two {
            border: 8px solid #8B7646;
            padding: 8px;
        }
        .box-three {
            border: 8px solid #8B7646;
            padding: 8px;
        }
        .box-one > a > img{
            height: 448px;
        }
        .box-two > a > img{
            height: 448px;
        }
        .box-three > a > img{
            height: 448px;
        }
        .video-columns {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;
        }

        .video-column {
          text-align: center;
        }

        @media (max-width: 768px) {
          .video-columns {
            grid-template-columns: 1fr;
          }
        }

        /*about section*/
         .best-time-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 28px 0 28px
        }

        .section-header {
            text-align: center;
        }

        .section-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text-color);
            position: relative;
            display: inline-block;
            text-align: justify;
        }

        .section-header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #8B7646;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
        }

        .section-header p {
            font-size: 1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.8;
            text-align: center;
        }

        .content-wrapper {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 8px 50px 50px 50px;
            border: 1px solid var(--glass-border);
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
        }

        .intro-text {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 40px;
            text-align: center;
        }

        .highlight-box {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 20px;
            margin: 40px 0;
            border-left: 4px solid black;
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
        }

        .highlight-box h3 {
            color: #8B7646;
            font-size: 1.2rem;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .highlight-box p {
            color: var(--text-color);
            font-size: 1.05rem;
            line-height: 1.8;
            margin: 0;
            text-align: justify;
        }

        .seasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .season-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px 20px;
            border-radius: 20px;
            border: 2px solid #8B7646;
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;

        }

        .season-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .season-card:hover::before {
            transform: scaleX(1);
        }

        .season-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
            border-color: var(--accent-color);
            background: rgba(255, 255, 255, 0.08);
        }

        .season-icon {
            font-size: 2.5rem;
            color: #8B7646  ;
            margin-bottom: 15px;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
        }

        .season-card h4 {
            color: black;
            margin-bottom: 10px;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
        }

        .season-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .season-temp {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-color);
            font-weight: 500;
        }

        .info-section {
            margin-top: 40px;
        }

        .info-section h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .info-section p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .key-points {
            background: rgba(255, 255, 255, 0.02);
            padding: 30px;
            border-radius: 20px;
            margin-top: 30px;
        }

        .key-points ul {
            list-style: none;
            padding: 0;
        }

        .key-points li {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .key-points li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: bold;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }

        .footer-note {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--glass-border);
        }

        .footer-note p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-style: italic;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2.5rem;
            }
            
            .content-wrapper {
                padding: 30px 20px;
            }
            
            .seasons-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .seasons-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           HEADER & NAVBAR STYLES
           ============================================ */
        .jch-header {
            background: linear-gradient(135deg, var(--jch-primary-color) 0%, var(--jch-purple-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .jch-navbar {
            padding: 15px 0;
            backdrop-filter: blur(10px);
        }
        
        .jch-navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--jch-light-color) !important;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .jch-navbar-brand:hover {
            transform: translateY(-2px);
        }
        
        .jch-navbar-brand i {
            font-size: 2rem;
            color: var(--jch-gold-color);
        }
        
        .jch-nav-link {
            color: var(--jch-light-color) !important;
            margin: 0 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .jch-nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--jch-gold-color);
            transition: width 0.3s ease;
        }
        
        .jch-nav-link:hover::after {
            width: 100%;
        }
        
        .jch-nav-link:hover {
            color: var(--jch-gold-color) !important;
            transform: translateY(-2px);
        }
        
        .jch-hero-section {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://picsum.photos/seed/jimcorbetthero/1920/600.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 0 80px;
            color: var(--jch-light-color);
            text-align: center;
            position: relative;
        }
        
        .jch-hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: jch-fadeInDown 1s ease;
        }
        
        .jch-hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: jch-fadeInUp 1s ease;
        }
        
        .jch-btn-hero {
            background: linear-gradient(135deg, var(--jch-accent-color), #e55a2b);
            color: var(--jch-light-color);
            padding: 15px 35px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: jch-pulse 2s infinite;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        .jch-btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
        }
        
        /* ============================================
           HOTELS SECTION STYLES
           ============================================ */
        /*.jch-hotels-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
        }*/
        
       
        .jch-section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .jch-section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #8B7646;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .jch-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #8B7646 ;
        }
        
        .jch-section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Enhanced Hotel Cards */
        .jch-hotel-card {
            background: var(--jch-light-color);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 40px;
            position: relative;
            cursor: pointer;
            max-width: 900px;
            margin: auto;
            margin-bottom: 48px;
        }
        
        .jch-hotel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--jch-primary-color), var(--jch-accent-color));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .jch-hotel-card:hover::before {
            transform: scaleX(1);
        }
        
        .jch-hotel-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .jch-hotel-main-image {
            position: relative;
            /*height: 280px;*/
            overflow: hidden;
        }
        
        .jch-hotel-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .jch-hotel-card:hover .jch-hotel-main-image img {
            transform: scale(1.1) rotate(1deg);
        }
        
        .jch-hotel-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #8B7646;
            color: var(--jch-light-color);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 2;
            animation: jch-pulse 2s infinite;
        }
        
        .jch-hotel-rating {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255,255,255,0.95);
            padding: 8px 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 2;
        }
        
        .jch-hotel-rating i {
            color: var(--jch-gold-color);
            font-size: 0.9rem;
        }
        
        .jch-hotel-rating span {
            font-weight: 600;
            color: var(--jch-dark-color);
            font-size: 0.9rem;
        }
        
        /* Enhanced Image Slider */
        .jch-hotel-image-slider {
            position: relative;
            height: 140px;
            overflow: hidden;
            background: #f8f9fa;
            margin: 20px;
            border-radius: 15px;
            box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .jch-slider-container {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }
        
        .jch-slider-container img {
            min-width: 25%;
            height: 100%;
            object-fit: cover;
            padding: 3px;
            box-sizing: border-box;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .jch-slider-container img:hover {
            transform: scale(1.05);
            z-index: 1;
            padding: 0;
            border-radius: 10px;
        }
        
        .jch-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #8B7646;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.3s ease;
            z-index: 10;
            border-radius: 50%;
            backdrop-filter: blur(5px);
            display: none;
        }
        
        .jch-slider-nav:hover {
            background: rgba(0,0,0,0.9);
            transform: translateY(-50%) scale(1.1);
        }
        
        .jch-slider-prev {
            left: 10px;
        }
        
        .jch-slider-next {
            right: 10px;
        }
        
        .jch-slider-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        
        .jch-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .jch-dot.active {
            background: #8B7646;
            width: 25px;
            border-radius: 5px;
        }
        
        .jch-hotel-content {
            padding: 25px;
        }
        
        .jch-hotel-content h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #8B7646;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .jch-hotel-location {
            font-size: 0.9rem;
            color: #666;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
        }
        
        .jch-hotel-location i {
            color: #8B7646;
        }
        
        .jch-hotel-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* Enhanced Amenities Slider */
        .jch-amenities-slider {
            position: relative;
            margin: 20px 0;
            padding: 15px;
            background: rgba(44, 122, 44, 0.05);
            border-radius: 15px;
        }
        
        .jch-amenities-container {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding: 10px 0;
            scroll-behavior: smooth;
        }
        
        .jch-amenities-container::-webkit-scrollbar {
            height: 6px;
        }
        
        .jch-amenities-container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .jch-amenities-container::-webkit-scrollbar-thumb {
            background: var(--jch-primary-color);
            border-radius: 10px;
        }
        
        .jch-amenity-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 70px;
            transition: all 0.3s ease;
        }
        
        .jch-amenity-icon {
            width: 55px;
            height: 55px;
            background: #8B7646;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
            transition: all 0.3s ease;
            font-size: 1.3rem;
            color: var(--jch-light-color)
        }
        
        .jch-amenity-item:hover .jch-amenity-icon {
            background: #fff;
            color: #8B7646;;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .jch-amenity-name {
            font-size: 0.75rem;
            text-align: center;
            color: #666;
            font-weight: 500;
        }
        
        .jch-amenity-item:hover .jch-amenity-name {
            color: var(--jch-primary-color);
        }
        
        .jch-hotel-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid #eee;
            margin-top: 20px;
        }
        
        .jch-price {
            display: flex;
            flex-direction: column;
        }
        
        .jch-price-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #8B7646;
            line-height: 1;
        }
        
        .jch-price-label {
            font-size: 0.85rem;
            color: #666;
            margin-top: 5px;
        }
        
        .jch-btn-check {
            background: #8B7646;
            color: var(--jch-light-color);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(44, 122, 44, 0.3);
        }
        
        .jch-btn-check::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.2);
            transition: left 0.5s ease;
        }
        
        .jch-btn-check:hover::before {
            left: 100%;
        }
        
        .jch-btn-check:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(44, 122, 44, 0.4);
        }
        
        /* ============================================
           MODAL STYLES
           ============================================ */
        .jch-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .jch-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .jch-modal-content {
            background: var(--jch-light-color);
            border-radius: 20px;
            max-width: 1000px;
            width: 95%;
            max-height: 95vh;
            overflow-y: auto;
            transform: scale(0.7) rotateX(10deg);
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }
        
        .jch-modal-overlay.active .jch-modal-content {
            transform: scale(1) rotateX(0deg);
        }
        
        .jch-modal-header {
            position: relative;
            height: 350px;
            overflow: hidden;
        }
        
        .jch-modal-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .jch-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.95);
            color: var(--jch-dark-color);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .jch-modal-close:hover {
            background: var(--jch-accent-color);
            color: var(--jch-light-color);
            transform: rotate(90deg) scale(1.1);
        }
        
        .jch-modal-body {
            padding: 40px;
        }
        
        .jch-modal-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #8B7646;
            margin-bottom: 10px;
        }
        
        .jch-modal-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .jch-modal-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .jch-detail-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: rgba(44, 122, 44, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .jch-detail-item:hover {
            background: rgba(44, 122, 44, 0.1);
            transform: translateY(-3px);
        }
        
        .jch-detail-icon {
            width: 50px;
            height: 50px;
            background: #8B7646;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--jch-light-color);
            font-size: 1.3rem;
        }
        
        .jch-detail-text h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: #8B7646;
        }
        
        .jch-detail-text p {
            font-size: 0.95rem;
            color: #666;
        }
        
        .jch-modal-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #555;
        }
        
        .jch-modal-highlight {
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(44, 122, 44, 0.1));
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .jch-modal-highlight h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #8B7646;
            margin-bottom: 20px;
        }
        
        .jch-modal-highlight ul {
            list-style: none;
            padding-left: 0;
        }
        
        .jch-modal-highlight li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #555;
        }
        
        .jch-modal-highlight li i {
            color: #8B7646;
            font-size: 1.2rem;
        }
        
        .jch-modal-footer {
            padding: 25px 40px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 0 0 20px 20px;
        }
        
        .jch-modal-price {
            display: flex;
            flex-direction: column;
        }
        
        .jch-modal-price-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: #8B7646;
            line-height: 1;
        }
        
        .jch-modal-price-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }
        
        .jch-btn-book-now {
            background: #8B7646;
            color: var(--jch-light-color);
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        .jch-btn-book-now:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }
        
        /* ============================================
           FOOTER STYLES
           ============================================ */
        .jch-footer {
            background: linear-gradient(135deg, var(--jch-dark-color) 0%, #1a1a1a 100%);
            color: var(--jch-light-color);
            padding: 60px 0 30px;
            margin-top: 100px;
        }
        
        .jch-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .jch-footer-column h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: var(--jch-accent-color);
        }
        
        .jch-footer-column p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #ccc;
        }
        
        .jch-footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .jch-footer-links li {
            margin-bottom: 15px;
        }
        
        .jch-footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .jch-footer-links a:hover {
            color: var(--jch-accent-color);
            transform: translateX(5px);
        }
        
        .jch-social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .jch-social-link {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--jch-light-color);
            transition: all 0.3s ease;
        }
        
        .jch-social-link:hover {
            background: var(--jch-accent-color);
            transform: translateY(-5px);
        }
        
        .jch-footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
        }
        
        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes jch-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes jch-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes jch-pulse {
            0% {
                box-shadow: #8B7646;
            }
            70% {
                box-shadow: #8B7646;
            }
            100% {
                box-shadow: #8B7646;
            }
        }
        
        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 992px) {
            .jch-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .jch-modal-details {
                grid-template-columns: 1fr;
            }
            
            .jch-slider-container img {
                min-width: 33.33%;
            }
        }
        
        @media (max-width: 768px) {
            .jch-hero-content h1 {
                font-size: 2rem;
            }
            
            .jch-section-title h2 {
                font-size: 2rem;
            }
            
            .jch-slider-container img {
                min-width: 50%;
            }
            
            .jch-modal-body {
                padding: 25px;
            }
            
            .jch-hotel-footer {
                flex-direction: column;
                gap: 15px;
            }
        }


        /* ============================================
           GATES SECTION MAIN STYLES
           ============================================ */
        .gate-section {
            padding: 100px 0;
            background: #8B7646;
            position: relative;
            overflow: hidden;
        }
        
        /*.gate-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://picsum.photos/seed/gatepattern/1920/1080.jpg');
            opacity: 0.1;
            background-size: cover;
        }*/
        
        .gate-container {
            position: relative;
            z-index: 1;
        }
        
        .gate-section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .gate-section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--gate-light-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .gate-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gate-gold-color);
        }
        
        .gate-section-title p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* ============================================
           ENHANCED GATE CARDS
           ============================================ */
        .gate-card {
            background: rgba(255,255,255,0.95);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 30px;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
            cursor: pointer;
        }
        
        .gate-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--gate-gold-color), var(--gate-accent-color));
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .gate-card:hover::before {
            transform: scaleX(1);
        }
        
        .gate-card:hover {
            transform: translateY(-20px) rotateX(5deg);
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }
        
        .gate-image {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .gate-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .gate-card:hover .gate-image img {
            transform: scale(1.15) rotate(2deg);
        }
        
        .gate-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gate-card:hover .gate-overlay {
            opacity: 1;
        }
        
        .gate-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gate-gold-color);
            color: var(--gate-dark-color);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 2;
            animation: gate-pulse 2s infinite;
        }
        
        .gate-status {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.95);
            padding: 8px 15px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 2;
        }
        
        .gate-status.open {
            background: rgba(76, 175, 80, 0.95);
            color: white;
        }
        
        .gate-status.closed {
            background: rgba(244, 67, 54, 0.95);
            color: white;
        }
        
        .gate-status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: currentColor;
            animation: gate-pulse 2s infinite;
        }
        
        .gate-action {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            background: var(--gate-accent-color);
            color: var(--gate-light-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(-50%) scale(0);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 3;
        }
        
        .gate-card:hover .gate-action {
            opacity: 1;
            transform: translateY(-50%) scale(1);
        }
        
        .gate-action:hover {
            background: var(--gate-primary-color);
            transform: translateY(-50%) scale(1.1) rotate(180deg);
        }
        
        .gate-content {
            padding: 30px;
            position: relative;
        }
        
        .gate-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--gate-primary-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .gate-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gate-primary-color), var(--gate-purple-color));
            color: var(--gate-light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .gate-card:hover .gate-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        .gate-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
        }
        
        .gate-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .gate-feature {
            background: linear-gradient(135deg, rgba(44, 122, 44, 0.1), rgba(118, 75, 162, 0.1));
            color: var(--gate-primary-color);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .gate-feature:hover {
            background: linear-gradient(135deg, var(--gate-primary-color), var(--gate-purple-color));
            color: white;
            transform: translateY(-3px);
        }
        
        /* ============================================
           GATE STATISTICS & INFO
           ============================================ */
        .gate-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin: 20px 0;
        }
        
        .gate-stat {
            text-align: center;
            padding: 15px;
            background: rgba(44, 122, 44, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .gate-stat:hover {
            background: rgba(44, 122, 44, 0.1);
            transform: translateY(-3px);
        }
        
        .gate-stat-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gate-primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .gate-stat-value i {
            font-size: 1.2rem;
            color: var(--gate-accent-color);
        }
        
        .gate-stat-label {
            font-size: 0.8rem;
            color: #666;
            margin-top: 5px;
        }
        
        .gate-timing {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 15px;
            margin: 15px 0;
        }
        
        .gate-timing-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .gate-timing-item i {
            color: var(--gate-accent-color);
        }
        
        .gate-timing-item span {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }
        
        .gate-booking-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: linear-gradient(135deg, rgba(44, 122, 44, 0.05), rgba(118, 75, 162, 0.05));
            border-radius: 15px;
            margin-top: 20px;
        }
        
        .gate-price {
            display: flex;
            flex-direction: column;
        }
        
        .gate-price-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gate-primary-color);
        }
        
        .gate-price-label {
            font-size: 0.85rem;
            color: #666;
        }
        
        .gate-booking-btn {
            background: linear-gradient(135deg, var(--gate-accent-color), #e55a2b);
            color: var(--gate-light-color);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        .gate-booking-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
        }
        
        /* ============================================
           GATE DETAILS SECTION
           ============================================ */
        .gate-details {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid #eee;
        }
        
        .gate-detail {
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .gate-detail:hover {
            transform: translateX(5px);
        }
        
        .gate-detail i {
            color: var(--gate-accent-color);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .gate-detail:hover i {
            transform: scale(1.2);
            color: var(--gate-primary-color);
        }
        
        .gate-detail span {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }
        
        /* ============================================
           FLOATING PARTICLES ANIMATION
           ============================================ */
        .gate-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }
        
        .gate-particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: gate-float 15s infinite linear;
        }
        
        /* ============================================
           GATE INFO MODAL
           ============================================ */
        .gate-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .gate-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .gate-modal-content {
            background: var(--gate-light-color);
            border-radius: 20px;
            max-width: 900px;
            width: 95%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.8) rotateX(10deg);
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }
        
        .gate-modal-overlay.active .gate-modal-content {
            transform: scale(1) rotateX(0deg);
        }
        
        .gate-modal-header {
            position: relative;
            height: 300px;
            overflow: hidden;
        }
        
        .gate-modal-header img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .gate-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255,255,255,0.95);
            color: var(--gate-dark-color);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .gate-modal-close:hover {
            background: var(--gate-accent-color);
            color: var(--gate-light-color);
            transform: rotate(90deg) scale(1.1);
        }
        
        .gate-modal-body {
            padding: 40px;
        }
        
        .gate-modal-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gate-primary-color);
            margin-bottom: 10px;
        }
        
        .gate-modal-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes gate-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
            }
        }
        
        @keyframes gate-float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 992px) {
            .gate-section-title h2 {
                font-size: 2.5rem;
            }
            
            .gate-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gate-details {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .gate-section-title h2 {
                font-size: 2rem;
            }
            
            .gate-stats {
                grid-template-columns: 1fr;
            }
            
            .gate-booking-section {
                flex-direction: column;
                gap: 15px;
            }
            
            .gate-content h3 {
                font-size: 1.5rem;
            }
        }


        /* Safari Timing Section */
        .safari-timing {
            background: #fff;
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 50px;
            border: 1px solid var(--glass-border);
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .safari-timing::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .timing-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .timing-header h3 {
            font-size: 2.5rem;
            color: #8B7646;
            margin-bottom: 15px;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
        }

        .timing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .timing-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.4s ease;
        }

        .timing-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-color);
            box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
        }

        .timing-icon {
            font-size: 2.5rem;
            color: #8B7646;
            margin-bottom: 15px;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
        }

        .timing-card h4 {
            color: var(--text-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .timing-time {
            color: black;
            font-size: 1.1rem;
            font-weight: 600;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
        }

        .timing-note {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 10px;
        }

        /* Cool Effects */
        .glow-effect {
            position: relative;
        }

        .glow-effect::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
            transform: translate(-50%, -50%);
            transition: all 0.6s ease;
            pointer-events: none;
        }

        .glow-effect:hover::after {
            width: 300px;
            height: 300px;
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .safari-header h2 {
                font-size: 2.5rem;
            }
            
            .gates-showcase {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .safari-timing {
                padding: 30px 20px;
            }
            
            .timing-grid {
                grid-template-columns: 1fr;
            }
        }

            /* Main Section Container */
        .safari-wrapper {
            max-width: 1200px;
            margin: 40px auto;
            text-align: center;
        }

        .safari-wrapper h1 {
            font-family: 'Merriweather', serif;
            font-size: 2.8rem;
            color: #8B7646;
            margin-bottom: 10px;
        }

        .safari-wrapper .intro-text {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto 50px auto;
        }

        /* Grid for Cards */
        .gates-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 35px;
        }

        /* --- The Card Design --- */
        .gate-card {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        /* Hover Effect: Card upar uth jayega aur shadow badhegi */
        .gate-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        /* Image Styling */
        .card-image {
            width: 100%;
            height: 230px;
            object-fit: cover; /* Image ko bina kati ke cover karega */
            display: block;
        }

        /* Content Box inside the card */
        .card-content {
            padding: 25px;
            flex-grow: 1; /* Yeh content ko equal space dega */
            display: flex;
            flex-direction: column;
        }

        .card-content h3 {
            font-family: 'Merriweather', serif;
            font-size: 1.6rem;
            color: #8B7646;
            margin-bottom: 8px;
        }

        .card-zone {
            font-size: 0.85rem;
            color: #1e5e47; /* Orange color for zone */
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .card-description {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1; /* Description ko baki space fill karne dega */
        }

        .card-button {
            display: inline-block;
            background-color: #8B7646;
            color: #ffffff;
            padding: 10px 22px;
            border-radius: 28px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease;
            align-self: flex-start; /* Button ko left side mein rakhega */
        }

        .card-button:hover {
            background-color: #F5F3ED;
            color: black;
        }

        /* Mobile Phone ke liye design */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            .safari-wrapper h1 {
                font-size: 2.2rem;
            }
            .gates-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        /* Section Wrapper */
        .jcr-reach-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            margin-top: 48px;
        }

        .jcr-reach-wrapper h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #8B7646;
            margin-bottom: 15px;
        }

        .jcr-intro-text {
            font-size: 1.1rem;
            color: black;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        /* Grid Layout for Cards */
        .jcr-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        /* --- The Card Design --- */
        .jcr-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid #8B7646;
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s ease;
            text-align: center;
            cursor: pointer;
            margin: 4px 0 48px 0;
        }

        /* Hover Effect */
        .jcr-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* --- Icon Styling --- */
        .jcr-card-icon {
            font-size: 3.5rem;
            color: #8B7646;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .jcr-card:hover .jcr-card-icon {
            color: #8B7646
            transform: scale(1.1) rotateY(10deg);
        }

        /* --- Text Content Styling --- */
        .jcr-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .jcr-card-subtitle {
            font-size: 0.9rem;
            color: #8B7646;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .jcr-card-description {
            font-size: 0.95rem;
            color: black;
            margin-bottom: 30px;
            text-align: justify;
        }

        /* --- Button Styling --- */
        .jcr-card-button {
            display: inline-block;
            text-decoration: none;
            background-color: #8B7646;
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .jcr-card-button:hover {
            background-color: #8B7646;
            transform: scale(1.05);
        }

        /* --- UNIQUE CLASSES END --- */

        /* Mobile Phone ke liye design */
        @media (max-width: 768px) {
            body { padding: 20px 15px; }
            .jcr-reach-wrapper h1 { font-size: 2.2rem; }
            .jcr-cards-grid { grid-template-columns: 1fr; gap: 30px; }
            .jcr-card-icon { font-size: 3rem; }
        }


        /* --- Card Grid Layout --- */
        .sr-card-grid {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            /*display: grid;
            grid-template-columns: repeat(3, 1fr);*/
            gap: 30px;
            margin-bottom: 88px;
            margin: 0 148px 0 178px;
        }

        /* --- Individual Card Styling --- */
        .sr-hotel-card {
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            max-width: 428px;
        }

        .sr-hotel-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        /* --- Image and Dot Slider --- */
        .sr-card-image-wrapper {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
        }

        .sr-card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.5s ease-in-out;
        }

        .sr-dot-slider {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            list-style: none;
            padding: 5px 10px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 20px;
        }

        .sr-dot-slider li {
            width: 10px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .sr-dot-slider li.sr-active {
            background-color: #ffffff;
        }

        /* --- Card Details --- */
        .sr-card-details {
            padding: 20px;
            flex-grow: 1;
        }

        .sr-card-details h3 {
            font-size: 1.4rem;
            color: #8B7646;
            margin-bottom: 10px;
        }

        .sr-card-details p {
            font-size: 0.9rem;
            color: #666;
        }

        /* --- Amenities Slider --- */
        .sr-amenities-slider-wrapper {
            padding: 0 20px;
            margin-bottom: 20px;
        }

        .sr-amenities-list {
            display: flex;
            gap: 48px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            list-style: none;
            padding-bottom: 10px;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        .sr-amenities-list::-webkit-scrollbar {
            display: none;
        }

        .sr-amenities-list li {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.8rem;
            color: #555;
            scroll-snap-align: start;
            flex-shrink: 0;
        }

        .sr-amenities-list li i {
            font-size: 1.5rem;
            color: #8B7646;
            margin-bottom: 5px;
        }

        /* --- Card Footer (Price & Button) --- */
        .sr-card-footer {
            padding: 20px;
            border-top: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sr-price {
            font-size: 1.5rem;
            font-weight: bold;
            color: #8B7646;
        }

        .sr-price span {
            font-size: 0.9rem;
            font-weight: normal;
            color: #888;
        }

        .sr-check-details-btn {
            background-color: #8B7646;
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .sr-check-details-btn:hover {
            background-color: #1e3f1f;
        }

        /* --- Modal (Popup) Styling --- */
        .sr-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .sr-modal-content {
            background-color: #fff;
            padding: 30px;
            border-radius: 15px;
            max-width: 758px;
            width: 100%;
            max-height: 78vh;
            overflow-y: auto;
            position: relative;
            animation: slideIn 0.4s ease-out;
            margin-top: 88px;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .sr-close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s;
        }

        .sr-close-btn:hover {
            color: #333;
        }

        .sr-modal-header h2 {
            color: #8B7646;
            margin-bottom: 10px;
        }

        .sr-modal-body img {
            width: 100%;
            border-radius: 10px;
            margin: 20px 0;
        }

        .sr-modal-body p {
            margin-bottom: 15px;
            color: #8B7646;
        }
        .sr-btn-container{
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sr-btn{
            width: 148px;
            height: 48px;
            border-radius: 28px;
            background: #8B7646;
            border: none;
        }
        .sr-btn > a{
            text-decoration: none;
            color: #fff;
            font-size: 18px;
        }

        .sr-modal-amenities-full {
            list-style: none;
            padding: 0;
        }

        .sr-modal-amenities-full li {
            padding: 5px 0;
            color: #555;
        }
        .sr-modal-amenities-full li i {
            color: #8B7646;
            margin-right: 10px;
        }

        /* --- Responsive Design --- */
        @media (max-width: 992px) {
            .sr-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .sr-card-grid {
                grid-template-columns: 1fr;
                margin: 0 0 88px 0;
            }
            .sr-card-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            .sr-check-details-btn {
                width: 100%;
            }
        }


        /* --- UNIQUE CLASSES FOR THIS SECTION --- */
        /* Prefix 'cna-' for Corbett Nearby Attractions */

        .cna-attractions-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .cna-attractions-wrapper h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .cna-intro-text {
            font-size: 1.1rem;
            color: #a0a0a0;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        /* Grid Layout for Cards */
        .cna-attractions-grid {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 30px;
            flex-wrap: wrap;
            margin: 0 28px 28px 28px;
        }

        /* --- The Card Design with Advanced Hover Effect --- */
        .cna-attraction-card {
            position: relative; /* Important for overlay positioning */
            border-radius: 15px;
            overflow: hidden; /* Hides the parts of the image that zoom out */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            height: 348px; /* Fixed height for uniformity */
            background-color: #1e1e1e;
            max-width: 328px;
        }

        /* --- Image Styling --- */
        .cna-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Covers the card area without distortion */
            transition: transform 0.6s ease-in-out; /* Smooth zoom effect */
        }

        /* --- The Overlay with Text --- */
        .cna-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%; /* Full height for better gradient control */
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end; /* Aligns content to the bottom */
            padding: 30px;
            text-align: left;
            transform: translateY(60%); /* Initially hidden, only shows title */
            transition: transform 0.4s ease-out;
        }

        /* --- Text Content inside Overlay --- */
        .cna-card-overlay h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: #ffffff;
            margin-bottom: 48px;
            transform: translateY(0); /* Title is always visible */
            transition: transform 0.4s ease-out 0.1s;
        }

        .cna-card-description {
            font-size: 0.95rem;
            color: #e0e0e0;
            margin-bottom: 20px;
            opacity: 0; /* Initially hidden */
            transform: translateY(20px); /* Slide up effect */
            transition: opacity 0.4s ease-out 0.2s, transform 0.4s ease-out 0.2s;
        }

        .cna-card-button {
            display: inline-block;
            background-color: #8B7646; /* Vibrant orange */
            color: #fff;
            padding: 10px 53px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            opacity: 0; /* Initially hidden */
            transform: translateY(20px); /* Slide up effect */
            transition: opacity 0.4s ease-out 0.3s, transform 0.4s ease-out 0.3s, background-color 0.3s ease;
        }

        .cna-card-button:hover {
            background-color: #8B7646;
        }

        /* --- THE HOVER MAGIC --- */
        .cna-attraction-card:hover .cna-card-image {
            transform: scale(1.1); /* Zooms in the image */
        }

        .cna-attraction-card:hover .cna-card-overlay {
            transform: translateY(0); /* Slides the overlay up to reveal content */
        }

        .cna-attraction-card:hover .cna-card-description,
        .cna-attraction-card:hover .cna-card-button {
            opacity: 1; /* Makes description and button visible */
            transform: translateY(0); /* Slides them into their final position */
        }

        /* Mobile Phone ke liye design */
        @media (max-width: 768px) {
            body { padding: 20px 15px; }
            .cna-attractions-wrapper h2 { font-size: 2.2rem; }
            .cna-attractions-grid { grid-template-columns: 1fr; }
            .cna-attraction-card { height: 400px; }
        }
        
        .hds-main-wrapper {
            max-width: 900px;
            width: 100%;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .hds-main-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        .hds-header-banner {
            background: #8B7646;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .hds-header-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: hds-rotate-animation 20s linear infinite;
        }

        @keyframes hds-rotate-animation {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hds-hotel-title {
            font-size: 36px;
            color: white;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .hds-hotel-subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 18px;
            position: relative;
            z-index: 1;
        }

        .hds-content-area {
            padding: 40px;
        }

        .hds-detail-block {
            margin-bottom: 30px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 15px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .hds-detail-block::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #8B7646;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .hds-detail-block:hover::before {
            transform: scaleY(1);
        }

        .hds-detail-block:hover {
            background: white;
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
            border-color: #8B7646;
        }

        .hds-section-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            color: #333;
            font-size: 20px;
            font-weight: 600;
        }

        .hds-section-icon {
            color: #8B7646;
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .hds-detail-block:hover .hds-section-icon {
            transform: rotate(360deg) scale(1.2);
        }

        .hds-section-text {
            color: #666;
            line-height: 1.8;
            padding-left: 39px;
        }

        .hds-highlight-word {
            background: #8B7646;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .hds-detail-block:hover .hds-highlight-word {
            transform: scale(1.05);
            display: inline-block;
        }

        .hds-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
            padding-left: 39px;
        }

        .hds-info-chip {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #e0e0e0;
        }

        .hds-info-chip:hover {
            background: #8B7646;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            border-color: transparent;
        }

        .hds-chip-icon {
            font-size: 18px;
            color: #8B7646;
            transition: color 0.3s ease;
        }

        .hds-info-chip:hover .hds-chip-icon {
            color: white;
        }

        .hds-footer-bar {
            background: #f8f9fa;
            padding: 25px 40px;
            border-top: 1px solid #e0e0e0;
        }

        .hds-contact-row {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }

        .hds-contact-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #666;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
        }

        .hds-contact-pill:hover {
            color: #667eea;
            transform: translateY(-2px);
            background: white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .hds-contact-icon {
            font-size: 20px;
        }

        /* Special Effects */
        .hds-shimmer-effect {
            position: relative;
            overflow: hidden;
        }

        .hds-shimmer-effect::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: hds-shimmer-move 3s infinite;
        }

        @keyframes hds-shimmer-move {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hds-hotel-title {
                font-size: 28px;
            }

            .hds-content-area {
                padding: 25px;
            }

            .hds-info-grid {
                grid-template-columns: 1fr;
            }

            .hds-contact-row {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Loading Animation */
        .hds-fade-in {
            animation: hds-fade-animation 0.8s ease-in;
        }

        @keyframes hds-fade-animation {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Additional hover effects */
        .hds-section-text p {
            transition: color 0.3s ease;
        }

        .hds-detail-block:hover .hds-section-text p {
            color: #444;
        }

/*gallses*/
 .glass-container {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 88px;
        }
        
        .how-to-reach {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        
        .glass-button {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .glass-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .glass-button:hover::before {
            left: 100%;
        }
        
        .glass-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.3);
        }
        
        .glass-button i {
            font-size: 24px;
            color: #8B7646;
        }
        
        .glass-button .text {
            display: flex;
            flex-direction: column;
        }
        
        .glass-button .title {
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 3px;
            color: #8B7646;
        }
        
        .glass-button .subtitle {
            font-size: 14px;
            opacity: 0.9;
            color: #8B7646;
        }
        
        .map-container {
            margin-top: 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            height: 400px;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: url('https://picsum.photos/seed/jimcorbettmap/1000/400.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .additional-info {
            margin-top: 30px;
            color: #8B7646;
            text-align: center;
            font-size: 16px;
        }
        
        @media (max-width: 768px) {
            .glass-button {
                min-width: 100%;
            }
        }
        /*popup content*/

        .corbett-main-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header Section */
        .corbett-hotel-header {
            background: #8B7646;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .corbett-hotel-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: corbett-shimmer 3s infinite;
        }
        
        @keyframes corbett-shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .corbett-hotel-title {
            color: white;
            font-size: 42px;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }
        
        .corbett-hotel-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            position: relative;
            z-index: 1;
        }
        
        /* Navigation Menu */
        .corbett-primary-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
            position: sticky;
            top: 20px;
            z-index: 100;
        }
        
        .corbett-nav-btn {
            padding: 10px 20px;
            background: #8B7646;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .corbett-nav-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Styles */
        .corbett-content-section {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            padding: 30px;
            margin-bottom: 30px;
            animation: corbett-fadeInUp 0.6s ease-out;
        }
        
        @keyframes corbett-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .corbett-section-heading {
            color: #8B7646;
            font-size: 28px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .corbett-heading-icon {
            font-size: 24px;
            color: #8B7646;
        }
        
        /* About Section */
        .corbett-about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        
        .corbett-about-text {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }
        
        .corbett-about-image {
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            position: relative;
        }
        
        .corbett-about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Rooms Section */
        .corbett-rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .corbett-room-card {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .corbett-room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .corbett-room-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }
        
        .corbett-room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .corbett-room-card:hover .corbett-room-image img {
            transform: scale(1.1);
        }
        
        .corbett-room-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(139, 195, 74, 0.9);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .corbett-room-details {
            padding: 20px;
            color: white;
        }
        
        .corbett-room-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .corbett-room-features {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        
        .corbett-room-feature {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .corbett-room-price {
            font-size: 24px;
            font-weight: bold;
            color: #8bc34a;
        }
        
        .corbett-room-price span {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Amenities Section */
        .corbett-amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .corbett-amenity-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .corbett-amenity-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        .corbett-amenity-icon {
            font-size: 36px;
            color: #8B7646;
            margin-bottom: 10px;
        }
        
        .corbett-amenity-name {
            color: #8B7646;
            font-weight: 500;
        }
        
        /* Dining Section */
        .corbett-dining-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .corbett-dining-card {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .corbett-dining-card:hover {
            transform: scale(1.02);
        }
        
        .corbett-dining-image {
            height: 180px;
            overflow: hidden;
        }
        
        .corbett-dining-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .corbett-dining-info {
            padding: 20px;
            color: white;
        }
        
        .corbett-dining-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .corbett-dining-time {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin-bottom: 5px;
        }
        
        /* Attractions Section */
        .corbett-attractions-list {
            display: grid;
            gap: 20px;
        }
        
        .corbett-attraction-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            display: flex;
            gap: 20px;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .corbett-attraction-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
        }
        
        .corbett-attraction-icon {
            width: 60px;
            height: 60px;
            background: #8B7646;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .corbett-attraction-icon i {
            font-size: 24px;
            color: white;
        }
        
        .corbett-attraction-details {
            flex-grow: 1;
        }
        
        .corbett-attraction-name {
            color: #8B7646;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .corbett-attraction-distance {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }
        
        /* Policies Section */
        .corbett-policy-list {
            color: #8B7646;
            line-height: 1.8;
        }
        
        .corbett-policy-item {
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        
        .corbett-policy-item::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #8bc34a;
            font-size: 20px;
        }
        
        /* Gallery Section */
        .corbett-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .corbett-gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 200px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .corbett-gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .corbett-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .corbett-gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 10px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .corbett-gallery-item:hover .corbett-gallery-overlay {
            transform: translateY(0);
        }
        
        /* Contact Section */
        .corbett-contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .corbett-contact-info {
            color: #8B7646;
        }
        
        .corbett-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .corbett-contact-item i {
            font-size: 20px;
            color: #8B7646;
            width: 30px;
        }
        
        .corbett-contact-form {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
        }
        
        .corbett-form-group {
            margin-bottom: 20px;
        }
        
        .corbett-form-label {
            display: block;
            color: white;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .corbett-form-input,
        .corbett-form-textarea {
            width: 100%;
            padding: 10px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 14px;
        }
        
        .corbett-form-input::placeholder,
        .corbett-form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .corbett-submit-btn {
            background: linear-gradient(135deg, #8bc34a, #689f38);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .corbett-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 195, 74, 0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .corbett-about-wrapper,
            .corbett-contact-container {
                grid-template-columns: 1fr;
            }
            
            .corbett-hotel-title {
                font-size: 32px;
            }
            
            .corbett-primary-nav {
                position: static;
            }
        }
       
       /*hotel details*/

       .main-hotel-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .featured-hotels-heading {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
            color: #2c3e50;
            position: relative;
            padding-bottom: 10px;
        }

        .featured-hotels-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, #3498db, #2ecc71);
        }

        .hotels-collection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 88px;
        }

        .individual-hotel-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .individual-hotel-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .hotel-image-carousel-wrapper {
            position: relative;
            height: 200px;
            overflow: hidden;
            touch-action: pan-y pinch-zoom;
        }

        .hotel-image-slider {
            display: flex;
            height: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
        }

        .hotel-image-slider::-webkit-scrollbar {
            display: none;
        }

        .hotel-images-collection {
            display: flex;
            height: 100%;
            will-change: transform;
        }

        .hotel-images-collection img {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            scroll-snap-align: start;
            pointer-events: none;
            -webkit-user-drag: none;
            user-select: none;
        }

        /* Circle Dots Styles */
        .slider-dots-container {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 8px;
            z-index: 10;
            padding: 0 10px;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .slider-dot:hover {
            background-color: rgba(255, 255, 255, 0.7);
            transform: scale(1.1);
        }

        .slider-dot.active {
            background-color: #ffffff;
            border-color: #ffffff;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .hotel-basic-info {
            padding: 20px;
        }

        .hotel-title-name {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #2c3e50;
            font-weight: 600;
        }

        .hotel-short-description {
            color: #7f8c8d;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .hotel-features-section {
            margin-bottom: 20px;
        }

        .features-header {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .features-horizontal-scroll {
            overflow-x: auto;
            padding-bottom: 10px;
            scrollbar-width: thin;
            scrollbar-color: #ddd transparent;
        }

        .features-horizontal-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .features-horizontal-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .features-horizontal-scroll::-webkit-scrollbar-thumb {
            background: #ddd;
            border-radius: 10px;
        }

        .features-horizontal-scroll::-webkit-scrollbar-thumb:hover {
            background: #ccc;
        }

        .features-icons-container {
            display: flex;
            gap: 15px;
            width: max-content;
        }

        .single-feature-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 60px;
        }

        .single-feature-icon i {
            font-size: 1.5rem;
            color: #8B7646;
            margin-bottom: 5px;
        }

        .feature-label {
            font-size: 0.75rem;
            text-align: center;
            color: #7f8c8d;
        }

        .price-action-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .hotel-price-tag {
            font-size: 1.5rem;
            font-weight: 700;
            color: #8B7646;
        }

        .hotel-price-tag span {
            font-size: 0.9rem;
            color: #7f8c8d;
            font-weight: 400;
        }

        .view-details-button {
            padding: 10px 20px;
            background: #8B7646;
            color: white;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .view-details-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        /* Details Section */
        .hotel-details-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            overflow-y: auto;
            padding-bottom: 20px; /* Added padding to ensure bottom button is visible */
        }

        .details-modal-content {
            background: white;
            max-width: 900px;
            margin: 108px auto;
            padding: 30px;
            padding-bottom: 40px; /* Increased bottom padding */
            border-radius: 15px;
            position: relative;
            min-height: calc(100vh - 100px); /* Ensure content takes full height */
        }

        .close-modal-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: #7f8c8d;
            cursor: pointer;
            transition: color 0.3s;
            z-index: 10;
        }

        .close-modal-icon:hover {
            color: #e74c3c;
        }

        .detail-hero-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .detail-hotel-name {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .detail-hotel-description {
            margin-bottom: 20px;
            line-height: 1.6;
            color: #555;
        }

        .detail-price-display {
            font-size: 1.8rem;
            font-weight: 700;
            color: #8B7646;
            margin-bottom: 20px;
        }

        .detail-amenities-section {
            margin-bottom: 30px;
        }

        .detail-amenities-section h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .detail-amenities-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .detail-amenity-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .detail-amenity-item i {
            font-size: 1.2rem;
            color: #8B7646;
        }

        .detail-rooms-section {
            margin-bottom: 30px;
        }

        .detail-rooms-section h3 {
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .rooms-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .single-room-card {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .single-room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .room-card-image {
            width: 100%;
            height: 120px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .room-card-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: #2c3e50;
        }

        .room-card-specs {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-bottom: 10px;
        }

        .room-card-price {
            font-weight: 700;
            color: #8B7646;
        }

        /* Gallery Section within Details */
        .detail-gallery-section {
            margin-bottom: 30px;
        }

        .detail-gallery-section h3 {
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .gallery-images-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .gallery-grid-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .gallery-grid-image:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Map Section */
        .detail-map-section {
            margin-bottom: 40px; /* Increased margin */
        }

        .detail-map-section h3 {
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .hotel-map-container {
            width: 100%;
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        .hotel-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Action Button Section */
        .detail-action-section {
            margin-top: 40px; /* Increased margin */
            margin-bottom: 20px; /* Added bottom margin */
            text-align: center;
            padding: 20px 0; /* Added padding */
        }

        .data-name-button {
            padding: 15px 40px;
            background: #8B7646;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            display: inline-block; /* Changed from block to inline-block */
        }

        .data-name-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
        }

        .data-name-button:active {
            transform: translateY(-1px);
        }

        /* Checkbox hack for showing details */
        #grand-paradise-details-toggle,
        #ocean-view-details-toggle,
        #mountain-retreat-details-toggle {
            display: none;
        }

        #grand-paradise-details-toggle:checked ~ .main-hotel-wrapper .grand-paradise-modal,
        #ocean-view-details-toggle:checked ~ .main-hotel-wrapper .ocean-view-modal,
        #mountain-retreat-details-toggle:checked ~ .main-hotel-wrapper .mountain-retreat-modal {
            display: block;
        }

        /* Touch-friendly slider modifications */
        @media (hover: none) and (pointer: coarse) {
            .hotel-image-slider {
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
            }
            
            .hotel-images-collection img {
                pointer-events: auto;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hotels-collection-grid {
                grid-template-columns: 1fr;
            }

            .details-modal-content {
                margin: 128px  10px;
                padding: 20px;
                padding-bottom: 30px; /* Added bottom padding for mobile */
                min-height: calc(100vh - 60px); /* Adjusted for mobile */
            }

            .rooms-grid-container {
                grid-template-columns: 1fr;
            }

            .gallery-images-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .hotel-map-container {
                height: 200px;
            }

            .detail-action-section {
                margin-top: 30px;
                padding: 15px 0;
            }

            .data-name-button {
                padding: 12px 30px;
                font-size: 1rem;
            }
        }