.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);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease-in-out, border-color 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 {
    --logo-blue: #2264d2;
    --logo-blue-dark: #2264d2;
    --logo-blue-soft: #e8f0ff;
    --logo-orange: #ec8c00;
    --logo-orange-dark: #c97300;
    --primary: var(--logo-blue);
    --primary-hover: var(--logo-blue-dark);
    --heading: #2264d2;
    --gold: var(--logo-orange);
    --silver: #A0AEC0;
    --bronze: var(--logo-orange);
}






.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%);
    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: 'Lato', sans-serif;
    background-color: white;
}

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

/* Font Awesome global fix: prevent theme font overrides */
.fa,
.fa-solid,
.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-regular,
.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400 !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.fa-brands,
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

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;
}

.hotel-overview-gallery {
    position: relative;
    overflow: hidden;
}

.hotel-overview-gallery-main-wrap {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.gallery-main {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 1rem;
    cursor: zoom-in;
    transition: transform 0.35s ease, opacity 0.25s ease;
}

.hotel-overview-gallery-main-wrap:hover .gallery-main,
.gallery-main:focus-visible {
    transform: scale(1.02);
    outline: none;
}

.hotel-overview-gallery-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

.thumb {
    height: 90px;
    width: 100%;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 0.85rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.thumb:hover,
.thumb:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    outline: none;
}

.thumb.active {
    border-color: #7f8000;
    box-shadow: 0 10px 24px rgba(127, 128, 0, 0.2);
}

.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: var(--logo-orange);
}

.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.85rem;
    transition: all 0.25s ease;
}

.thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.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: var(--logo-orange);
}

.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;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(127, 128, 0, 0.2);
}

.booking-summary-row:last-child {
    border-bottom: none;
}

/* Tamilkaadu: smaller (incl. taxes) text */
.incl-taxes-small {
    font-size: 0.65rem;
}

/* Complimentary image cards (e.g. Royal Nature) */
.complimentary-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.complimentary-card-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: #f0f0eb;
    overflow: hidden;
}

.complimentary-card-img,
.complimentary-card-img-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.complimentary-card-img-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(135deg, #7f8000 0%, #9a9b00 100%);
}

.complimentary-card-label {
    padding: 1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    background: #fff;
    border-top: 2px solid rgba(127, 128, 0, 0.3);
}

/* Room modal: featured collage for rooms with 3+ images */
.room-modal-gallery-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 0.75rem;
    align-items: stretch;
    perspective: 1200px;
}

.room-modal-gallery-hero,
.room-modal-gallery-side img {
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(127, 128, 0, 0.18);
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.room-modal-gallery-card {
    cursor: zoom-in;
    transform: translateY(0) scale(1) rotate(0deg);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    animation: roomGalleryFloatIn 0.7s ease both;
}

.room-modal-gallery-hero {
    min-height: 20rem;
}

.room-modal-gallery-hero img,
.room-modal-gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.room-modal-gallery-side {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    min-height: 20rem;
}

/* Kailas (5 images): hero + 2×2 thumb grid */
.room-modal-gallery-side.room-modal-gallery-side--quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    min-height: 20rem;
}

.room-modal-gallery-side--quad img {
    min-height: 0;
    aspect-ratio: 4 / 3;
}

.room-modal-gallery-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    perspective: 1200px;
}

.room-modal-gallery-pair-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(127, 128, 0, 0.18);
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    aspect-ratio: 4 / 3;
}

.room-modal-gallery-pair-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.room-modal-gallery-pair-card:hover img,
.room-modal-gallery-pair-card:focus-visible img {
    transform: scale(1.04);
}

.room-modal-gallery-pair .room-modal-gallery-card:nth-child(2) {
    animation-delay: 0.12s;
}

@media (max-width: 640px) {
    .room-modal-gallery-pair {
        grid-template-columns: 1fr;
    }

    .room-modal-gallery-pair-card {
        aspect-ratio: 16 / 10;
    }
}

.room-modal-gallery-featured img:hover {
    transform: scale(1.04);
}

.room-modal-gallery-card:hover,
.room-modal-gallery-card:focus-visible {
    transform: translateY(-6px) scale(1.015) rotate(-0.35deg);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    filter: saturate(1.08);
    outline: none;
}

.room-modal-gallery-side .room-modal-gallery-card:nth-child(2) {
    animation-delay: 0.12s;
}

.room-modal-gallery-side .room-modal-gallery-card:nth-child(3) {
    animation-delay: 0.22s;
}

@keyframes roomGalleryFloatIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }

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

.room-image-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    z-index: 140;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.room-image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.room-image-lightbox-img {
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    border-radius: 1rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    animation: roomLightboxZoom 0.25s ease;
}

