/* --- 1. GLOBAL RESET & VARIABLES --- */
:root {
    --primary-green: #82ca38;
    --dark-overlay: rgba(0, 0, 0, 0.4);
    --booking-bg: rgba(0, 0, 0, 0.8);
    --transition-speed: 1.2s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}
@media (max-width:991px){
    * p{
    text-align: justify;
}
}


/* 2. Force the Root and Body to stay within screen bounds */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* This is the primary fix for the sliding issue */
    position: relative;
}

.nav-links a.active {
    color: #82ca38 !important;
}

/* @media ( max-width:991px){
    * p{
    text-align: justify;
}
} */

body {
    overflow-x: hidden;
    /* background-color: #111; */
}

/* --- 2. PRELOADER --- */
/* The Full-Screen Overlay */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff; /* Matches your clean white site */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Keeps it above everything else */
    transition: opacity 0.5s ease;
}

/* The Improved Spinner */
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(130, 202, 56, 0.2); /* Faint green track */
    border-top: 6px solid #82ca38; /* Your brand green */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Class to trigger the fade out */
.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* --- 3. NAVIGATION --- */
.navbar {
    position: absolute; /* Start as absolute to overlay the hero */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: linear-gradient(to bottom,rgba(206, 205, 205, 0.817) 2%, transparent);
    /* Transition for smooth color change and padding shrink */
    transition: background-color 0.4s ease, padding 0.4s ease, transform 0.5s ease;
}

/* This is the state when the user HAS NOT scrolled yet */
/* It ensures the navbar stays at the top of the page only */
.navbar:not(.scrolled) {
    position: absolute;
}

/* --- THE "POP UP" STICKY STATE --- */
.navbar.scrolled {
    position: fixed; /* Change to fixed to stay at the top of the viewport */
    background-color: #ffffff; 
    padding: 12px 0; 
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); */
    /* Trigger the pop-up animation */
    animation: slideDown 0.5s ease-out forwards;
    color: #000 !important;
}



/* Styling for the new logo image */
.logo-text img {
    height: 60px; /* Adjust this value to set the height of your logo */
    width: auto;  /* Maintains aspect ratio */
    display: block;
    transition: height 0.4s ease; /* Smoothly shrinks when navbar scrolls */
}

/* Shrink logo image when the navbar is in 'scrolled' state */
.navbar.scrolled .logo-text img {
    height: 45px; /* Smaller height when sticky */
}



.nav-container {
    max-width: 100%;
    /* max-width: 1250px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-text {
    color: white;
    font-size: 2.8rem;
    font-family: 'Georgia', serif; /* Replace with a Script font if available */
    font-style: italic;
    line-height: 1;
}

.nav-stars {
    color: var(--primary-green);
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 5px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: 0.3s;
}


.nav-links a:hover, .nav-links a.active {
    color: var(--primary-green);
}


/* Animation to make the bar "pop" or slide down from the top */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar.scrolled .logo-text {
    font-size: 2.2rem;
}

.navbar.scrolled .nav-links li a{
    color: #000;
}

/* Ensures the color stays when the navbar becomes sticky/pops up */
.navbar.scrolled .nav-links li a.active {
    color: #76c733 !important;
}

