/* ...existing code... */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 40px; /* smaller favicon/logo on mobile */
        width: auto;
    }
    /* ...existing code... */
}
/* ...existing code... *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.snap-scroll-enabled {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fff4d7;
}

/* Ensure main sections have snap alignment and navbar offset */
.hero, 
.accommodations, 
.gallery, 
.guest-reviews,
.location, 
.footer {
    scroll-snap-align: start;
    scroll-margin-top: 60px; /* Account for fixed navbar height */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.back-button {
    position: fixed;
    top: 80px; /* adjust if navbar height changes */
    left: 20px;
    background-color: rgba(2, 84, 22, 0.797);
    color: #fff;
    padding: 8px 14px 8px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    z-index: 500;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

@media (min-width: 769px) {
    .back-button {
        display: none;
    }
}

.back-button:hover {
    background-color: #f97803;
    transform: scale(1.05);
}

.back-button i {
    margin-right: 6px;
    font-size: 14px;
}

.btn {
    display:grid;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    border-color: #2c5530;
}

.btn-primary:hover {
    background: #f97803;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 85, 48, 0.3);
}

.btn-secondary {
    background: #f97803;
    color: white;
    border-color: #ad5402;
}

.btn-secondary:hover {
    background: #2c5530;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
}

.calendar-link-standalone {
    display: inline-block;
    margin-top: 15px;
    color: #2c5530;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #2c5530;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.calendar-link-standalone:hover {
    background-color: #2c5530;
    color: white;
}

.gallery-button-container {
    width: 100%;
    display:flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0 5%;
}

.gallery-button-container .btn {
    width: 100%;
    max-width: 1200px;
    padding: 15px 0;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 9999;  
    background-color: #2c5530;
    transition: all 0.3s ease;
    --navbar-height: 60px; /* used to position mobile menu just below navbar */
}

.navbar.scrolled {
    background-color: rgba(176, 148, 70, 0.8);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2c5530;
    font-size: 1.8rem;
    margin: 0;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #f97803;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #2c5530;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Style 'Book Now' as an orange button in desktop menu */
.nav-menu li:last-child .nav-link {
    background-color: #f97803;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-menu li:last-child .nav-link:hover {
    background-color: #e66d02;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 120, 3, 0.3);
}

.nav-menu li:last-child .nav-link::after {
    display: none; /* Remove underline for the button link */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    padding:  20px 80px;
    color: white;
    background: url(images/logo/hero-bg2.png);
    background-size: cover;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 700px; /* optional: keeps it nicely sized */
    filter: drop-shadow(100px 0 100px rgba(0, 0, 0, 0.6));
    padding-bottom: 1rem;
}


.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding-top: 40px;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
    padding: 0 80px;
    color: white;
    background: url(images/logo/hero-bg2.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -15vh; /* Pull title up to make room for centered bar */
}

/* ... (existing styles) ... */


.hero-about-wrapper {
    position: relative;
    background-color: #2c5530; /* Matches sections to ensure seamless transition */
}

.hero-booking-bar {
    display: flex;
    flex-direction: column;
    background: #2c5530;
    border-radius: 8px;
    padding: 0;
    gap: 0;
    
    /* Sticky Positioning */
    position: sticky;
    top: 60px; /* Navbar height */
    z-index: 2000; /* Higher than slides */
    
    width: 90%;
    max-width: 900px;
    margin: -28vh auto 13vh; /* Lowered slightly from -55vh */
    
    border-top: 3px solid #2c5530;
    transition: background 0.3s ease;
}

/* Optional: remove the overlap transform when sticking if desired or keep it for consistent look */


.booking-main-row {
    display: flex;
    width: 100%;
    padding: 10px;
}

.manage-booking-btn {
    display: flex;
    align-items: right;
    justify-content: right; /* Centered looks better for a single action */
    padding: 12px 25px;
    background: #234426; /* Slightly darker to distinguish or same? Using darker based on typical footer styles */
    color: white;
    text-decoration: none;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 8px 8px;
    transition: background 0.2s;
}

.manage-booking-btn:hover {
    background: #1e3a20;
}

.manage-booking-btn i {
    margin-left: 10px;
    font-size: 0.9rem;
}

.booking-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,0.1); /* Lighter border for dark bg */
    justify-content: center;
}

.booking-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ddd; /* Lighter text for dark bg */
    margin-bottom: 5px;
    font-weight: 600;
}