.room-image-lightbox-nav,
.room-image-lightbox-close {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.room-image-lightbox-close {
    top: 1rem;
    right: 1rem;
}

.room-image-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-image-lightbox-prev {
    left: 1rem;
}

.room-image-lightbox-next {
    right: 1rem;
}

.room-image-lightbox-nav:hover,
.room-image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.room-image-lightbox-close:hover {
    transform: scale(1.05);
}

.room-image-lightbox-nav:hover {
    transform: translateY(-50%) scale(1.05);
}

.room-image-lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

@keyframes roomLightboxZoom {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 767px) {
    .room-modal-gallery-featured {
        grid-template-columns: 1fr;
    }

    .room-modal-gallery-hero {
        min-height: 15rem;
    }

    .room-modal-gallery-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        min-height: auto;
    }

    .room-modal-gallery-side img {
        aspect-ratio: 4/3;
    }

    .room-image-lightbox {
        padding: 1rem;
    }

    .room-image-lightbox-nav {
        width: 2.6rem;
        height: 2.6rem;
    }

    .room-image-lightbox-prev {
        left: 0.75rem;
    }

    .room-image-lightbox-next {
        right: 0.75rem;
    }

    .room-image-lightbox-close {
        top: max(0.75rem, env(safe-area-inset-top, 0px));
        right: max(0.75rem, env(safe-area-inset-right, 0px));
        z-index: 2;
    }
}

/* 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 modal: close was position:absolute inside overflow-y:auto, so it scrolled off-screen on mobile */
.modal-overlay.active .modal-close {
    position: fixed;
    top: max(0.625rem, env(safe-area-inset-top, 0px));
    right: max(0.625rem, env(safe-area-inset-right, 0px));
    left: auto;
    z-index: 120;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.12);
}

@media (max-width: 767px) {
    .modal-overlay.active .modal-close {
        width: 2.75rem;
        height: 2.75rem;
        top: max(0.75rem, env(safe-area-inset-top, 0px));
        right: max(0.75rem, env(safe-area-inset-right, 0px));
    }
}

.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);
}

/* FairTrrip saver badge (Lilly's Valley): orange border, white inner, blue text */
.offer-badge,
.fairtrrip-saver-badge {
    background-color: #fff !important;
    border: 1px solid #ed8c01 !important;
    border-color: #ed8c01 !important;
    color: #2264d2 !important;
    box-shadow: 0 1px 2px rgba(237, 140, 1, 0.15);
}

.offer-badge i,
.fairtrrip-saver-badge i {
    color: #2264d2 !important;
}

.room-detail-card:hover .offer-badge,
.room-detail-card:hover .fairtrrip-saver-badge {
    box-shadow: 0 2px 4px rgba(237, 140, 1, 0.25);
}

.offer-banner {
    transition: box-shadow 0.2s ease;
}

.offer-banner:hover {
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.12);
}

.bookNowRoom:hover {
    box-shadow: 0 4px 12px rgba(127, 128, 0, 0.3);
}

.modal-gallery {
    position: relative;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

/* Fixed size for all hotel room modal images (Prakritilaya, Tamilkaadu, Lilly's Valley, BLB Gardens) */
.modal-main-image {
    width: 100%;
    max-width: 520px;
    height: 280px;
    min-height: 280px;
    object-fit: cover;
    border-radius: 0.5rem;
    display: block;
}

.modal-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 0.5rem;
    margin-top: 0.75rem;
    max-width: 520px;
}

.modal-thumb {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    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;
}

/* Calendar WA Styles (matching standard calendar styles) */
.calendar-container-wa {
    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%;
    overflow-x: hidden;
}

.calendar-month-wa {
    text-align: center;
    width: 100%;
}

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

.calendar-grid-wa {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.calendar-day-wa {
    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;
    min-width: 40px;
}

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

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

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

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

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

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

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

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

/* Thanima grouped activities: fixed same height and width for all images */
.thanima-activity-img-wrap {
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
}

.thanima-activity-img {
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    display: block;
}

.thanima-activity-img.img-error {
    object-fit: cover;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

/* Home index: hero background slideshow (transform/filter only; opacity crossfade in JS) */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1500ms ease-in-out;
    opacity: 0;
    transform-origin: center center;
    will-change: opacity;
}

#hero-bg-1 {
    opacity: 1;
}