.book-btn-small {
    background: var(--primary-green);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.book-btn-small:hover {
    background: #82ca38;
}


.menu-footer {
    margin-top: 50px;
    text-align: center;
    opacity: 0;
    display: none;
}

.nav-links.active .menu-footer {
    opacity: 1;
    transition: 0.8s ease 0.6s;
}

.menu-footer p {
    color: #82ca38;
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.menu-socials {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.menu-socials a {
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.6;
}




@media screen and (max-width: 991px) {
    /* 1. Header Layout */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        z-index: 3000;
    }

    /* 2. Half-Screen Drawer */
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 60%;    /* Elegant Half-screen width */
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start; /* Left aligned for readability */
        padding: 0 40px; 
        gap: 25px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        box-shadow: -15px 0 50px rgba(0,0,0,0.6);
    }

    /* Drawer Active State */
    .nav-links.active {
        right: 0;
    }



    /* 3. Tiny & Elegant Typography */
    .nav-links li {
        list-style: none;
        opacity: 0;
        transform: translateX(20px);
        transition: 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links li a {
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        padding: 10px 0;
    }
    .nav-links li.dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    /* Active indicator (Simple Green Line) */
    .nav-links li a.active,
    .nav-links li a:hover {
        color: #82ca38 !important;
    }

    /* 4. Hamburger & Close Button */
    /* .hamburger {
        display: block;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
        z-index: 3001;
         transition: 0.3s ease;
        font-family: sans-serif;
    } */

    .navbar.scrolled .hamburger {
        color: #000;
    }

    /* Ensure X stays white on the dark drawer */
    .nav-links.active ~ .hamburger {
        color: #fff !important;
    }

  .dropdown-menu {
        display: block !important;    /* Always visible as requested */
        position: static !important;  /* Stops it from floating to the left */
        visibility: visible !important;
        /* opacity: 1 !important; */
        box-shadow: none !important;        /* Remove the box shadow */
        padding-left: 20px !important;    /* Indent it to show it belongs to 'Container' */
        width: 100% !important;
        transform: none !important;       /* Remove any hover animations/shifts */
        background-color: #81ca3881 !important;
        margin-top: 40px !important;

    }
.dropdown-menu::before {
    margin-top: 20px;
    display: none;
}
    .dropdown-menu li {
        margin-bottom: 8px;
    }

    /* .dropdown-menu li a {
        font-size: 0.9rem !important;
        color: #fff !important; 
         text-transform: uppercase;
        display: block;
    } */

     
    /* 5. Menu Footer Socials */
    .menu-footer {
        display: block;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .menu-footer p {
        font-size: 0.6rem;
        color: #82ca38;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .menu-socials {
        display: flex;
        gap: 20px;
    }

    .menu-socials a {
        color: #fff;
        font-size: 1rem;
        opacity: 0.5;
    }

    /* Staggered Entrance */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-cta { display: none; }
}

@media (max-width: 992px) {


    /* Optional: Add a chevron icon via CSS to show it's clickable */
    .nav-links li.dropdown > a::after {
        content: '\f078'; 
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 10px;
        font-size: 12px;
        transition: transform 0.3s;
    }

    /* Rotate chevron when open */
    .nav-links li.dropdown.open > a::after {
        transform: rotate(180deg);
        color: #8cc63f;
    }
}

 @media (max-width: 992px) {
    /* 1. Hide the menu by default and reset positioning */
    /* .nav-links li.dropdown .dropdown-menu {
        display: none !important;  
        position: static !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding-left: 20px !important;
        width: 100% !important;
        background-color: transparent !important;
        box-shadow: none !important;
        margin-top: 10px !important;
    } */

    /* 2. SHOW the menu when the .open class is added by JS */
    /* .nav-links li.dropdown.open > .dropdown-menu {
        display: block !important;
    } */

    /* 3. Ensure text is visible and clickable */
    .dropdown-menu li a {
        color: #ffffff !important;
        padding: 12px 0 !important;
        display: block !important;
    }

    /* 4. Stop hover from interfering on mobile */
    .dropdown:hover .dropdown-menu {
        display: none !important;
    }
    .nav-links li.dropdown.open:hover > .dropdown-menu {
        display: block !important;
    }
}

 

 @media screen and (max-width: 991px) {
    /* 1. General Dropdown Menu Setup (Excluding Tent) */
    .nav-links li.dropdown:not(.tent-dropdown) .dropdown-menu {
        display: none !important;
        position: static !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 0 0 0 20px !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* 2. Show Menu ONLY when parent has .open class (Excluding Tent) */
    .nav-links li.dropdown.open:not(.tent-dropdown) > .dropdown-menu {
        display: block !important;
        margin-top: 15px !important;
        margin-bottom: 10px !important;
    }

    /* 3. Chevron Icon - ONLY added to actual dropdowns (Excluding Tent) */
    .nav-links li.dropdown:not(.tent-dropdown) > a::after {
        content: '\f078'; 
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 10px;
        font-size: 12px;
        transition: transform 0.3s;
        display: inline-block;
    }

    /* 4. Chevron rotation on Open (Excluding Tent) */
    .nav-links li.dropdown.open:not(.tent-dropdown) > a::after {
        transform: rotate(180deg);
    }

    /* 5. Tent Specific Reset 
       Ensures the Tent link looks like a normal top-level nav item */
    .nav-links li.tent-dropdown .dropdown-menu {
        display: none !important; /* Always hidden on mobile */
    }

    .nav-links li.tent-dropdown > a::after {
        display: none !important; /* Ensure no arrow appears */
    }
}







/* 1. Desktop View (Default) */
.hamburger {
    display: none; /* This hides the menu icon on desktop */
    cursor: pointer;
    font-size: 2rem;
    color: white;
}

.nav-links {
    display: flex; /* Shows links in a row on desktop */
    gap: 25px;
    list-style: none;
}

/* 2. Mobile View (Triggers at 768px or smaller) */
@media (max-width: 768px) {
    .hamburger {
        display: block; 
    }
    .contact-details p{
        text-align: center;
    }
    .quick-links{
        margin: 0 !important;
    }
 

    /* .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.9);
    } */

    .nav-links.active {
        display: flex; 
    }
}









/* --- 4. HERO SLIDER --- */

.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: #111; /* Dark background so you can see if image fails */
}

.slider, .slides {
    height: 100%;
    width: 100%;
}

.slides {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
}

.slide {
    flex: 0 0 100%; /* Fixes the "invisible image" issue */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Navigation Buttons - Perfectly Square */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    /* Equal width and height make it a square */
    width: 60px; 
    height: 60px;
    
    /* Centering the arrow inside the square */
    display: flex;
    justify-content: center;
    align-items: center;
    
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 100;
    font-size: 1.5rem; /* Size of the arrow */
    transition: all 0.3s ease;
    border-radius: 4px; /* Optional: slight rounding for a modern look */
}

.nav-btn:hover {
    background: #82ca38; /* Your brand green */
    transform: translateY(-50%) scale(1.1); /* Slight pop on hover */
}

.prev { left: 20px; } /* Added some breathing room from the edge */
.next { right: 20px; }


.hero-stars {
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: white;
    opacity: 0.8;
}

/* --- 5. BOOKING BAR --- */
.booking-container {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 20;
}

.booking-bar {
    background: var(--booking-bg);
    display: flex;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.input-group {
    flex: 1;
    padding: 20px 25px;
    border-right: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.input-group:last-of-type {
    border-right: none;
}

.input-group label {
    font-size: 0.65rem;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: bold;
}

.input-group input, 
.input-group select {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

.book-btn-large {
    background: var(--primary-green);
    border: none;
    color: white;
    padding: 0 45px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.book-btn-large:hover {
    background: #6fb32f;
}

/* --- Hero RESPONSIVE DESIGN --- */

/* --- HERO RESPONSIVE FIXES --- */

@media (max-width: 991px) {
    /* 1. Adjust Hero Height for Mobile */
    .hero {
        height: 100vh; /* Keeps it full screen, or change to 80vh if you want it shorter */
    }

    /* 2. Resize Navigation Buttons */
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.6); /* Slightly darker for better visibility */
        margin-top: 70px;
    }

    .prev { left: 10px; }
    .next { right: 10px; }

    /* 3. Booking Bar Transformation */
    .booking-container {
        bottom: 40px; /* Bring it up slightly from the bottom */
        width: 85%;
    }

    .booking-bar {
        flex-direction: column; /* Stacks the inputs vertically */
        border-radius: 8px;
        overflow: hidden;
    }

    .input-group {
        border-right: none; 
        border-bottom: 1px solid #333; /* Separator lines between stacked items */
        padding: 15px 20px;
    }

    .input-group label {
        font-size: 0.6rem;
    }

    .input-group input, 
    .input-group select {
        font-size: 0.85rem;
        padding: 5px 0;
    }

    /* 4. Large Button Adjustment */
    .book-btn-large {
        width: 100%;
        padding: 18px; /* Makes it a full-width block button at the bottom */
        font-size: 1rem;
    }
}

/* Extra tweak for small mobile heights (landscape phones) */
@media (max-height: 500px) {
    .booking-container {
        position: relative;
        bottom: 0;
        margin: 20px auto;
        transform: none;
        left: 0;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
    }
}







/* About section */

.about-tribute {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-tribute .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

/* Text Section */
.about-text {
    flex: 1;
}

.about-text h5 {
    color: #82ca38;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.about-text1 h5 {
    color: #82ca38;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-top: -70px;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 400;
    color: #333;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-text p {
    color: #777;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 500px;
}

/* Gallery Section */
.about-gallery {
    flex: 1;
    position: relative;
    height: 600px; /* Essential to hold the absolute images */
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Positioning the overlapping images */
.main-img {
    position: absolute;
    width: 450px;
    height: 350px;
    bottom: 0;
    left: 0;
    z-index: 4;

}

.top-img {
    position: absolute;
    width: 350px;
    height: 250px;
    top: 0;
    right: 50px;
    z-index: 1;
}

.side-img {
    position: absolute;
    width: 250px;
    height: 400px;
    top: 100px;
    right: -20px;
    z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .about-tribute .container {
        flex-direction: column;
        text-align: center;
    }
    .about-gallery {
        width: 100%;
        height: 500px;
        margin-top: 50px;
    }
    .main-img { width: 300px; height: 400px; }
    .top-img { width: 250px; }
    .side-img { width: 180px; right: 0; }
}
/* --- MODERN EDITORIAL MOBILE STYLE --- */
@media (max-width: 991px) {
    .about-tribute {
        padding: 60px 0 0 0; /* Extra bottom padding for overlap */
        overflow: visible;
    }

    .about-tribute .container {
        display: block; /* Stack text then gallery */
        position: relative;
    }

    /* 1. Text Section: Full width for readability */
    .about-text {
        width: 100%;
        text-align: left;
        padding-bottom: 40px;
    }

    .about-text h2 {
        font-size: 2.4rem;
        width: 90%;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 0.9rem;
        width: 100%;
        color: #555;
        border-left: 2px solid var(--primary-green); /* Premium accent line */
        padding-left: 15px;
    }

    /* 2. Gallery Section: Layered Depth */
    .about-gallery {
        width: 100%;
        height: 380px;
        margin-top: 30px;
        position: relative;
    }

    /* The Hero Image of the gallery */
    .main-img {
        width: 85%;
        height: 280px;
        top: 0;
        left: 0;
        z-index: 3;
        box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    }

    /* The accent images that "Pop" */
    .top-img {
        width: 50%;
        height: 150px;
        top: -40px; /* Overlaps UP into the text area */
        right: 0;
        z-index: 4;
        border: 4px solid #fff; /* White frame to separate layers */
    }

    .side-img {
        width: 40%;
        height: 200px;
        bottom: -60px; /* Overlaps DOWN into the next section */
        right: 10%;
        z-index: 5;
        border: 4px solid #fff;
    }

    /* Subtle shadow for all mobile images */
    .img-wrapper img {
        border-radius: 2px;
    }
}

/* Fix for the Navbar Logo based on your image */
@media (max-width: 991px) {
    .nav-container {
        padding: 10px 20px;
    }
    
    .logo-text img {
        height: 35px; /* Matches the clean NIRA look */
    }
}





/* after About */


.rooms-suites {
    width: 100%;
    background-color: #fff;
}

.suite-row {
    display: flex;
    min-height: 500px;
    align-items: center;
}

/* Flips the image and text for the second row */
.row-reverse {
    flex-direction: row-reverse;
}

.suite-image, .suite-info {
    flex: 1;
    width: 50%;
    height: 500px;
}

/* Image container logic */
.suite-image {
    position: relative;
    overflow: hidden;
}

.suite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* The vertical text on the side of the image */
.vertical-label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    color: #fff;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    white-space: nowrap;
    z-index: 5;
}

.row-reverse .vertical-label {
    left: auto;
    right: -105px; /* Adjust based on text length */
}

/* Text Content Area */
.suite-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
}

.suite-info h2 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 25px;
}

.suite-info p {
    color: #777;
    line-height: 1.8;
    max-width: 450px;
    margin-bottom: 35px;
}

/* Black Button Style */
.check-btn {
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.check-btn:hover {
    background-color: var(--primary-green);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .suite-row, .row-reverse {
        flex-direction: column;
    }
    .suite-image, .suite-info {
        width: 100%;
        height: auto;
    }
    .suite-info {
        padding: 40px 20px;
    }
}


/* --- QUALITY SECTION: ARCHITECTURAL OVERLAY STYLE --- */
@media (max-width: 991px) {
    .rooms-suites {
        padding: 20px 0;
        background-color: #f9f9f9; /* Subtle contrast background */
    }
    .about-text1 h5{
        position: absolute;
        top: -230px;
        right: 110px;
    }

    .suite-row {
        flex-direction: column !important; /* Force stack for all rows */
        min-height: auto;
        margin-bottom: 60px; /* Space between the "cards" */
        position: relative;
        margin-top: 30px;
    }

    /* 1. Image Styling */
    .suite-image {
        width: 90% !important; /* Narrower than screen to show depth */
        height: 300px !important;
        margin: 0 auto;
        border-radius: 8px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        z-index: 1;
    }

    /* 2. Floating Info Box */
    .suite-info {
        width: 85% !important;
        background: #ffffff;
        margin: -50px auto 0 auto; /* Pulls the box UP over the image */
        padding: 30px 20px !important;
        z-index: 2; /* Sits on top of the image */
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        border-radius: 4px;
        position: relative;
    }

    /* Adjusting Typography for Mobile */
    .suite-info h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
        font-weight: 400;
    }

    .suite-info p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0; /* Clean look */
    }

    /* 3. Vertical Label Tweak */
    .vertical-label {
        left: 10px;
        font-size: 0.6rem;
        padding: 5px 12px;
        background: var(--primary-green); /* Brand color for better pop on mobile */
    }

    /* Reset row-reverse behavior for labels on mobile */
    .row-reverse .vertical-label {
        right: auto;
        left: 10px;
        transform: translateY(-50%) rotate(-90deg);
    }
}

/* Extra polish for very small screens */
@media (max-width: 480px) {
    .suite-image {
        width: 95% !important;
        height: 250px !important;
    }
    .suite-info {
        width: 90% !important;
        padding: 25px 15px !important;
    }
    .suite-info h2 {
        font-size: 1.5rem !important;
    }
}








/* After Room Suite */

.amenities-gallery {
    display: flex;
    flex-wrap: wrap;
    background-color: #1a1a1a; /* Dark background as seen in screenshot */
    padding: 20px 10px;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
}

.amenity-card {
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    /* height: 250px; */
    overflow: hidden;
    cursor: pointer;
}

.amenity-card img {
    width: 100%;
    height: 20vh;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect: Zoom image slightly */
.amenity-card:hover img {
    transform: scale(1.1);
}

/* Dark Overlay for the Title */
.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2); /* Light initial overlay */
    transition: background 0.3s ease;
}

.amenity-card:hover .amenity-overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* The Label Button */
.amenity-link {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.amenity-link:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

/* Responsive: 2x2 grid on tablets, 1 column on mobile */
@media (max-width: 992px) {
    .amenity-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .amenity-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 991px) {
    .amenities-gallery {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: hidden; /* Important: Hides the jumpy scrollbar */
        padding: 40px 0;
        gap: 20px;
        background-color: #111;
        /* Optimizes performance for the animation */
        scroll-behavior: auto; 
    }

    .amenity-card {
        flex: 0 0 70vw; 
        height: 400px;
        position: relative;
        border-radius: 4px;
        transform: translateZ(0); /* Hardware acceleration for smoother movement */
    }

    .amenity-card img {
        height: 100% !important;
        filter: brightness(0.6);
        object-fit: cover;
    }

    .amenity-link {
        background: transparent !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.4);
        padding: 10px 30px;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
}





/* --- START SECTION: ELEGANT SUITES --- */
/* --- Section Container --- */
.luxury-features {
    padding: 100px 8%;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Poppins', sans-serif; /* Recommended for a clean look */
}

.features-header {
    margin-bottom: 70px;
}

.features-header h5 {
    color: #82ca38; /* Brand Gold Color */
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.features-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #82ca38;
    margin: 20px auto 0;
}

/* --- The 3-Column Grid Fix --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 60px 40px; /* Vertical and Horizontal spacing */
    max-width: 1200px;
    margin: 0 auto;
}

/* --- The Alignment Magic (Flexbox) --- */
.feature-item {
    display: flex;
    flex-direction: column; /* Stacks content vertically */
    align-items: center;    /* Centers horizontally */
    text-align: center;
    padding: 20px;
    height: 100%;           /* Ensures all cards in the same row match height */
}

.feature-icon {
    margin-bottom: 25px;
    color: #1a1a1a;
    height: 70px;           /* Fixed height for icon area */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
    min-height: 3.5rem;    /* Keeps headings aligned even if 1 vs 2 lines */
    display: flex;
    align-items: center;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    
    /* Flex-grow makes the paragraph fill all extra space */
    flex-grow: 1; 
    max-width: 320px;
}

/* --- Read More Button --- */
.read-more-btn {
    /* margin-top: auto pushes the button to the absolute bottom of the card */
    margin-top: auto;      
    background-color: #1a1a1a;
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 35px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
    display: inline-block;
}

.read-more-btn:hover {
    background-color: #82ca38;
    border-color: #5c8d2a;
    color: #fff !important;
}
/* Animations */
.feature-item.show { opacity: 1; transform: translateY(0); }
.feature-item:hover .feature-icon img { filter: grayscale(0%); transform: scale(1.05); }
.read-more-btn:hover { background: #82ca38; }



/* --- END SECTION: ELEGANT SUITES --- */

/* --- WHY CHOOSE US: ANIMATED BENTO STYLE --- */
@media (max-width: 991px) {
    .luxury-features {
        padding: 60px 15px;
        background: #fcfcfc;
        overflow: hidden; /* Prevents bounce from causing scrollbars */
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .feature-item {
        background: #ffffff;
        padding: 25px 15px;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        
        /* Animation Start State */
        opacity: 0;
        transform: translateY(60px) scale(0.8) rotate(-3deg);
        transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        will-change: transform, opacity;
    }

    /* Triggered state */
    .feature-item.reveal {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }

    /* Staggered Bento Offset */
    .feature-item.reveal:nth-child(even) {
        transform: translateY(20px) scale(1) rotate(0deg);
    }

    /* Icon & Text Polish */
    .feature-icon i { font-size: 2rem !important; color: #82ca38; margin-bottom: 10px; }
    .feature-item h3 { font-size: 0.95rem !important; font-weight: 700; margin-bottom: 8px; }
    .feature-item p { 
        font-size: 0.75rem; 
        color: #777; 
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}












/* Categories */

/* --- Section & Header Styling --- */
.cat-shelf-section {
    padding: 100px 0;
    background-color: #ffffff;
    text-align: center;
}

.cat-shelf-header {
    margin-bottom: 60px;
}

.cat-shelf-header h5 {
    color: #82ca38; /* Brand Gold */
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.cat-shelf-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
}

.cat-shelf-line {
    width: 60px;
    height: 3px;
    background: #82ca38;
    margin: 20px auto 0;
}

/* --- Horizontal Scroll Container --- */
.cat-shelf-container {
    display: flex;
    overflow-x: auto;
    padding: 20px 0px;
    gap: 40px;
    scroll-behavior: smooth;
    /* Hide scrollbar */
    scrollbar-width: none; 
}

.cat-shelf-container::-webkit-scrollbar {
    display: none;
}

/* --- Category Card Style --- */
.cat-card {
    flex: 0 0 320px; /* Fixed width for horizontal layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.cat-image-box {
    width: 100%;
    height: 400px; /* Tall architectural style images */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 25px;
}

.cat-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.cat-card:hover .cat-image-box img {
    transform: scale(1.1);
}

/* --- Letter Animation Core --- */
.cat-title-animate {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    gap: 2px;
}

.cat-title-animate span {
    display: inline-block;
    transition: 0.3s ease;
}

/* Hover Stagger Animation */
.cat-card:hover .cat-title-animate span {
    color: #82ca38;
    animation: cat-pop 0.4s ease forwards;
}

/* Delay for each letter to create the 'wave' effect */
.cat-card:hover .cat-title-animate span:nth-child(1) { animation-delay: 0.0s; }
.cat-card:hover .cat-title-animate span:nth-child(2) { animation-delay: 0.05s; }
.cat-card:hover .cat-title-animate span:nth-child(3) { animation-delay: 0.1s; }
.cat-card:hover .cat-title-animate span:nth-child(4) { animation-delay: 0.15s; }
.cat-card:hover .cat-title-animate span:nth-child(5) { animation-delay: 0.2s; }
.cat-card:hover .cat-title-animate span:nth-child(6) { animation-delay: 0.25s; }
.cat-card:hover .cat-title-animate span:nth-child(7) { animation-delay: 0.3s; }


/* --- CATEGORY SHELF: AUTO-SCROLL & BUTTON --- */
.cat-shelf-container {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding: 40px;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: default;
}

.cat-shelf-container::-webkit-scrollbar {
    display: none;
}

/* EXPLORE MORE CARD */
.explore-more-card {
    flex: 0 0 320px;
    height: 400px; /* Matches .cat-image-box */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #1a1a1a; /* Dark contrast for the button */
    border-radius: 8px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.explore-more-card i {
    font-size: 2.5rem;
    color: #82ca38; /* Brand Gold */
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.explore-link {
    color: #fff;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    text-decoration: none;
}

.explore-more-card:hover {
    background: #82ca38;
}

.explore-more-card:hover i {
    color: #fff;
    transform: scale(1.2);
}

.explore-more-card:hover .explore-link {
    color: #fff;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .explore-more-card {
        flex: 0 0 280px;
        height: 350px;
    }
}

@keyframes cat-pop {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}


/* --- PORTFOLIO: CINEMATIC STRIP GLIDE --- */
@media (max-width: 991px) {
    .cat-shelf-section {
        padding: 40px 0;
        background: #000;
        overflow: hidden; /* Important to hide the cards as they exit screen */
    }

    .cat-shelf-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 15px;
        padding: 10px 0;
        /* Disable native scroll to let our GPU transform handle it */
        overflow: visible !important;
        will-change: transform;
        cursor: grab;
    }

    .cat-card {
        /* Prevents the browser from squishing your cards */
        flex: 0 0 75vw !important; 
        height: 180px; 
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        background: #111;
    }

    .cat-image-box {
        width: 100%;
        height: 100%;
        margin-bottom: 0;
    }

    .cat-image-box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        filter: brightness(0.4);
        transition: transform 1s ease, filter 0.5s ease;
    }

    .cat-title-animate {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 5;
        margin: 0;
        pointer-events: none;
    }

    .cat-title-animate span {
        color: #fff;
        font-size: 1.3rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        display: inline-block;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    /* Triggered by JS when card is centered */
    .cat-card.reveal .cat-title-animate span {
        color: #82ca38;
        transform: scale(1.15);
    }

    .cat-card.reveal .cat-image-box img {
        transform: scale(1.1);
        filter: brightness(0.6);
    }
}






/* --- START SECTION: FULL-WIDTH GUEST BANNER --- */
.booking-banner-full {
    width: 100%;
    height: 400px; 
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/banner-2.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}


/* Container Koncept - Design Grid Fix */
.rooms-grid-section {
    padding: 100px 10%;
    background-color: #f8f8f8;
    text-align: center;
}



/* Force 3 Columns and prevent collapse */
.rooms-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns */
    gap: 30px;
    align-items: stretch; /* Ensures all cards are same height */
}

.room-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    opacity: 0; 
    transform: translateY(20px);
}

.room-image {
    width: 100%;
    height: 250px; /* Fixed height for image alignment */
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Centers all content horizontally */
}

.room-details a{
    text-decoration: none;
}

.room-details h3 {
   font-size: 18px;
    color: #1a1a1a;
    font-weight: 400;
     letter-spacing: 1px;
}



/* Center the Footer & Button */
.room-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.book-price-btn {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 35px;
    font-size: 0.75rem;
    /* font-weight: bold; */
    letter-spacing: 2px;
    transition: 0.3s;
    border: 1px solid #1a1a1a96;
    text-transform: uppercase;
    /* margin-bottom: 15px; */
}



.book-price-btn:hover {
    background: #1a1a1a; /* Brand Gold */
    color: #fff;
}

.room-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.room-icons i {
    color: #82ca38;
    font-size: 1rem;
}

/* Animation Trigger */
.room-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Fix */
@media (max-width: 1024px) {
    .rooms-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .rooms-container { grid-template-columns: 1fr; }
}


/* --- Header Spacing --- */
.section-header {
    text-align: center;
    margin-bottom: 80px; /* Increased gap between heading and images */
}

.section-header h2 {
    margin-top: 10px;
    margin-bottom: 25px; /* Space between the Title and the Line */
}

.header-line {
    width: 60px;
    height: 2px;
    background: #82ca38;
    margin: 0 auto;
}

/* --- Grid Alignment --- */
.rooms-container {
    max-width: 1200px;
    margin: 50px auto 0; /* Extra 50px top margin to ensure separation */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; /* Space between the images themselves */
}

/* --- Card Balancing --- */
.room-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee; /* Subtle border for definition */
}

.room-details {
    padding: 10px;
    text-align: center;
}

.room-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 15px; /* Space between Book Now button and Icons */
}

/* --- Explore More Section --- */
.view-all-container {
    text-align: center;
    margin-top: 80px; /* Large gap from the grid */
   
}

.view-all-btn {
    display: inline-block;
    padding: 15px 45px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid #1a1a1a; /* Clean industrial border */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Hover Animation: Fill from bottom */
.view-all-btn:hover {
    color: #82ca38;
    /* background-color: #82ca38;  */
    /* Brand Gold fill on hover */
    border-color: #82ca38;
    background-color: #fff;
    letter-spacing: 5px; /* Elegant expansion effect */
    /* box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2); */
}

/* Optional: Add a subtle underline or line before/after */
.view-all-container::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #ccc;
    margin: 0 auto 30px;
}

/* --- OUR DESIGNS: FULL MOBILE OPTIMIZATION --- */
@media (max-width: 991px) {
    /* 1. Section Background & Spacing */
    .rooms-grid-section {
        padding: 60px 15px;
        background-color: #fcfcfc;
        overflow: hidden; /* Clips any 3D rotation overlaps */
    }

    /* 2. Header Polish */
    .section-header {
        margin-bottom: 40px;
    }
    .section-header h5 {
        font-size: 0.75rem;
        letter-spacing: 4px;
        color: #82ca38;
    }
    .section-header h2 {
        font-size: 1.8rem;
        font-weight: 800;
    }

    /* 3. The 3D Train Track */
    .rooms-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 Columns is the most modern mobile look */
        gap: 15px;
        perspective: 1200px; /* Essential for the 3D depth effect */
        max-width: 100%;
        margin: 0 auto;
    }

    /* 4. The Card Start State (Hidden & Tilted) */
    .room-card {
        background: #ffffff;
        border: none !important;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        display: flex;
        flex-direction: column;
        
        /* 3D Transform Start */
        opacity: 0;
        transform: rotateX(-45deg) translateY(60px) scale(0.85);
        transform-origin: top center;
        transition: 
            opacity 0.8s ease, 
            transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        will-change: transform, opacity;
    }

    /* 5. The Magazine Stagger Logic */
    /* Pushes the right-side cards down for a luxury layout */
    .room-card:nth-child(even) {
        margin-top: 30px;
    }

    /* 6. Active Animation State (Triggered by JS) */
    .room-card.visible {
        opacity: 1;
        transform: rotateX(0deg) translateY(0) scale(1);
    }

    /* Special case: Ensure even cards keep their vertical offset when visible */
    .room-card.visible:nth-child(even) {
        transform: rotateX(0deg) translateY(30px) scale(1);
    }

    /* 7. Image & Content Polish */
    .room-image {
        width: 100%;
        height: 160px; /* Fixed height for sharp alignment */
        border-radius: 12px 12px 0 0;
        overflow: hidden;
    }

    .room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s ease;
    }

    .room-card.visible .room-image img {
        transform: scale(1.05); /* Subtle zoom when it flips in */
    }

    .room-details {
        padding: 15px 10px;
        text-align: center;
    }

    .room-details h3 {
        font-size: 0.8rem !important;
        font-weight: 800;
        letter-spacing: 1px;
        margin-bottom: 12px;
        color: #1a1a1a;
    }

    .room-footer {
        border-top: 1px solid #f0f0f0;
        padding-top: 12px;
        width: 100%;
    }

    .book-price-btn {
        display: block;
        width: 100%;
        padding: 10px 0;
        font-size: 0.65rem;
        background: #82ca38;
        color: #fff;
        border-radius: 6px;
        letter-spacing: 1.5px;
        max-width: 100px;
    }

    /* 8. View All Button */
  

    .view-all-btn {
        width: 85%;
        border-radius: 50px;
        font-size: 0.75rem;
        padding: 14px 0;
        border: 2px solid #1a1a1a;
        transition: background 0.5s ease;
    }

    .view-all-btn:hover{
        background-color: #82ca38;
    }

    .view-all-container{
        margin-top: 40px !important;
    }
}










 
.premium-testimonial-section {
    position: relative;
    width: 100%;
    height: 75vh;
    background: url('images/testimonial-image.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Strong overlay to avoid vagueness */
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-content-box {
    width: 100%;
    max-width: 900px;
    text-align: center;
    position: relative;
}

.testimonial-label {
    color: var(--primary-green);
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* TRANSITION CONTAINER */
.testimonial-transition-container {
    position: relative;
    min-height: 250px; /* Adjust based on longest text */
    display: flex;
    justify-content: center;
}

.testimonial-card {
    position: absolute; /* Stack them on top of each other */
    top: 0;
    width: 100%;
    opacity: 0; /* Hidden by default */
    transform: translateY(20px); /* Move down slightly */
    transition: opacity 0.8s ease, transform 0.8s ease;
    visibility: hidden;
    padding: 0 20px;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    z-index: 2;
}

.testimonial-text {
    color: #fff;
    font-size: 2.2rem;
    font-family: 'Georgia', serif;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.testimonial-author {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 4px;
    font-weight: 600;
}

/* DASHES */
.dash-indicators {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dash {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.4s ease;
}

.dash.active {
    background: var(--primary-green);
    width: 60px;
}
/* --- PREMIUM TESTIMONIALS: CINEMATIC REVEAL --- */
@media (max-width: 991px) {
    .premium-testimonial-section {
        height: auto;
        min-height: 80vh; /* Better for varying text lengths */
        padding: 80px 20px;
        background-attachment: scroll; /* Fixed bg is buggy on mobile */
        display: flex;
        align-items: center;
    }

    .testimonial-content-box {
        background: rgba(0, 0, 0, 0.4); /* Darker frosting for readability */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 50px 25px;
        width: 100%;
        overflow: hidden; /* Clips the sliding text */
    }

    .testimonial-label {
        font-size: 0.7rem;
        letter-spacing: 5px;
        color: #82ca38; /* Brand Green */
        margin-bottom: 30px;
    }

    .testimonial-transition-container {
        min-height: 220px; /* Adjust based on your text length */
        perspective: 1000px;
    }

    .testimonial-card {
        position: absolute;
        width: 100%;
        /* Hidden State: Slide right and blur */
        opacity: 0;
        visibility: hidden;
        transform: translateX(40px) scale(0.95);
        filter: blur(10px);
        transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testimonial-card.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) scale(1);
        filter: blur(0);
        z-index: 5;
    }

    /* Outgoing state: When card loses 'active', it slides left */
    .testimonial-card:not(.active) {
        transform: translateX(-40px) scale(0.95);
    }

    .testimonial-text {
        font-size: 1.35rem !important;
        line-height: 1.6;
        color: #ffffff;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        margin-bottom: 25px;
        text-shadow: none;
    }

    .testimonial-author {
        font-size: 0.8rem;
        letter-spacing: 3px;
        color: #82ca38;
        text-transform: uppercase;
    }

    /* Modern Minimalist Indicators */
    .dash-indicators {
        margin-top: 40px;
        gap: 10px;
    }

    .dash {
        width: 12px;
        height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        transition: all 0.4s ease;
    }

    .dash.active {
        width: 35px;
        background: #82ca38;
    }
}











/* Contact */


.get-in-touch {
    padding: 100px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    background: #fff;
    box-shadow: 0 50px 100px rgba(0,0,0,0.05);
}

/* LEFT PANEL */
.contact-info-panel {
    flex: 1;
    background: #1a1a1a;
    color: #fff;
    padding: 80px;
}

.contact-info-panel h5 {
    color: var(--primary-green);
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.contact-info-panel h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.contact-divider {
    width: 40px;
    height: 2px;
    background: var(--primary-green);
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-item p {
    color: #999;
    font-size: 1rem;
}

/* RIGHT PANEL (FORM) */
.contact-form-panel {
    flex: 1.2;
    padding: 80px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.contact-form-panel input, 
.contact-form-panel textarea {
    width: 100%;
    padding: 15px 0;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form-panel input:focus, 
.contact-form-panel textarea:focus {
    border-bottom: 1px solid #1a1a1a;
}

.submit-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.submit-btn:hover {
    background: var(--primary-green);
}

/* ANIMATION STATES */
.reveal-text, .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.is-visible .reveal-text, 
.is-visible .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay */
.is-visible .reveal-item:nth-child(4) { transition-delay: 0.2s; }
.is-visible .reveal-item:nth-child(5) { transition-delay: 0.4s; }
.is-visible .reveal-item:nth-child(6) { transition-delay: 0.6s; }

/* --- CONTACT: LAYERED PREMIUM MOBILE STYLE --- */
@media (max-width: 991px) {
    .get-in-touch {
        padding: 60px 0;
        background-color: #000; /* Darker background for depth */
    }

    .contact-container {
        flex-direction: column; /* Stack vertically */
        background: transparent;
        box-shadow: none;
        padding: 0 15px;
    }

    /* 1. The Header Info Panel */
    .contact-info-panel {
        padding: 50px 30px;
        border-radius: 20px 20px 0 0;
        text-align: center;
        z-index: 2;
    }

    .contact-info-panel h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-divider {
        margin: 0 auto 40px;
    }

    .info-item {
        flex-direction: column; /* Stack icon above text */
        align-items: center;
        gap: 10px;
        margin-bottom: 35px;
    }

    .info-item i {
        font-size: 1.2rem;
        background: rgba(130, 202, 56, 0.1);
        padding: 15px;
        border-radius: 50%;
    }

    .info-item p {
        font-size: 0.9rem;
        max-width: 250px;
        margin: 0 auto;
    }

    /* 2. The Form Panel (Overlapping Card) */
    .contact-form-panel {
        background: #ffffff;
        padding: 40px 25px;
        border-radius: 20px;
        margin-top: -30px; /* The "Layered" overlap */
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        z-index: 3;
    }

    .form-row {
        flex-direction: column; /* Stack Name and Email */
        gap: 0;
    }

    .contact-form-panel input, 
    .contact-form-panel textarea {
        margin-bottom: 25px;
        padding: 12px 5px;
        border-bottom: 2px solid #f0f0f0; /* Thicker, softer line */
        font-size: 0.95rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 20px;
        border-radius: 10px;
        font-size: 0.8rem;
        margin-top: 10px;
    }

    /* 3. Re-trigger Animation Logic */
    .reveal-text, .reveal-item {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .is-visible .reveal-text, 
    .is-visible .reveal-item {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RADIO SELECTION UPDATES --- */

.selection-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999; /* Matching the info-item p color */
    margin-bottom: 20px;
    margin-top: 10px;
}

.radio-group {
    display: flex;
    gap: 40px; /* Generous spacing between Container and Tent */
    margin-bottom: 40px;
}

.radio-container {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 1rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    user-select: none;
    transition: color 0.3s;
}

/* Hide the default browser radio */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom Checkmark (Outer Circle) */
.radio-checkmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 2px solid #ddd;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover State */
.radio-container:hover {
    color: #82ca38;
}

.radio-container:hover input ~ .radio-checkmark {
    border-color: #82ca38;
}

/* Checked State */
.radio-container input:checked ~ .radio-checkmark {
    border-color: #82ca38;
    background-color: transparent;
}

/* The Dot (Inner Circle) */
.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #82ca38; /* Brand Green */
}

/* Show dot when checked */
.radio-container input:checked ~ .radio-checkmark:after {
    display: block;
}

/* MOBILE ADAPTATION (Matches your @media block) */
@media (max-width: 991px) {
    .radio-group {
        gap: 20px;
        justify-content: center; /* Center options on mobile */
        margin-bottom: 30px;
    }
    
    .radio-container {
        font-size: 0.9rem;
    }
}







/* Footer */

/* --- FOOTER MASTER STYLE --- */
.luxury-footer-wrap {
    position: relative;
    background: #000;
    margin-top: 100px; /* Space for the half-overlap */
}

/* THE HALF-OVERLAP LOGIC */
.newsletter-overlap-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%); /* The Magic: X centers, Y lifts by half */
    width: 90%;
    max-width: 900px;
    z-index: 100;
}

.newsletter-card {
    display: flex;
    background: #1a1a1a;
    height: 100px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

.news-input-box {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.news-input-box input {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
    outline: none;
}


.news-submit-btn {
    background: #82ca38;
    color: #fff;
    border: none;
    padding: 0 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s ease;
}

.news-submit-btn:hover {
    background: #6fb32f; /* Your Green */
    color: #000;
}

/* --- NEWSLETTER PLACEHOLDER COLOR --- */

/* Standard syntax */
.news-input-box input::placeholder {
    color: #ffffff !important; /* Forces it to white */
    opacity: 0.7;              /* Slightly faded for a luxury look */
}

/* For older browsers (Webkit/Safari/Chrome) */
.news-input-box input::-webkit-input-placeholder {
    color: #ffffff !important;
}

/* For Firefox */
.news-input-box input::-moz-placeholder {
    color: #ffffff !important;
    opacity: 0.7;
}

/* For Internet Explorer/Edge */
.news-input-box input:-ms-input-placeholder {
    color: #ffffff !important;
}

/* THE GALLERY STRIP */
.footer-gallery-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 200px;
}

.gallery-tile {
    overflow: hidden;
    filter: brightness(0.4);
    transition: 0.5s;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-tile:hover {
    filter: brightness(1);
}

/* DARK CONTENT AREA */

/* --- OVERLAP LOGIC --- */
.luxury-footer-wrap {
    position: relative;
    background: #000;
    margin-top: 50px; /* Space for the floating box */
}

.newsletter-overlap-positioner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%); /* This creates the perfect 50/50 overlap */
    width: 90%;
    max-width: 800px;
    z-index: 50;
}

.newsletter-card {
    display: flex;
    background: #1a1a1a;
    height: 110px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* --- 4 COLUMN GRID --- */
.footer-4-cols {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forces exactly 4 columns */
    gap: 40px;
    padding: 100px 40px 60px; /* Top padding leaves room for images */
}

.footer-logo-white {
    max-width: 150px;
    filter: brightness(0) invert(1); /* Keeps logo white */
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-text, .contact-details p {
    color: #dfdfdf;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-nav-links { list-style: none; padding: 0; }
.footer-nav-links li { margin-bottom: 12px; }
.footer-nav-links a { color: #dfdfdf; text-decoration: none; transition: 0.3s; }
.footer-nav-links a:hover { color: #fff; }

.view-map-btn {
    color: #82ca38; /* Maatson Green */
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}


/* --- ORIGINAL LOGO STYLE --- */
.footer-logo-original {
    max-width: 200px; /* Slightly larger for impact */
    height: auto;
    margin-bottom: 20px;
    display: block;
    /* filter: brightness(0) invert(1); */
    /* Removed the white filter to show original colors */
    transition: transform 0.3s ease;
}

.footer-logo-original:hover {
    transform: scale(1.05); /* Slight hover interaction */
}

/* Optional: If the logo has black text, use this container style */
.logo-display-area {
    background: transparent; /* Keep it clean */
    padding: 5px 0;
    margin-bottom: 10px;
}

/* --- FOOTER GRID (Exactly 4 Columns) --- */
.footer-4-cols {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Balanced 4-column layout */
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr; 
    gap: 40px;
    padding: 120px 40px 80px;
}

/* TEXT STYLING TO PREVENT VAGUENESS */
.footer-text {
    color: #dfdfdf; /* Brighter than gray for better readability */
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;
}




/* BOTTOM BAR */
.footer-bottom-strip {
    border-top: 1px solid #111;
    padding: 30px 40px;
    color: #444;
    font-size: 0.8rem;
}

.bottom-flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.bottom-flex p{
    color: #dfdfdfb5;
}
.bottom-flex p a{
        color: #81ca38a0;
        text-decoration: none;

}

.social-links-minimal a {
    color: #444;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}
.social-links-minimal a:hover { color: #fff; }

/* REVEAL STATES (Matches your existing JS) */
.reveal-footer {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-footer.is-active {
    opacity: 1;
    transform: translateY(0);
}
 



/* --- FLOATING ACTIONS --- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between the two buttons */
    z-index: 2000;
}

/* Base style for both buttons */
.whatsapp-btn, .back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    border: none;



}

/* WhatsApp Specific */
.whatsapp-btn {
    background-color: #25D366; /* Official WhatsApp Green */
    color: white;
    font-size: 1.8rem;
}

/* Back to Top Specific */
.back-to-top {
    background-color: #82ca38;
    color: white;
    font-size: 1.2rem;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transform: translateY(20px);
 }

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-links {
    margin-left: 60px;
}


/* Hover Effects */
.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20ba5a;
}


@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
}




/* --- LUXURY FOOTER: DEPTH-STACKED MOBILE --- */
@media (max-width: 991px) {
    .luxury-footer-wrap {
        margin-top: 10px !important;
        background: #050505;
    }

    /* 1. Newsletter: The "Pull-Tab" Style */
    .newsletter-overlap-container {
        width: 95%;
        top: -20px; /* Sits higher for better overlap */
    }

    .newsletter-card {
        flex-direction: column; /* Stack input and button */
        height: auto;
        padding: 20px;
        border-radius: 15px;
        background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
        border: 1px solid rgba(130, 202, 56, 0.3);
    }

    .news-input-box {
        padding: 15px 10px;
        border-bottom: 1px solid #333;
        margin-bottom: 15px;
    }

    .news-submit-btn {
        width: 100%;
        padding: 15px;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    /* 2. Gallery: 3-Column Masonry */
    .footer-gallery-strip {
        grid-template-columns: repeat(3, 1fr); /* 3 images per row instead of 6 */
        height: auto;
    }

    .gallery-tile {
        height: 120px;
        filter: brightness(0.5);
    }

    /* 3. The 4-Column Grid: Sequential Stack */
    .footer-4-cols {
        grid-template-columns: 1fr; /* Single column for mobile */
        padding: 80px 30px 40px;
        gap: 50px;
        text-align: center;
    }

    .footer-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo-original {
        margin: 0 auto 20px;
        max-width: 160px;
    }

    .footer-heading {
        font-size: 0.9rem;
        margin-bottom: 20px;
        color: #82ca38; /* Green headers for mobile clarity */
    }

    .footer-nav-links li {
        margin-bottom: 18px; /* Bigger tap targets for fingers */
    }

    .footer-nav-links a {
        font-size: 1.1rem;
        opacity: 0.8;
    }

    /* 4. The Elevator Animation */
    .reveal-footer {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .reveal-footer.is-active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered rise for each block */
    .footer-block:nth-child(1) { transition-delay: 0.1s; }
    .footer-block:nth-child(2) { transition-delay: 0.2s; }
    .footer-block:nth-child(3) { transition-delay: 0.3s; }
    .footer-block:nth-child(4) { transition-delay: 0.4s; }
}


/* --- FLOATING ACTIONS: PREMIUM ANIMATED STYLE --- */

/* 1. Universal Pulse Animation */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* 2. Container Positioning */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; /* Ensure it's above everything */
}

/* 3. Button Base Style */
.whatsapp-btn, .back-to-top {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

/* WhatsApp: Always Visible + Pulsing */
.whatsapp-btn {
    background-color: #25D366;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    animation: pulse-whatsapp 2s infinite;
}

/* Back to Top: Controlled by your JS (.show class) */
.back-to-top {
    background-color: #1a1a1a;
    color: #82ca38;
    font-size: 1.2rem;
    border: 2px solid #82ca38;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Starts slightly lower */
}

/* The class your JS adds on scroll */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 4. Mobile Refinement (< 991px) */
@media (max-width: 991px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .whatsapp-btn, .back-to-top {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* Hover interactions for non-touch devices */
@media (hover: hover) {
    .whatsapp-btn:hover { transform: scale(1.1) rotate(10deg); }
    .back-to-top:hover { background: #82ca38; color: #fff; }
}

@media screen and (max-width: 991px) {
    /* Ensure the button is always on the highest layer */
    .hamburger {
        display: block !important;
        position: relative;
        z-index: 9999 !important; /* Higher than the .nav-links z-index */
        color: #ffffff; /* Default white for visibility */
        cursor: pointer;
        font-size: 28px;
        transition: 0.3s ease;
    }

    /* Change color to brand green when the menu is open for better visibility */
    .nav-links.active ~ .hamburger {
        color: #82ca38 !important;
    }

    /* Sidebar layer just below the button */
    .nav-links {
        z-index: 9998 !important;
    }

    .experience-badge{
        margin-right: 30px;
        height:120px;
        width:120px;
      }

     .experience-badge .years{
        font-size: 16px;
        line-height: 1;
        margin-top: -15px;
 
     }

     .experience-badge .text {
        font-size: 10px;
        line-height: 0.5;
      }
 

       .icon-features {
    display: flex;
    gap: 50px; /* Space between the two feature blocks */
    margin-top: 30px;
}

.feature {
    flex: 1;
}

/* Target the strong tag inside the first feature only */
.feature strong {
    position: relative;
    padding-left: 15px; /* Space for the line */
    display: inline-block;
    color: #333;
    font-size: 1.1rem;
}

/* Create the vertical line */
.feature strong::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;             /* Thickness of the line */
    height: 100%;           /* Matches the height of the text */
    background-color: #82ca38; /* Your brand green */
}

.label-tiny{
            margin: 0 !important ;
        }
        
        
        .sz-tab-btn{
            padding: 5px 10px !important;
        }
    
}






