.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.earth-tone-gradient {
    background: linear-gradient(135deg, #f8f8e6 0%, #e8e6d3 50%, #d8d6c3 100%);
}


.fade-up {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
    animation-delay: calc(var(--i) * 0.2s);
    margin-right: 0.25rem;
    /* space between words */
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-heading {
    color: #2d2d00;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.impact-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow:
        20px 20px 60px #d1d1d1,
        -20px -20px 60px #ffffff;
}

.impact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        25px 25px 80px #c1c1c1,
        -25px -25px 80px #ffffff;
}

.story-text {
    position: relative;
    overflow: hidden;
}

.story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(101, 102, 0, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #656600, #7f8000);
    transform-origin: left;
    z-index: 1000;
}

.section-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(101, 102, 0, 0.1);
    z-index: 0;
}

.morphing-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.reveal-text {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.pillar-icon {
    transition: all 0.5s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.2) rotate(360deg);
}

.wave-animation {
    position: relative;
    overflow: hidden;
}

.wave-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #656600, transparent);
    animation: wave 2s infinite;
}

@keyframes wave {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}



.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
    /* behind everything */
}

#hero-bg-1 {
    opacity: 1;
    z-index: 0;
}

.hero-gradient {
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 20 !important;
}

/* Floating element animation */
.floating-element {
    position: absolute;
    font-size: 2rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Glass effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}

/* Button effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content {
    display: none;
}

.dropdown-content {
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown-content a {
    position: relative;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
}

.dropdown-content a.has-arrow::after {
    content: '›';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #6b7280;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
    /* Updated to match new primary color */
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1), 0 10px 10px -5px rgba(16, 185, 129, 0.04);
    /* Updated */
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.4);
    /* Updated */
}

/*header */
.nav-item {
    position: relative;

}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    /* Adjust the thickness of the underline */
    background-color: #7f8000;
    /* Olive color */
    transform: scaleX(0);
    /* Initially, the underline is not visible */
    transform-origin: bottom right;
    /* Make the underline grow from right to left */
    transition: transform 0.3s ease-out;
    z-index: -1;
    /* Make sure the underline stays below the text */
}

.nav-item.active::before {
    transform: scaleX(1);
    /* When the item is active, the underline appears */
    transform-origin: bottom left;
    /* Underline grows from left to right */
}


/* Mobile: disable background highlight */
@media (max-width: 768px) {
    .nav-item::before {
        display: none !important;
    }
}


.nav-item:hover::before {
    transform: translateY(0);
}



.nav-item span {
    position: relative;
    z-index: 2;
}

.nav-item:hover span,
.nav-item.active span {
    color: var(--heading);
}

/* Submenu wrapper - now contains the submenu and handles its positioning */
.submenu-container {
    position: sticky;
    /* Make the container sticky */
    top: 0;
    /* Stick to the top of the viewport */
    z-index: 50;
    /* Ensure it stays above other content */
    background: white;
    /* Solid white background for the sticky container */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    /* Optional soft shadow */


}

/* Submenu itself - no longer fixed, its container handles stickiness */
.submenu {
    position: relative;
    /* Remove fixed positioning */
    top: auto;
    /* Reset top */
    left: auto;
    /* Reset left */
    right: auto;
    /* Reset right */
    background: transparent;
    /* Make background transparent as container has it */
    z-index: auto;
    /* Reset z-index as container has it */
    display: grid;
    /* Use grid for button layout by default (mobile) */
    grid-template-columns: repeat(2, 1fr);
    /* Default to 2 columns for mobile */
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-bottom: none;
    /* Remove border from submenu, container can have it */
    max-width: 1200px;
    margin: 0 auto;
}

/* Tablet view: List nav items in a row (e.g., 3-4 columns) */
@media (min-width: 768px) and (max-width: 1024px) {
    .submenu {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        /* Auto-fit for items in a row */
        gap: 1rem;
        /* Adjust gap for tablet */
        padding: 1rem 1rem;
        /* Adjust padding for tablet */
        justify-content: center;
        /* Center items horizontally */
    }
}