.hero-anim-zoom-out {
    animation: heroAosZoomOut 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim-fade-in {
    animation: heroAosFadeIn 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-anim-fade-up {
    animation: heroAosFadeUp 2.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroAosZoomOut {
    from {
        transform: scale(1.12);
    }

    to {
        transform: scale(1);
    }
}

@keyframes heroAosFadeIn {
    from {
        transform: scale(1.03);
        filter: brightness(0.72) saturate(0.95);
    }

    to {
        transform: scale(1);
        filter: brightness(1) saturate(1);
    }
}

@keyframes heroAosFadeUp {
    from {
        transform: translateY(28px) scale(1.02);
        filter: brightness(0.88);
    }

    to {
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
}

/* Home hotels strip */
.fairtrrip-hotels-hero-wrap {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(245, 249, 255, 0.98) 65%, rgba(255, 248, 239, 0.96) 100%);
    border: 1px solid #cfe0ff;
    border-radius: 0.85rem;
    box-shadow: 0 12px 22px rgba(18, 74, 176, 0.18);
    /* removed blur for smoother scrolling */
    overflow: visible;
}

/* Hero popup date calendar (Flatpickr — opens on Check-In / Check-Out click) */
.fairtrrip-hotels-date-readonly {
    margin-top: 0.08rem;
    width: 100%;
    color: #2264d2;
    font-size: 0.96rem;
    line-height: 1.2;
    font-weight: 700;
    min-height: 1.35rem;
}

.fairtrrip-hero-date-field {
    cursor: pointer;
    border-radius: 0.35rem;
    margin: -0.15rem;
    padding: 0.15rem;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.fairtrrip-hero-date-field:hover {
    background-color: rgba(34, 100, 210, 0.06);
}

.fairtrrip-hero-date-field:focus {
    outline: none;
}

.fairtrrip-hero-date-field:focus-visible {
    outline: 2px solid #2264d2;
    outline-offset: 2px;
}

/* Popup calendar — layered above hero blur */
.flatpickr-calendar.fairtrrip-hero-flatpickr {
    z-index: 10050;
    border-radius: 1rem;
    border: 1px solid #cfe0ff;
    box-shadow: 0 16px 48px rgba(18, 74, 176, 0.22);
}

.flatpickr-calendar.fairtrrip-hero-flatpickr .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-calendar.fairtrrip-hero-flatpickr .flatpickr-months .flatpickr-next-month:hover svg {
    fill: #ec8c00;
}

.flatpickr-calendar.fairtrrip-hero-flatpickr .flatpickr-day.selected,
.flatpickr-calendar.fairtrrip-hero-flatpickr .flatpickr-day.startRange,
.flatpickr-calendar.fairtrrip-hero-flatpickr .flatpickr-day.endRange {
    background: #2264d2;
    border-color: #2264d2;
}

.flatpickr-calendar.fairtrrip-hero-flatpickr .flatpickr-day.inRange {
    background: rgba(34, 100, 210, 0.12);
    border-color: transparent;
    box-shadow: none;
}

.fairtrrip-hotels-top-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 0.24rem 0.56rem;
    background: #fff;
    border-bottom: 1px solid #d7e6ff;
}

.fairtrrip-hotels-top-nav button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.fairtrrip-hotels-top-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #5b6470;
    font-size: 0.8rem;
    font-weight: 700;
    padding-bottom: 0.38rem;
    border-bottom: 2px solid transparent;
}

.fairtrrip-hotels-top-item.is-active {
    color: #2264d2;
    border-bottom-color: #ec8c00;
}

.fairtrrip-hotels-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding-bottom: 0.65rem;
    font-size: 1.01rem;
    font-weight: 700;
    color: #4b5563;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.fairtrrip-hotels-nav-item:hover {
    color: #1f2937;
}

.fairtrrip-hotels-nav-item.is-active {
    color: #2264d2;
    border-bottom-color: #2264d2;
}

.fairtrrip-hotels-nav-icon {
    width: 1.6rem;
    height: 1.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
}

.fairtrrip-hotels-assist {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 1.02rem;
    color: #1f2937;
    font-weight: 700;
}

.fairtrrip-hotels-badge {
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    background: #ec8c00;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
}

.fairtrrip-hotels-assist-link {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #2264d2;
    font-size: 0.92rem;
    font-weight: 800;
}

.fairtrrip-hotels-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0.16rem 0.48rem;
    font-weight: 700;
    color: #374151;
    background: #fff;
    font-size: 0.74rem;
}

.fairtrrip-hotels-chip.is-active {
    color: #2264d2;
    border-color: #f4c078;
    background: #fff3df;
}

.fairtrrip-hotels-new {
    font-size: 0.56rem;
    color: #fff;
    background: #ec8c00;
    padding: 0.12rem 0.3rem;
    border-radius: 0.35rem;
    font-weight: 800;
}

.fairtrrip-hotels-fields-grid>.fairtrrip-hotels-field {
    min-width: 0;
}

.fairtrrip-hotels-field {
    padding: 0.34rem 0.48rem;
    border-right: 1px solid #d7e6ff;
    background: #fff;
}

.fairtrrip-hotels-field:last-child {
    border-right: none;
}

.fairtrrip-hotels-label {
    display: block;
    color: #1f2937;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.fairtrrip-hotels-value {
    margin-top: 0.15rem;
    color: #0f172a;
    font-size: 1.06rem;
    line-height: 1.1;
    font-weight: 800;
    white-space: nowrap;
}

.fairtrrip-hotels-label-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.fairtrrip-hotels-label-with-icon i {
    color: #2264d2;
    font-size: 0.82rem;
}