.guest-selector {
    position: relative;
    cursor: pointer;
}

.guest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 200px;
    background: white; /* Changed to white */
    border-radius: 0 0 8px 8px;
    padding: 15px;
    display: none;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Lighter shadow */
    z-index: 100;
    margin-top: 10px;
    border: 1px solid #eee; /* Added border */
    border-top: none;
}

.guest-dropdown.active {
    display: flex;
}

.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee; /* Light border */
}

.guest-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.guest-type {
    color: #2c5530; /* Primary green for text */
    font-weight: 600;
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guest-btn {
    background: transparent;
    border: none;
    color: #f97803;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: transform 0.2s;
}

.guest-btn:hover {
    transform: scale(1.2);
}

.guest-count {
    color: #333; /* Dark text */
    font-weight: 600;

    min-width: 20px;
    text-align: center;
}

.booking-value {
    color: white; /* White text for dark bg */
    font-size: 1rem;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 1.5rem;
}

#guest-summary {
    color: #f97803;
}

.booking-value i {
    color: #f97803;
    font-size: 0.9rem;
}

.book-now-btn {
    background:  #f97803;
    color: white;
    border: none;
    padding: 15px 40px; /* Increased vertical padding */
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 4px;
    flex: 0.8; /* Slightly smaller flex grow */
}

.book-now-btn:hover {
    background:  #f97803;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 120, 3, 0.3);
}

.mobile-booking-toggle {
    display: none; /* Hidden on all devices by default */
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: -25vh; /* Pull logo higher on mobile */
    }

    .hero-booking-bar {
        position: sticky;
        top: 60px; /* Stick below navbar */
        margin: -52vh auto 25vh; /* Pulled much higher to be just below logo */
        width: 95%;
        z-index: 2000;
        border-radius: 8px;
        /* Removed overflow: hidden to allow guest dropdown to be visible */
        box-shadow: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: 1000px; /* Large enough for expanded state */
    }

    /* Collapsed State Styles */
    .hero-booking-bar.collapsed {
        max-height: 54px;
        /* margin-top: 0; REMOVED: this caused the 52vh layout jump */
        background: #f97803; /* Orange button-like look */
        cursor: pointer;
    }

    /* Mobile toggle visibility is handled purely by max-height/opacity to prevent jumps */
    .mobile-booking-toggle {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex; /* Always flex, just hidden by height */
        justify-content: center;
        align-items: center;
        color: white;
        font-weight: 700;
        letter-spacing: 1px;
        gap: 12px;
    }

    .hero-booking-bar.collapsed .mobile-booking-toggle {
        max-height: 54px;
        opacity: 1;
        height: 54px;
    }

    .booking-content-wrapper {
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        max-height: 1000px; /* Expanded state */
        opacity: 1;
        overflow: hidden; /* Hide content when shrinking */
    }

    .hero-booking-bar.collapsed .booking-content-wrapper {
        max-height: 0;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
        pointer-events: none; /* Prevent clicks when collapsed */
    }

    .booking-main-row {
        flex-direction: column;
        padding: 0;
    }
    
    .booking-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 20px 15px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* Center align all text and items */
        text-align: center;
    }

    .booking-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
        color: #ccc;
    }

    .booking-value {
        justify-content: center;
        width: 100%;
        font-size: 1.2rem;
        font-weight: 500;
        gap: 10px;
    }

    .booking-value i {
        color: #f97803; /* Orange icons as in image */
        font-size: 1.1rem;
    }

    .book-now-btn {
        padding: 18px;
        width: 100%;
        border-radius: 0;
        margin: 0;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .manage-booking-btn {
        justify-content: flex-end; /* Right align as requested */
        padding: 12px 20px;
        font-size: 0.55rem;
        border-top: none; /* Cleaner look if button already has its own border top */
    }

    /* Prevent Guest Dropdown Clipping */
    .hero-booking-bar .guest-dropdown {
        position: relative;
        top: 0;
        margin-top: 15px;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.05);
        padding: 12px 20px;
        width: 100%;
        border-radius: 4px;
    }

    .hero-booking-bar .guest-type,
    .hero-booking-bar .guest-count {
        color: white;
    }

    .hero-booking-bar .guest-row {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .scroll-indicator {
        display: block;
    }
}