/* Desktop: flex layout for submenu buttons */
@media (min-width: 1025px) {
    .submenu {
        display: flex;
        /* Flex for desktop */
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        /* Adjust gap for desktop */
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .submenu-container {
        top: 140px;
        /* Adjust sticky top position to be below header */
        margin-top: 2rem;
        /* Restore original desktop margin-top */
    }
}

/* Placeholder for fixed height offset on desktop */
.submenu-placeholder {
    height: 0;
    /* Default to no height */
}

@media (min-width: 1025px) {
    .submenu-placeholder {
        height: 100px;
        /* Match sticky container height (submenu + margin) */
    }
}


/* Mobile: (max-width: 767px) - this will use the default .submenu grid-template-columns (2 columns) */
@media (max-width: 767px) {
    .submenu-container {
        top: 0;
        /* Stick to top of viewport on mobile */
        margin-top: 0;
        /* No margin-top needed */
    }

    .submenu .nav-btn {
        width: 100%;
        /* Ensure buttons take full width within their grid cell */
        background-color: #fff;
        /* Ensures solid background for buttons too */
    }

    .submenu-placeholder {
        display: none;
        /* No offset needed on mobile */
    }
}




/* Mobile hamburger side menu overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    /* adjust as needed */
    height: 100vh;
    background: #fff;
    z-index: 50;
    /* higher so it stays above */
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    /* hidden by default */
}

.mobile-menu.active {
    transform: translateX(0);
    /* visible */
}


.mobile-menu.open {
    transform: translateX(0);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Prevent the page from scrolling when the menu is open */
body.menu-open {
    overflow: hidden;
}

/* Ensure no overflow on body when menu is open */
body {
    overflow-x: hidden;
    background-color: white;
}

/* WhatsApp widget styles */
.whatsapp-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #7f8000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #7f8000;
    transform: scale(1.05);
}

.whatsapp-button i {
    color: white;
    font-size: 28px;
}