.fairtrrip-hotels-mmt-value {
    margin-top: 0.08rem;
    display: flex;
    align-items: flex-end;
    gap: 0.18rem;
    color: #000;
    line-height: 1;
}

.fairtrrip-hotels-value-num {
    font-size: 1.52rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.fairtrrip-hotels-value-text {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.2rem;
}

.fairtrrip-hotels-location-select,
.fairtrrip-hotels-field-select {
    margin-top: 0.08rem;
    width: 100%;
    border: none;
    appearance: none;
    outline: none;
    color: #0f172a;
    font-size: 0.92rem;
    line-height: 1.15;
    font-weight: 700;
    background: transparent;
    padding-right: 1.2rem;
    background-image: linear-gradient(45deg, transparent 50%, #2264d2 50%), linear-gradient(135deg, #2264d2 50%, transparent 50%);
    background-position: calc(100% - 10px) 56%, calc(100% - 5px) 56%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.fairtrrip-hotels-field-select {
    font-size: 0.96rem;
    font-weight: 700;
}

.fairtrrip-hotels-location-select:focus,
.fairtrrip-hotels-field-select:focus {
    color: #2264d2;
}

.fairtrrip-hotels-subtext {
    display: block;
    margin-top: 0.05rem;
    color: #374151;
    font-size: 0.64rem;
    font-weight: 600;
}

.fairtrrip-hotels-trending {
    margin-top: 0.15rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.66rem;
    font-weight: 700;
}

.fairtrrip-hotels-trending a {
    border: 1px solid #d5e4ff;
    border-radius: 0.45rem;
    background: #f1f6ff;
    color: #2264d2;
    padding: 0.14rem 0.34rem;
    font-weight: 700;
    transition: background 0.2s ease;
}

.fairtrrip-hotels-trending a:hover {
    background: #fff2df;
    border-color: #f4c078;
    color: #a25f00;
}

.fairtrrip-hotels-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 8.2rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #ec8c00 0%, #c97300 100%);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 10px 20px rgba(201, 115, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.fairtrrip-hotels-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(201, 115, 0, 0.36);
}

@media (max-width: 767px) {
    .fairtrrip-hotels-assist-link {
        margin-left: 0;
    }

    .fairtrrip-hotels-value {
        font-size: 1.15rem;
    }

    .fairtrrip-hotels-value-num {
        font-size: 1.65rem;
    }

    .fairtrrip-hotels-value-text {
        font-size: 0.95rem;
        margin-bottom: 0.15rem;
    }

    .fairtrrip-hotels-location-select,
    .fairtrrip-hotels-field-select {
        font-size: 1rem;
    }

    .fairtrrip-hotels-field {
        border-right: none;
        border-bottom: 1px solid #dfe5ee;
        padding: 0.28rem 0.38rem;
    }

    .fairtrrip-hotels-field:last-child {
        border-bottom: none;
    }

    .fairtrrip-hotels-date-readonly {
        font-size: 0.88rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .fairtrrip-hotels-trending {
        gap: 0.35rem;
        font-size: 0.62rem;
        margin-top: 0.12rem;
    }

    .fairtrrip-hotels-search-btn {
        width: 100%;
        max-width: 22rem;
        min-height: 2.75rem;
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }
}

@media (max-width: 479px) {
    .fairtrrip-hotels-field {
        padding: 0.22rem 0.32rem;
    }

    .fairtrrip-hotels-label {
        font-size: 0.52rem;
    }

    .fairtrrip-hotels-subtext {
        font-size: 0.6rem;
        margin-top: 0.02rem;
    }

    .fairtrrip-hotels-top-nav {
        padding: 0.18rem 0.38rem;
    }
}

/* Split rows on narrow tablets: restore vertical dividers between paired columns */
@media (min-width: 480px) and (max-width: 767px) {
    .fairtrrip-hotels-fields-grid>.fairtrrip-hotels-field {
        border-right: none;
    }

    .fairtrrip-hotels-fields-grid>.fairtrrip-hotels-field:nth-child(odd) {
        border-right: 1px solid #dfe5ee;
    }
}

/* Hotels listing page (moved from hotels.html) */
.genz-hotels-page {
    padding-top: 108px;
    background: radial-gradient(circle at 12% 5%, #edf3ff 0%, #f8fbff 38%, #ffffff 100%);
}

.genz-hotels-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2264d2 0%, #2264d2 48%, #2264d2 100%);
}

.genz-hotels-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.55;
    animation: genz-float 8s ease-in-out infinite;
}

.genz-hotels-orb--one {
    width: 220px;
    height: 220px;
    background: #2264d2;
    top: -60px;
    right: 8%;
}

.genz-hotels-orb--two {
    width: 180px;
    height: 180px;
    background: #ec8c00;
    left: -40px;
    bottom: -40px;
    animation-delay: 1.3s;
}

.genz-hotels-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: #d7e7ff;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.genz-hotels-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    font-weight: 900;
    max-width: 820px;
}

.genz-hotels-subtitle {
    margin-top: 1rem;
    color: #eff5ff;
    font-size: clamp(0.94rem, 1.8vw, 1.1rem);
    max-width: 760px;
}

.genz-hotels-stat-wrap {
    margin-top: 1.8rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.genz-hotels-stat {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(216, 230, 255, 0.45);
    border-radius: 0.9rem;
    padding: 0.75rem 0.95rem;
    min-width: 160px;
}

.genz-hotels-stat span {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1;
}

.genz-hotels-stat p {
    color: #d9e8ff;
    font-size: 0.78rem;
    margin-top: 0.3rem;
}

.genz-hotels-toolbar-wrap {
    position: sticky;
    top: 94px;
    z-index: 20;
    margin-top: -18px;
}

.genz-hotels-toolbar {
    border: 1px solid #d4e3ff;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 25px rgba(15, 55, 120, 0.18);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem;
}

.genz-hotels-search-group {
    flex: 1;
    min-width: 0;
    border: 1px solid #c8dbff;
    border-radius: 0.8rem;
    padding: 0.55rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
}

.genz-hotels-search-group i {
    color: #2264d2;
    font-size: 0.82rem;
}

.genz-hotels-search-group input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 0.92rem;
    color: #0f172a;
    background: transparent;
}

.genz-filter-toggle {
    border: 1px solid #f6ba6b;
    background: #fff1de;
    color: #9b5c07;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 0.75rem;
    padding: 0.55rem 0.75rem;
}

.genz-hotels-results {
    width: 100%;
}

.genz-hotels-filters-top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.genz-filter-trigger {
    border: 1px solid #d9e5ff;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    cursor: pointer;
    color: #0f172a;
    font-weight: 800;
    font-size: 0.92rem;
    box-shadow: 0 10px 22px rgba(15, 55, 120, 0.1);
}

.genz-filter-trigger span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.genz-filter-trigger i {
    color: #2264d2;
}

.genz-filter-trigger:hover {
    border-color: #bcd2ff;
}

body.genz-modal-open {
    overflow: hidden;
}

.genz-filter-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
}