.scroll-indicator {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f97803; /* Orange for visibility */
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 20; /* Ensure it's above other elements */
    opacity: 1; /* Increased opacity */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Drop shadow for contrast */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Flatpickr Custom Styling */
.flatpickr-calendar {
    font-family: 'Poppins', sans-serif !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    border: none !important;
}

@media (max-width: 768px) {
    .flatpickr-calendar {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-width: 340px !important;
    }
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.startRange.prevMonthDay, 
.flatpickr-day.endRange.prevMonthDay, 
.flatpickr-day.selected.nextMonthDay, 
.flatpickr-day.startRange.nextMonthDay, 
.flatpickr-day.endRange.nextMonthDay {
    background: #f97803 !important;
    border-color: #f97803 !important;
}

.flatpickr-day.inRange {
    box-shadow: -5px 0 0 #fff4d7, 5px 0 0 #fff4d7 !important;
    background: #fff4d7 !important;
    border-color: #fff4d7 !important;
    color: #2c5530 !important;
}

.flatpickr-day.today {
    border-color: #f97803 !important;
}

.flatpickr-day.today:hover {
    background: #f97803 !important;
    color: white !important;
}

.flatpickr-months .flatpickr-month {
    background: #2c5530 !important;
    color: white !important;
    fill: white !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 60px !important; /* Increased height to prevent cropping */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0 !important; /* Reset padding to rely on flexbox alignment */
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #2c5530 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
    background-color: #2c5530 !important;
    outline: none;
    padding: 0;
}

.flatpickr-weekdays {
    background: #2c5530 !important;
}

.flatpickr-weekday {
    background: #2c5530 !important;
    color: rgba(255,255,255,0.8) !important;
}

.flatpickr-next-month svg, .flatpickr-prev-month svg {
    fill: white !important;
    margin-top: 15px !important; /* Push arrows down to center properly */
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
/* About Slideshow Section */
.about-slideshow {
    position: relative;
    background: #000;
}

.slide {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax-like effect */
    z-index: -1;
    filter: brightness(0.6);
}

/* Slide Background Images (Desktop) */
#slide1 .slide-bg { background-image: url('images/about/web-1.jpg'); }
#slide2 .slide-bg { background-image: url('images/about/web-2.jpg'); }
#slide3 .slide-bg { background-image: url('images/about/web-3.jpg'); }
#slide4 .slide-bg { background-image: url('images/about/web-4.jpg'); }
#slide5 .slide-bg { background-image: url('images/about/web-5.jpg'); }

/* Responsive adjustments for About Slideshow */
@media (max-width: 768px) {
    .slide-bg {
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }
    
    /* Slide Background Images (Mobile) */
    #slide1 .slide-bg { background-image: url('images/about/mob-1.jpg'); }
    #slide2 .slide-bg { background-image: url('images/about/mob-2.jpg'); }
    #slide3 .slide-bg { background-image: url('images/about/mob-3.jpg'); }
    #slide4 .slide-bg { background-image: url('images/about/mob-4.jpg'); }
    #slide5 .slide-bg { background-image: url('images/about/mob-5.jpg'); }
}

.slide-content {
    color: white;
    text-align: center;
    width: 100%;
    padding: 20px;
    z-index: 1;
}

.slide-text {
    max-width: 900px;
    margin: 0 auto;
    opacity: 1;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.slide-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slide-text .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #f97803;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-text h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-style: italic;
}

.slide-text p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Ensure slides stack and show correctly */
#slide1 { z-index: 5; }
#slide2 { z-index: 6; }
#slide3 { z-index: 7; }
#slide4 { z-index: 8; }
#slide5 { z-index: 9; }

/* Responsive adjustments for About Slideshow */
@media (max-width: 768px) {
    .slide-text h2 {
        font-size: 2.5rem;
    }
    .slide-text h3 {
        font-size: 1.5rem;
    }
}

.about-location {
    padding: 100px 0 100px;
    text-align: center;
    background-color: #2c5530;
    color: white;
}
.about-location h2{
    color: white;
    margin-bottom: 1.5rem;
}

.about-location p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.location-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f97803;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.location-btn-2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #017eaf;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}


.location-btn:hover {
    background-color: #e06c02;
}

.location-btn i {
    font-size: 1.2rem;
}

/* Accommodations Section */
.accommodations {
    padding: 100px 0 100px;
    background: #f8f4e9;
}

/* --- Carousel Dots (mobile only) --- */
.accom-carousel-dots {
    display: none; /* hidden on desktop */
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.accom-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #2c5530;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.accom-dot.active {
    background: #2c5530;
    transform: scale(1.3);
}

/* --- Grid --- */
.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

/* --- Card --- */
.accommodation-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.accommodation-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(44, 85, 48, 0.18);
}

/* --- Hero Image Area --- */
.card-image-hero {
    position: relative;
    height: 260px;
    overflow: hidden;
    flex: 0 0 auto;
}

.card-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accommodation-card:hover .card-hero-img {
    transform: scale(1.08);
}

.card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* --- Floating Badges --- */
.card-badge {
    position: absolute;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.3px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
}

.card-badge-capacity {
    top: 16px;
    left: 16px;
    background: rgba(255,255,255,0.88);
    color: #2c5530;
    border: 1px solid rgba(44, 85, 48, 0.15);
}

.card-badge-capacity i {
    margin-right: 4px;
    font-size: 0.75rem;
}

.card-badge-price {
    bottom: 16px;
    right: 16px;
    background: rgba(249, 120, 3, 0.92);
    color: white;
    font-size: 1.1rem;
    padding: 8px 18px;
    box-shadow: 0 4px 16px rgba(249, 120, 3, 0.35);
}

.price-unit {
    font-weight: 400;
    font-size: 0.75rem;
    opacity: 0.85;
}

.accommodation-card:hover .card-badge {
    transform: scale(1.05);
}

/* --- Card Body --- */
.card-body {
    padding: 1.75rem 1.75rem 1.5rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.card-body-header {
    margin-bottom: 0.75rem;
}

.card-body h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-tagline {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Amenities Toggle Button --- */
.amenities-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0;
    background: none;
    border: none;
    border-top: 1px solid rgba(44, 85, 48, 0.1);
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c5530;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.amenities-toggle:hover {
    color: #f97803;
}

.amenities-toggle i {
    font-size: 0.75rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.amenities-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* --- Amenities Drawer (collapsed by default) --- */
.amenities-drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.35s ease,
                padding 0.35s ease;
    opacity: 0;
    padding: 0;
}

.amenities-drawer.open {
    max-height: 300px;
    opacity: 1;
    padding: 8px 0 12px;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.amenities-list li {
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    color: #555;
    gap: 8px;
    line-height: 1.4;
}

.amenities-list li i {
    color: #2c5530;
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* --- Card Actions --- */
.card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(44, 85, 48, 0.08);
}

.card-btn-book {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 0.95rem;
}

/* Ghost Button for "More Details" */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 12px 4px;
    border-radius: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-ghost:hover {
    color: #f97803;
}

.btn-ghost i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-ghost:hover i {
    transform: translateX(4px);
}

.islabook-container {
    text-align: center;
    padding: 150px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.messenger-image-container {
    justify-content: center;
    align-items: center;     
    margin: 0 auto 0.5rem;
    max-width: 400px;
}


.islabook-image-container {
    display: flex;
    justify-content: center;
    align-items: center;     
    margin: 0 auto 2rem;
}

.islabook-container h1 {
    font-size: 3rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.islabook-container h4 {
    font-size: 1rem;
    color: #2c5530;
    margin-bottom: 1rem;
}

.islabook-container p {
    text-align: justify;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}





/* Gallery Section */
.gallery {
    padding: 100px 0 100px;
    background-color: #2c5530;
    color: white;
}

.gallery .section-header h2 {
    color: white;
}

.gallery .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.collage-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease, opacity 0.5s ease-in-out;
  cursor: pointer;
  transform-style: preserve-3d;
}

.collage-img:hover {
  transform: scale(1.03);
}

.flip {
  transform: rotateY(90deg);
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}


/* Gallery Loading State */
.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2c5530;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.gallery-loading p {
    font-size: 1.1rem;
    margin: 0;
}

.gallery-error {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.gallery-error i {
    font-size: 3rem;
    color: #f44336;
    margin-bottom: 1rem;
}

.gallery-error p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #2c5530;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #f1f1f1;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    max-width: 600px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(44, 85, 48, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    pointer-events: auto;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(44, 85, 48, 1);
}

.lightbox-prev {
    margin-left: 20px;
}

.lightbox-next {
    margin-right: 20px;
}

/* ================================
   Featured Section (Influencer Videos)
================================ */
.testimonials {
    padding: 100px 0;
    background: #f8f4e9; /* same tone as About for harmony */
}

.testimonials .section-header h2 {
    color: #2c5530;
}

.testimonials .section-header p {
    color: #666;
}

.testimonials-grid-vlog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 2fr));
    gap: 2rem;
    justify-items: center;
}

.feature-video {
    position: relative;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 9 / 16; /* Facebook Reels are usually vertical */

}

.feature-video:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.3);
}

.feature-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    aspect-ratio: 9 / 16; /* Facebook Reels are usually vertical */

}