.whatsapp-chat-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    height: 400px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: none;
    flex-direction: column;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-chat-container.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.chat-header {
    background-color: #7f8000;
    color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.chat-header-info {
    flex: 1;
}

.chat-header-info h3 {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.chat-header-info p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background-color: #f0f2f5;
}

.message {
    margin-bottom: 12px;
    display: flex;
}

.message.received {
    justify-content: flex-start;
}

.message.sent {
    justify-content: flex-end;
}

.message-content {
    max-width: 70%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.message.received .message-content {
    background-color: white;
    border-top-left-radius: 2px;
}

.message.sent .message-content {
    background-color: #d9fdd3;
    border-top-right-radius: 2px;
}

.chat-input {
    display: flex;
    padding: 12px;
    background-color: white;
    border-top: 1px solid #e0e0e0;
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 10px 12px;
    border-radius: 20px;
    background-color: #f0f2f5;
    font-size: 14px;
    outline: none;
}

.chat-input button {
    background: none;
    border: none;
    color: #7f8000;
    font-size: 20px;
    margin-left: 8px;
    cursor: pointer;
}

/* Animation for new messages */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message {
    animation: fadeIn 0.3s ease;
}

.suggestion-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.suggestion-button {
    background-color: white;
    border: 1px solid #7f8000;
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.suggestion-button:hover {
    background-color: #7f8000;
    color: white;
}

.yes-no-buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.yes-no-button {
    background-color: white;
    border: 1px solid #7f8000;
    border-radius: 16px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.yes-no-button:hover {
    background-color: #7f8000;
    color: white;
}




.logo-font {
    font-family: 'Readex Pro', serif;
}

.header-bg {
    background: linear-gradient(90deg, #1a3a2a 0%, #2d6a4f 100%);
}

.resort-card {
    transition: all 0.3s ease;
    border-left: 4px solid #7f8000;
}

.resort-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e6f5ee;
    color: #2d6a4f;
    font-size: 20px;
}

.search-container {
    position: relative;
}

.search-container input {
    padding-right: 40px;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
}


.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.status-online {
    background-color: #7f8000;
}

.status-offline {
    background-color: #e53e3e;
}



:root {
    --primary: #7f8000;
    --primary-hover: #7f8000;
    --gold: #e2ae00;
    --silver: #A0AEC0;
    --bronze: #e2ae00;
}






.eco-deal {
    transition: transform 0.6s, box-shadow 0.3s;
    transform-style: preserve-3d;
}

.eco-deal:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.eco-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}



.destination-image {
    transition: transform 0.5s ease;
}

.eco-deal:hover .destination-image {
    transform: scale(1.05);
}

.sustainability-meter {
    height: 4px;
    width: 100%;
    background-color: #E2E8F0;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

.meter-fill {
    height: 100%;
    border-radius: 2px;
}

.eco-feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.eco-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: var(--primary);
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    transform: rotate(45deg);
    padding: 5px 35px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.deal-price {
    background: linear-gradient(145deg, #ffffff, #f7fafc);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .eco-deal-container {
        perspective: none;
    }

    .eco-deal:hover {
        transform: translateY(-5px);
    }
}



.eco-title {
    font-family: 'Readex Pro', serif;
}

/* Custom animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 3s infinite;
}

/* Eco badge styles */
.eco-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-left: 8px;
}

.gold-badge {
    background: linear-gradient(135deg, #e2ae00, #e2ae00);
    color: #000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.silver-badge {
    background: linear-gradient(135deg, #C0C0C0, #A8A8A8);
    color: #000;
    box-shadow: 0 2px 10px rgba(192, 192, 192, 0.3);
}

.bronze-badge {
    background: linear-gradient(135deg, #CD7F32, #8C6B46);
    color: #000;
    box-shadow: 0 2px 10px rgba(205, 127, 50, 0.3);
}

/* Custom card hover effects */
.eco-card {
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.eco-card:hover {
    transform: translateY(-5px);
    border-left: 4px solid #7f8000;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Image overlay effect */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.destination-card:hover .image-overlay {
    opacity: 0.9;
}

/* Leaf decoration */
.leaf-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2310B981'%3E%3Cpath d='M12.001 2c-3.865 0-7 3.134-7 7 0 5.25 7 13 7 13s7-7.75 7-13c0-3.866-3.135-7-7-7zm0 9.5c-1.381 0-2.5-1.119-2.5-2.5s1.119-2.5 2.5-2.5 2.5 1.119 2.5 2.5-1.119 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
}

/* Custom shape dividers */
.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 56px;
}

.custom-shape-divider-top .shape-fill {
    fill: #FFFFFF;
}



.mission-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.impact-stat {
    position: relative;
    padding-left: 2rem;
}

.impact-stat:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    height: 1.5rem;
    width: 0.5rem;
    background: linear-gradient(to bottom, #4ade80, #7f8000);
    border-radius: 0.25rem;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.eco-rating {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.rating-leaf {
    position: absolute;
    top: -10px;
    right: -10px;
    background: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/*hotels */

.hero-section {
    background: url('/images/hotel_hero_1.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black with 80% opacity */

}

.filter-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #7f8000;
}

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.filter-option input[type="checkbox"] {
    margin-right: 0.5rem;
}

.filter-option label {
    cursor: pointer;
}

.card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #7f8000;
}

.card-location {
    color: #4b5563;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.card-price {
    color: #7f8000;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    background-color: #f3f4e0;
    /* was #d1fae5 */
    color: #7f8000;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
}

.view-details-btn {
    background-color: #7f8000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-align: center;
    display: block;
    font-weight: 500;
    transition: background-color 0.3s;
    text-decoration: none;
}

.view-details-btn:hover {
    background-color: #4c4d00;
}


body {
    font-family: 'Readex Pro', sans-serif;
    background-color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Readex Pro', serif;
}

html {
    scroll-behavior: smooth;
}

.sticky-nav {
    position: sticky;
    top: 85px;
    /* Distance from top */
    z-index: 50;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.nav-btn {
    padding: 0.75rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.nav-btn.active {
    color: #7f8000;
    font-weight: 600;
    border-bottom-color: #7f8000;
}

.nav-btn:hover {
    color: #7f8000;
}

.section {
    scroll-margin-top: 80px;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.section:last-child {
    border-bottom: none;
}

.thumb {
    height: 90px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumb:hover {
    transform: scale(1.05);
}

.gallery-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 6px;
}

.room-card {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    background-color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-card:hover {
    border-color: #7f8000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.room-card.selected {
    border-color: #7f8000;
    background-color: #f7f8f0;
    box-shadow: 0 4px 12px rgba(127, 128, 0, 0.2);
}

.room-checkbox {
    transform: scale(1.3);
    accent-color: #7f8000;
}

.selected-rooms-summary {
    background: linear-gradient(135deg, #f7f8f0 0%, #eef0e5 100%);
    border: 2px solid #7f8000;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.room-item {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-primary {
    background-color: #7f8000;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6a6b00;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #7f8000;
    color: #7f8000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.counter-btn:hover {
    background-color: #7f8000;
    color: white;
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-display {
    min-width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.activity-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    margin-left: 8px;
}

.badge-free {
    background-color: #dcfce7;
    color: #166534;
}

.badge-paid {
    background-color: #fef3c7;
    color: #92400e;
}

.amenity-free {
    background-color: #dcfce7;
    border-color: #16a34a;
}

.amenity-paid {
    background-color: #fef3c7;
    border-color: #d97706;
}

@media (max-width: 768px) {
    .gallery-main {
        height: 220px;
    }

    .thumb {
        height: 68px;
    }

    .nav-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .section {
        padding: 2rem 0;
    }
}

/*packages*/
.option-card {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover,
.option-card.selected {
    border-color: #7f8000;
    background-color: #fffde7;
}

.option-card.selected {
    box-shadow: 0 0 0 3px rgba(127, 128, 0, 0.3);
}

.option-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: #7f8000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.summary-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

#book-now {
    background-color: #7f8000;
}

#book-now:hover {
    background-color: #666600;
}

.price-text {
    color: #7f8000;
    font-weight: bold;
}

#total {
    color: #7f8000 !important;
}

.package-section {
    margin-bottom: 2rem;
}

.selection-counter {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #7f8000;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    margin-left: 8px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.selected-count {
    font-size: 0.875rem;
    color: #7f8000;
    font-weight: 500;
}

/*index additional styles*/

/* Additional styles from the original code */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: white;
    opacity: 0.7;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/*about*/

.earth-tone-gradient {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf9 100%);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1);
}

.leaf-underline {
    position: relative;
    display: inline-block;
}

.leaf-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0,10 Q25,5 50,10 T100,10' fill='none' stroke='%2310B981' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 100px 12px;
}


.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

/*tamilkaadu*/

.sticky-nav {
    position: sticky;
    top: 80px;
    z-index: 50;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
}

.nav-btn {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-btn:hover {
    background: #e5e7eb;
}

.nav-btn.active {
    background: #7f8000;
    color: white;
}

.section {
    padding: 3rem 0;
}

.gallery-main {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: #7f8000;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #6b6b00;
    transform: translateY(-1px);
}

.room-card {
    border: 2px solid #f3f4f6;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.2s;
    cursor: pointer;
}

.room-card:hover {
    border-color: #7f8000;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.room-card.selected {
    border-color: #7f8000;
    background: #f7f7f0;
}

.room-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #7f8000;
}

.activity-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-left: auto;
}

.badge-free {
    background: #dcfce7;
    color: #166534;
}

.badge-paid {
    background: #fef3c7;
    color: #92400e;
}

.counter-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.counter-btn:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #7f8000;
}

.counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-display {
    font-size: 1.125rem;
    font-weight: 600;
    min-width: 2rem;
    text-align: center;
}

.selected-rooms-summary {
    background: #f7f7f0;
    border: 2px solid #7f8000;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.room-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.room-item:last-child {
    border-bottom: none;
}

/* Calendar Styles */
.calendar-container {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
    max-width: 100%;
    /* ✅ ensures it never overflows */
    overflow-x: hidden;
    /* ✅ hides unwanted overflow */
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.calendar-nav-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: #e5e7eb;
}

.calendar-months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    /* ✅ reduce gap to fit */
    padding: 0.5rem;
    /* ✅ reduce padding */
    width: 100%;
    /* ✅ force full width fit */
    box-sizing: border-box;
    /* ✅ padding included in width */
}


@media (max-width: 768px) {
    .calendar-months {
        grid-template-columns: 1fr;
        /* ✅ one column in mobile */
        gap: 0.5rem;
    }

}

.calendar-month {
    text-align: center;
    width: 100%;
    /* ✅ each month takes full available space */
}

.month-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    /* adjust spacing */
    overflow-x: auto;
    /* allow horizontal scroll */
    -webkit-overflow-scrolling: touch;
    /* smooth scroll on iOS */
}

.calendar-day,
.calendar-day-header {
    min-width: 40px;
    /* ensures each column is at least wide enough */
    text-align: center;
}

.calendar-day-header {
    background: #f9fafb;
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    color: #6b7280;
}

.calendar-day {
    background: white;
    padding: 0.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 0.875rem;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: #f3f4f6;
}

.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background: #f9fafb;
}

.calendar-day.other-month {
    color: #d1d5db;
    background: #f9fafb;
}

.calendar-day.selected {
    background: #7f8000 !important;
    color: white;
}

.calendar-day.in-range {
    background: #f7f7f0 !important;
    color: #7f8000;
}

.calendar-day.range-start {
    background: #7f8000 !important;
    color: white;
}

.calendar-day.range-end {
    background: #7f8000 !important;
    color: white;
}

.date-price {
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

.selected-dates-summary {
    background: #f7f7f0;
    border: 2px solid #7f8000;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.date-range-display {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

.price-breakdown {
    background: #f7f7f0;
    border: 1px solid #7f8000;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-top: 1rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 4xl;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 1rem 1rem 0 0;
    z-index: 10;
}

.modal-body {
    padding: 1.5rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 20;
}

.modal-close:hover {
    background: #e5e7eb;
    transform: scale(1.05);
}

.room-detail-card {
    cursor: pointer;
    transition: all 0.2s;
}

.room-detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.modal-gallery {
    position: relative;
    margin-bottom: 1.5rem;
}

.modal-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.modal-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.modal-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.modal-thumb:hover {
    transform: scale(1.05);
    border-color: #7f8000;
}

.modal-thumb.active {
    border-color: #7f8000;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}


.option-card {
    transition: all 0.3s ease;
}

.option-card.selected {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #4a7b5d;
}

.package-image {
    height: 180px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.card-content {
    padding: 16px;
}