.genz-filter-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
}

.genz-filter-modal-dialog {
    position: relative;
    max-width: 620px;
    margin: 8vh auto 0;
    width: calc(100% - 2rem);
    border-radius: 1rem;
    border: 1px solid #d9e5ff;
    background: #fff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.3);
    overflow: hidden;
}

.genz-filter-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid #e4ecff;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.genz-filter-modal-header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.genz-filter-modal-close {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid #d4e3ff;
    background: #fff;
    color: #2264d2;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.genz-filter-modal-close:hover {
    background: #f0f6ff;
}

.genz-filter-card {
    border-top: none;
    background: #fff;
    padding: 0.85rem 0.95rem 0.95rem;
}

.genz-filter-options {
    display: grid;
    gap: 0.45rem;
    max-height: 230px;
    overflow: auto;
    padding-right: 0.25rem;
}

.genz-filter-option {
    display: flex;
    align-items: center;
    gap: 0.48rem;
    font-size: 0.82rem;
    color: #334155;
}

.genz-hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.genz-hotel-card {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.45s ease;
    border-radius: 1.25rem;
}

.genz-hotel-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.genz-card-link {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e6ecd2;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 32px rgba(38, 48, 12, 0.1);
    text-decoration: none;
    color: inherit;
    isolation: isolate;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.genz-card-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 46px rgba(43, 56, 12, 0.18);
    border-color: #cad9a0;
}

.genz-hotel-image {
    position: relative;
    height: 260px;
    min-height: 240px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform 0.55s ease;
}

.genz-hotel-image img {
    display: none;
}

.genz-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(8, 12, 4, 0.25) 0%,
            rgba(8, 12, 4, 0.15) 35%,
            rgba(8, 12, 4, 0.72) 100%);
    pointer-events: none;
}

.genz-image-shine {
    position: absolute;
    inset: -35% -15% auto auto;
    width: 85%;
    height: 75%;
    z-index: 1;
    background: linear-gradient(115deg,
            transparent 38%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 62%);
    transform: translateX(-25%) skewX(-18deg);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.65s ease;
    pointer-events: none;
}

.genz-card-link:hover .genz-image-shine {
    opacity: 1;
    transform: translateX(15%) skewX(-18deg);
}

.genz-card-link:hover .genz-hotel-image {
    transform: scale(1.04);
}

.genz-tag-pill {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.94);
    color: #4d5609;
    border-radius: 999px;
    padding: 0.32rem 0.72rem;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 14px rgba(24, 31, 8, 0.22);
}

.genz-tag-pill i {
    color: #7f8000;
    font-size: 0.7rem;
}