#booking-summary-container {
   background-color: #f9f9f9;
   border-radius: 8px;
   padding: 2rem;
   margin: 2rem auto;
   max-width: 600px;
   box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#booking-summary-container h2 {
    margin-bottom: 1.0rem;
    color: #2c5530;
    text-align: left;
    font-size: 1.5rem;
}

.summary-item {
    display:block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    text-align: left;
}

.summary-item-price{
    display: flexbox;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    text-align: left;
    background: #2c5530;
    color: white;
}

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

.summary-item strong {
    color: #555;
}

.payment-details {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.payment-details h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
    font-size: 1.5rem;
}

.payment-details h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c5530;
    font-size: 1.2rem;
}

.payment-details p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.payment-details ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.payment-details li {
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #2c5530;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #2c5530;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: #2c5530;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/*Booking Page*/
.booking-intro { 
    text-align: center; 
    max-width: 900px; margin: 
    0 auto 1rem; 
}

.booking-cards { 
    display: flex; 
    flex-direction: row; 
    justify-content: center;
    gap: 2rem; 
    max-width: 1000px; 
    margin: 2rem auto; 
    align-items: flex-start; 
}

.booking-card { 
    background: white; 
    border-radius: 20px; 
    padding: 24px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
    overflow: hidden; 
    transition: all 0.3s ease;
    flex: 0 1 300px;
    aspect-ratio: 9 / 16;
    display: flex;
    flex-direction: column;
    text-decoration: none; /* For the link anchor */
    color: inherit;
}

.booking-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.card-header { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    gap: 15px; 
    text-align: center; 
    flex: 1; /* Push the footer note down */
}

.card-header img {
    width: 80px; 
    height: 80px; 
    object-fit: contain; 
    border-radius: 16px; 
    margin-bottom: 10px;
}

.card-header h3 { 
    margin: 0; 
    color: #2c5530; 
    font-size: 1.3rem; 
    font-weight: 700;
}

.card-summary { 
    color: #666; 
    font-size: 1rem; 
    line-height: 1.4;
    max-width: 220px;
}

.card-footer-note {
    margin-top: auto;
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    font-style: italic;
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
}

@media (max-width: 768px) {
    .booking-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .booking-card {
        width: 100%;
        max-width: 320px;
        flex: none;
        aspect-ratio: auto;
        min-height: 250px;
        padding: 20px;
    }

    .card-footer-note {
        padding-top: 10px;
        margin-top: 15px;
    }

    .card-header {
        height: auto;
    }
}

.card-cta { 
    margin-top:12px; 
    display:inline-block; 
}

.card-toggle-icon { 
    margin-left:0; 
    transition: transform 0.3s ease; 
    color:#2c5530; 
}

.card-toggle-icon.rotated { 
    transform: rotate(180deg); 
}

/* Small adjustments for the intro images inside cards */
.booking-card .meta { 
    display:flex; 
    flex-direction:column; 
    gap:6px; 
    align-items:center; 
}

@media (max-width:480px){ 
    .card-header img { width:44px; height:44px; } 
}


/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.aisla-markdown p,
.aisla-markdown ul,
.aisla-markdown ol {
  margin: 4px 0;
  padding-left: 18px; /* keeps bullet/number inside bubble */
}

.aisla-markdown li {
  margin-bottom: 2px;
  list-style-position: inside; /* ensures numbers/bullets stay inside */
}

.aisla-markdown strong {
  font-weight: 600;
}

.aisla-markdown em {
  font-style: italic;
}

.calendar-iframe{
    padding-top: 60px;
    text-align: left;
    color: #2c5530;
}


/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }
    
    .hero {
        background-size: cover;
        background-position: center;
        background-attachment: fixed;

    }
}