.genz-card-fav {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 3;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    color: #7f8000;
    font-size: 0.95rem;
    box-shadow: 0 6px 14px rgba(24, 31, 8, 0.2);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.genz-card-link:hover .genz-card-fav {
    background: #7f8000;
    color: #fff;
    transform: scale(1.05);
}

.genz-image-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.35rem 1rem 1.05rem;
    color: #fff;
    isolation: isolate;
}

.genz-image-meta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg,
            rgba(6, 10, 4, 0) 0%,
            rgba(6, 10, 4, 0.55) 40%,
            rgba(6, 10, 4, 0.88) 100%);
    border-radius: 0 0 1.2rem 1.2rem;
    pointer-events: none;
}

/* Title + location live on the image — force readable light text (override globals) */
.genz-image-meta .card-title {
    margin: 0;
    padding: 0;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff !important;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(0, 0, 0, 0.35);
}

.genz-image-meta .card-location {
    margin: 0.45rem 0 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95) !important;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    max-width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.genz-image-meta .card-location i {
    color: #c8dc6a !important;
    margin-top: 0;
    flex-shrink: 0;
}

.genz-hotel-content {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.genz-hotel-tagline {
    margin: 0;
    color: #475569;
    font-size: 0.86rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.genz-chip-wrap {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.genz-chip {
    font-size: 0.7rem;
    font-weight: 700;
    color: #4d5609;
    background: linear-gradient(180deg, #f6faea 0%, #ecf3d2 100%);
    border: 1px solid #d8e4ad;
    border-radius: 999px;
    padding: 0.22rem 0.58rem;
}

.genz-card-footer {
    margin-top: auto;
    padding-top: 0.55rem;
    border-top: 1px dashed #e3eac8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.genz-card-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: #4d5609;
}

.genz-rating-label {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.65rem;
    background: #f1f6dc;
    border: 1px solid #d8e4ad;
    border-radius: 999px;
    padding: 0.15rem 0.48rem;
}

.genz-rating-leaves {
    display: inline-flex;
    gap: 0.15rem;
    color: #7f8000;
    font-size: 0.68rem;
}

.genz-rating-value {
    font-size: 0.72rem;
    font-weight: 700;
    color: #3d4206;
    margin-left: 0.1rem;
}

.genz-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #8b8d10 0%, #6b6c00 100%);
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(64, 70, 8, 0.26);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 0;
}

.genz-card-cta i {
    transition: transform 0.25s ease;
}

.genz-card-link:hover .genz-card-cta {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(64, 70, 8, 0.32);
}

.genz-card-link:hover .genz-card-cta i {
    transform: translateX(3px);
}

.genz-no-results {
    margin-bottom: 0.8rem;
    border: 1px solid #f4b565;
    background: #fff6e8;
    color: #9b5c07;
    border-radius: 0.75rem;
    padding: 0.7rem 0.9rem;
    font-weight: 700;
}

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

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

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

@media (max-width: 1024px) {
    .genz-hotels-filters-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .genz-hotels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .genz-hotels-page {
        padding-top: 88px;
    }

    .genz-hotels-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .genz-filter-modal-dialog {
        margin-top: 5vh;
        width: calc(100% - 1rem);
    }

    .genz-hotels-filters-top {
        grid-template-columns: 1fr;
    }

    .genz-hotels-toolbar-wrap {
        top: 76px;
    }

    .genz-hotel-image {
        height: 230px;
    }

    .genz-image-meta .card-title {
        font-size: 1.05rem;
    }

    .genz-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .genz-card-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Fairtrrip global logo palette overrides */
.text-primary {
    color: var(--logo-blue) !important;
}

.bg-primary {
    background-color: var(--logo-blue) !important;
}

.hover\:bg-primary:hover {
    background-color: var(--logo-blue-dark) !important;
}

.btn-primary,
button.bg-\[\#7f8000\],
button.bg-\[\#808000\] {
    background-color: var(--logo-orange) !important;
    border-color: var(--logo-orange) !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: var(--logo-orange-dark) !important;
}

.bg-\[\#7f8000\],
.bg-\[\#808000\],
.bg-\[\#666600\],
.bg-\[\#6b6b00\] {
    background-color: var(--logo-blue) !important;
}

.text-\[\#7f8000\],
.text-\[\#808000\],
.text-\[\#666600\],
.text-\[\#6b6b00\] {
    color: var(--logo-blue) !important;
}

.border-\[\#7f8000\],
.border-\[\#808000\],
.border-\[\#666600\],
.border-\[\#6b6b00\] {
    border-color: var(--logo-blue) !important;
}

.hover\:bg-\[\#666600\]:hover,
.hover\:bg-\[\#6b6b00\]:hover {
    background-color: var(--logo-orange-dark) !important;
}

/* Orange button theme across Fairtrrip */
button.bg-primary,
a.bg-primary,
input[type="submit"],
input[type="button"],
.ftd-hero-btn-primary,
.fairtrrip-hotels-search-btn {
    background-color: var(--logo-orange) !important;
    border-color: var(--logo-orange) !important;
    color: #fff !important;
}

button.bg-primary:hover,
a.bg-primary:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.ftd-hero-btn-primary:hover,
.fairtrrip-hotels-search-btn:hover {
    background-color: var(--logo-orange-dark) !important;
    border-color: var(--logo-orange-dark) !important;
}

.status-online {
    background-color: var(--logo-blue) !important;
}

/* Hotel detail first-paint guard:
   keep page hidden until template-level styles are parsed to avoid FOUC. */
.ftd-pending {
    opacity: 0;
    visibility: hidden;
}

.ftd-pending.ftd-ready {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease;
}

/* =========================
   Fairtrrip redesigned pages
   ========================= */

/* about.html */
.ft-about-shell {
    background: radial-gradient(circle at 10% 10%, #edf4ff 0%, #f8fbff 38%, #ffffff 100%);
}

.ft-about-grid-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(239, 247, 255, 0.95) 100%);
    border: 1px solid rgba(34, 100, 210, 0.15);
    box-shadow: 0 18px 40px rgba(19, 57, 117, 0.14);
}

.ft-about-mesh {
    background: linear-gradient(130deg, rgba(34, 100, 210, 0.94), rgba(8, 35, 78, 0.9));
}

.ft-story-line {
    position: absolute;
    left: 0.65rem;
    top: 2rem;
    bottom: 2rem;
    width: 2px;
    background: linear-gradient(to bottom, #ec8c00, rgba(34, 100, 210, 0.25));
}

.ft-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.ft-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* packages.html */
.ft-packages-shell {
    background:
        radial-gradient(circle at 85% 5%, rgba(236, 140, 0, 0.16) 0%, transparent 34%),
        radial-gradient(circle at 12% 0%, rgba(34, 100, 210, 0.16) 0%, transparent 42%),
        linear-gradient(180deg, #f8fbff 0%, #f4f9ff 40%, #ffffff 100%);
}

.ft-hero-frame {
    background:
        linear-gradient(130deg, rgba(34, 100, 210, 0.96) 0%, rgba(16, 58, 126, 0.94) 48%, rgba(236, 140, 0, 0.86) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.ft-hero-frame::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    right: -120px;
    top: -180px;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(2px);
}

.ft-hero-frame::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    left: -120px;
    bottom: -150px;
    background: rgba(255, 255, 255, 0.14);
}

.ft-package-board {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d7e7ff;
    box-shadow: 0 24px 45px rgba(15, 50, 108, 0.12);
}

.ft-package-card.option-card {
    border: 1px solid #d8e6ff;
    border-radius: 1.15rem;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 24px rgba(22, 52, 105, 0.11);
}

.ft-package-card .card-content {
    padding: 1rem 1rem 1.1rem;
}

.ft-package-card.option-card:hover {
    transform: translateY(-6px);
    border-color: #8db6ff;
    box-shadow: 0 18px 34px rgba(24, 57, 112, 0.17);
}

.ft-package-card.option-card.selected {
    border-color: #2264d2;
    transform: translateY(-7px);
    box-shadow: 0 0 0 3px rgba(34, 100, 210, 0.2), 0 20px 35px rgba(24, 57, 112, 0.2);
}

.ft-package-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #edf4ff;
    border: 1px solid #d4e3ff;
    color: #2264d2;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
}

.ft-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.38;
    margin-top: 0.28rem;
}

.ft-includes i {
    margin-top: 0.12rem;
    color: #2264d2;
    font-size: 0.7rem;
}

.ft-planner-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.98) 100%);
    border: 1px solid #d8e7ff;
    box-shadow: 0 20px 38px rgba(20, 56, 118, 0.14);
}

/* sustainability.html */
.ft-sustainability-bg {
    background: radial-gradient(circle at 5% 20%, rgba(34, 100, 210, 0.14), transparent 33%),
        radial-gradient(circle at 95% 0%, rgba(236, 140, 0, 0.14), transparent 28%),
        #f7fbff;
}

.ft-s-core-card {
    border: 1px solid #d7e7ff;
    background: linear-gradient(165deg, rgba(255, 255, 255, 1) 0%, rgba(242, 248, 255, 1) 100%);
    box-shadow: 0 16px 30px rgba(20, 56, 118, 0.12);
}

.ft-s-meter {
    height: 0.55rem;
    border-radius: 999px;
    background: #dfeafc;
    overflow: hidden;
}

.ft-s-meter>span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #2264d2 0%, #ec8c00 100%);
}

/* cancellation.html */
.ft-cancel-shell {
    background:
        radial-gradient(circle at 12% 5%, rgba(34, 100, 210, 0.16), transparent 38%),
        radial-gradient(circle at 88% 0%, rgba(236, 140, 0, 0.14), transparent 35%),
        linear-gradient(180deg, #f8fbff 0%, #f6f9ff 45%, #ffffff 100%);
}

.ft-cancel-hero {
    background: linear-gradient(140deg, #2264d2 0%, #164894 55%, #ec8c00 100%);
}

.ft-cancel-timeline::before {
    content: "";
    position: absolute;
    left: 1.4rem;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 2px;
    background: linear-gradient(to bottom, #2264d2, rgba(236, 140, 0, 0.65));
}

@media (min-width: 768px) {
    .ft-cancel-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* eco_hotel.html */
.ft-eco-shell {
    background:
        radial-gradient(circle at 12% 5%, rgba(34, 100, 210, 0.17), transparent 38%),
        radial-gradient(circle at 90% 0%, rgba(236, 140, 0, 0.14), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #f5f9ff 45%, #ffffff 100%);
}

.ft-eco-hero {
    background: linear-gradient(138deg, #2264d2 0%, #0f3c80 55%, #ec8c00 100%);
}

.ft-eco-form-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 255, 0.99));
    border: 1px solid #d8e7ff;
    box-shadow: 0 22px 40px rgba(20, 57, 120, 0.14);
}

.ft-eco-form-input {
    border: 1px solid #d4e5ff;
    border-radius: 0.8rem;
    padding: 0.8rem 0.9rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ft-eco-form-input:focus {
    outline: none;
    border-color: #2264d2;
    box-shadow: 0 0 0 3px rgba(34, 100, 210, 0.12);
}

.ft-eco-benefit {
    background: #fff;
    border: 1px solid #dce8ff;
    box-shadow: 0 10px 24px rgba(27, 63, 126, 0.11);
}

/* ============================================================
   Room modal — extended detail blocks (subtitle, stay info,
   room facts, amenities, cancellation). Used by hotels that
   provide longDescription / stayInfo / roomFacts / amenitiesList
   / cancellationPolicy in roomModalData. Other hotels are
   unaffected because each block is rendered conditionally.
   ============================================================ */

.ftd-room-modal-subtitle {
    color: #7f8000;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ftd-room-modal-stay {
    margin-top: 0.25rem;
}

.ftd-room-modal-stay-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f6faea 0%, #ffffff 100%);
    border: 1px solid #e6efc6;
    border-radius: 14px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 14px rgba(127, 128, 0, 0.06);
}

.ftd-room-modal-stay-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #7f8000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 6px 14px rgba(127, 128, 0, 0.25);
}

.ftd-room-modal-stay-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin: 0;
}

.ftd-room-modal-stay-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2b3a14;
    margin: 0;
}

.ftd-room-modal-facts {
    margin-top: 0.25rem;
}

.ftd-room-modal-fact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid #e9efce;
    border-left: 4px solid #7f8000;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ftd-room-modal-fact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(127, 128, 0, 0.12);
}

.ftd-room-modal-fact-icon {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f6faea;
    color: #7f8000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ftd-room-modal-fact-body {
    min-width: 0;
}

.ftd-room-modal-fact-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
    margin: 0 0 0.2rem 0;
}

.ftd-room-modal-fact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2b3a14;
    margin: 0;
    line-height: 1.35;
}

/* Room modal — circular feature icon grid (e.g. SR Jungle room sheets) */
.ftd-room-feature-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem 0.5rem;
    margin-top: 0.25rem;
}

@media (min-width: 640px) {
    .ftd-room-feature-icon-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        gap: 1rem 0.6rem;
    }
}

.ftd-room-feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    min-width: 0;
}

.ftd-room-feature-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #7f8000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(127, 128, 0, 0.22);
}

.ftd-room-feature-icon-grid--jungle .ftd-room-feature-icon-circle {
    background: #4a3428;
    box-shadow: 0 6px 14px rgba(74, 52, 40, 0.28);
}

.ftd-room-feature-icon-label {
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.25;
    color: #4b5563;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.ftd-room-modal-amenities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
}

.ftd-room-modal-amenities li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
}

.ftd-room-modal-amenities li i {
    color: #7f8000;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.ftd-room-modal-policy {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fffaf0;
    border: 1px solid #fde9b7;
    border-radius: 12px;
    padding: 0.85rem 1rem;
}

.ftd-room-modal-policy li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #5a4a1f;
    padding: 0.35rem 0;
    line-height: 1.45;
    border-bottom: 1px dashed #f5e3a7;
}

.ftd-room-modal-policy li:last-child {
    border-bottom: 0;
}

.ftd-room-modal-policy li i {
    color: #b8860b;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .ftd-room-modal-amenities {
        grid-template-columns: 1fr;
    }
}

/* Hotel address card on the location section */
.ftd-location-address {
    border-left: 4px solid #7f8000;
}

.ftd-location-address-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f6faea;
    color: #7f8000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ftd-location-address-body span {
    font-size: 0.95rem;
}