/* Video Loading Fallback */
.hero-video:not([src]) {
    display: none;
}

.hero-video[poster] {
    background-color: #2c5530;
    background-size: cover;
    background-position: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo-img {
        content: url("favicon.svg");
        height: 45px; /* favicon on mobile */
        width: auto;
    }
    .hero-video {
        /* Use mobile-optimized video if available */
        /* Fallback to desktop video with reduced quality */
        display: block;
        max-width: 100%;
    }
    
    .hero-overlay {
        /* Slightly darker overlay for mobile readability */
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    }
    
    /* Mobile transition adjustments */
    .hero-video.shrinking {
        width: 250px;
        height: 350px;
    }
    
    .hero-video.final-position {
        height: 350px;
    }
    
    .hamburger {
        display: flex;
        z-index: 10002;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: #fff;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: #fff;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 0; 
        flex-direction: column;
        background-color: #2c5530;
        width: 100vw;
        height: 100vh;
        text-align: left;
        padding: 10% 40px; /* 10% Top/Bottom, 40px Side */
        display: flex;
        justify-content: flex-start; /* Start from top with padding instead of forced center */
        z-index: 10001;
        overflow: hidden; /* Prevent scrolling as requested */

        /* Animation: Slide from Top */
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), 
                    opacity 0.4s ease, 
                    visibility 0.6s;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0.8rem 0;
        opacity: 0;
        transform: translateY(-15px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .nav-link {
        color: #fff !important;
        font-size: 1.6rem !important; /* Reduced from 2.2rem */
        font-weight: 700 !important;
        text-align: left;
        width: 100%;
        display: block;
    }

    /* Remove the underline effect on mobile for clean look */
    .nav-link::after {
        display: none;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered transition delays for menu items */
    .nav-menu.active li:nth-child(1) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.6s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.7s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.8s; }

    /* 'Book Now' as a button */
    .nav-menu li:last-child .nav-link {
        background-color: #f97803 !important;
        padding: 12px 30px !important;
        border-radius: 40px !important;
        display: inline-block !important;
        width: auto !important;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(249, 120, 3, 0.4) !important;
    }

    /* Style 'Book Now' as an orange button in mobile menu */
    .nav-menu li:last-child .nav-link {
        background-color: #f97803;
        color: white;
        padding: 10px 30px;
        border-radius: 25px;
        display: inline-block;
        font-weight: 700;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
        background: url(images/logo/hero-bg3.png);   
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;    
        background-size: cover;
        background-position: center;
    }




    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

   

    .accommodations {
        padding: 60px 0 40px;
        overflow: hidden;
    }

    .accom-carousel-dots {
        display: flex;
    }

    .accommodations-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 8px 20px 32px;
        margin: 0 -20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .accommodations-grid::-webkit-scrollbar {
        display: none;
    }

    .accommodation-card {
        flex: 0 0 92%;
        max-width: 380px;
        scroll-snap-align: center;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
    }

    .accommodation-card:hover {
        transform: none;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    }

    .card-image-hero {
        height: 220px;
    }

    .card-body {
        padding: 1.25rem 1.25rem 1rem;
    }

    .card-body h3 {
        font-size: 1.35rem;
    }

    .card-tagline {
        font-size: 0.9rem;
    }

    .amenities-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .card-actions {
        flex-direction: column;
        gap: 8px;
        padding-top: 1rem;
    }

    .card-btn-book {
        width: 100%;
        padding: 14px 20px;
        border-radius: 14px;
        font-size: 1rem;
    }

    .btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 10px;
        font-size: 0.9rem;
        background: rgba(44, 85, 48, 0.06);
        border-radius: 14px;
    }



    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 3x2 layout on desktop */
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        display: block;
        margin: 0 auto; /* centers the image horizontally */
        width: auto;    /* prevent it from stretching across the container */
        max-width: 80%; /* optional: keeps it responsive */
}

    .testimonials-grid-vlog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
    }

    .feature-video {
        position: relative;
        width: 100%;
        max-width: 400px;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background: #000;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        aspect-ratio: 3 / 5; /* slightly wider on mobile */

    }
    /* Portrait aspect ratio for about video */
    .about-video.portrait {
        aspect-ratio: 1/2;
        height: 100%;
        max-width: 280px;
    }



}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }



    .contact-form {
        padding: 1.5rem;
    }
}

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

/* Inertia Scroll Implementation */
* {
    scroll-behavior: smooth;
}

.payment-icons {
    text-align: center;
    margin-top: 2rem;
}

.payment-icons p {
    margin-bottom: 0.2rem;
    margin-left: 1rem;
    font-size: 1rem;
    color: #666;
    text-align: center;
}

.icon-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.icon {
    width: 50px; /* Adjust size as needed */
    height: auto;
    object-fit: contain;
}
