/* Base & CSS Variables */
:root {
    --primary-color: #13467B; /* Logo Dark Blue */
    --primary-color-dark: #0f3964; 
    --secondary-color: #D51820; /* Logo Red */
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #F8F9FA;
    --white: #FFFFFF;
    --font-family: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 12px rgba(19, 70, 123, 0.05); /* Tinted shadow */
    --shadow-md: 0 8px 24px rgba(19, 70, 123, 0.08);
    --shadow-lg: 0 16px 40px rgba(19, 70, 123, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Container */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 110px;
}

/* Logo Setup */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.logo img {
    max-height: 92px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

/* Navigation System */
.nav-menu {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color); /* Red accent */
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Dropdown specific */
.dropdown {
    position: relative;
}

.dropdown-toggle .arrow {
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    transform: translateY(10px);
    background-color: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    border: 1px solid rgba(19, 70, 123, 0.05); /* subtle primary border */
}

/* Dropdown arrow tip */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 40px;
    transform: rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid rgba(19, 70, 123, 0.05);
    border-top: 1px solid rgba(19, 70, 123, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 24px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.2s ease;
    transform-origin: bottom;
}

.dropdown-link:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.dropdown-link:hover {
    background-color: rgba(19, 70, 123, 0.03); /* very light primary */
    color: var(--primary-color);
    padding-left: 30px; /* Slight right shift indicator */
}

/* Call to Action Button */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px; /* pill shape */
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.3px;
}

/* Using logo primary color for button as requested */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(19, 70, 123, 0.25); /* matching glow shadow */
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(19, 70, 123, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(213, 24, 32, 0.25);
}

.btn-secondary:hover {
    background-color: #b3141b; /* darker red */
    color: var(--white);
    box-shadow: 0 6px 20px rgba(213, 24, 32, 0.3);
    transform: translateY(-2px);
}

.nav-cta {
    margin-left: 4px; /* separation from normally spaced items */
}

.nav-cta::after {
    display: none !important; /* no hover line on button */
}

/* Hero Slider Styles */
.hero-slider {
    width: 100%;
    height: calc(100vh - 110px); /* Strictly fits the screen without scrolling */
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 100%;
}

.slider-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Fills without distortion */
    object-position: center center;
}


/* Custom Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
}

.swiper-pagination-bullet {
    background: var(--white) !important;
    opacity: 0.5 !important;
    width: 10px !important;
    height: 10px !important;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 30px !important;
    border-radius: 5px !important;
    background: var(--secondary-color) !important;
}

/* --- New About & Highlights Section --- */

.section-padding {
    padding: 80px 0;
}

/* Stats Strip */
.stats-strip {
    background-color: #F8ECE3; /* Subtle beige matching Moonglade */
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Container */
.about-container {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: flex-start;
}

/* Left Content */
.section-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eaeaea;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    border-bottom: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
}

/* Remove bottom borders for last row */
.highlight-item:nth-last-child(1),
.highlight-item:nth-last-child(2) {
    border-bottom: none;
}
/* Remove right borders for right column */
.highlight-item:nth-child(even) {
    border-right: none;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: rgba(19, 70, 123, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 16px;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 6px;
}

.highlight-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Right Content: Image Wrapper */
.about-image-wrapper {
    position: relative;
    width: 100%;
}

.image-inner {
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    overflow: hidden;
}

.about-skyscraper {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

.img-btn-overlay {
    background: var(--secondary-color);
    padding: 0;
}

.about-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px;
    border-radius: 0; /* Square edges to match image */
    font-size: 16px;
}

/* --- Amenities Section --- */
.bg-light {
    background-color: #FAFAFA;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 50px;
}

.subheading {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.text-gold {
    color: #B28850; /* Elegant gold/bronze color matching the reference */
}

/* Inherit section-title from earlier */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.amenity-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

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

.amenity-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces a perfect square */
    overflow: hidden;
    background-color: #eee; /* Placeholder bg until images load */
}

.amenity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-img {
    transform: scale(1.05); /* Slight sophisticated zoom on hover */
}

.amenity-label {
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-color);
}

/* --- FAQ Section --- */
.faq-section {
    background-color: var(--white);
    padding-top: 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-heading {
    text-align: center;
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color-dark);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.faq-list {
    border-top: 1px solid #e0e0e0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    text-align: left;
    line-height: 1.5;
    transition: color 0.2s ease;
    gap: 20px;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--text-color);
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.2s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 8px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 8px 22px;
}

.faq-answer p {
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* --- Map Section --- */
.map-section {
    background-color: var(--white);
}

.map-header {
    background-color: var(--primary-color-dark);
    padding: 40px 0;
    text-align: center;
}

.map-header .subheading {
    color: #B28850;
}

.map-title {
    font-family: var(--font-family);
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-top: 8px;
}

.map-wrapper {
    width: 100%;
    line-height: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* --- Footer Slider Section --- */
.footer-slider-section {
    background-color: var(--primary-color-dark); /* Dark background like reference screenshot */
    padding: 60px 0;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.2);
}

.footerSwiper {
    width: 100%;
    padding: 0 10px;
}

.footer-slide-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px; /* Slight rounding but mostly square */
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.footerSwiper .swiper-slide:hover .footer-slide-img {
    transform: scale(1.02); /* Subtle hover effect */
}


@media (max-width: 991px) {
    .footer-slide-img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .footer-slider-section {
        padding: 50px 0;
    }
    .footer-slide-img {
        height: 300px;
    }
    .footerSwiper {
        padding: 0 10px;
    }
}

/* --- Bottom Contact Strip (Sticky Form) --- */
.bottom-contact-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color-dark);
    padding: 18px 0; /* thinner for sticky banner */
    border-top: 2px solid var(--secondary-color); /* sharp red accent */
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

/* Ensure the sticky strip doesn't cover the footer on desktop */
body:has(.bottom-contact-strip) {
    padding-bottom: 85px; 
}

.sticky-form-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.horizontal-contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap; /* strictly one row */
    padding-right: 40px; /* space for close button */
}

.close-strip {
    position: absolute;
    right: 5px;
    top: 5px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    line-height: 1;
}

.close-strip:hover {
    opacity: 1;
}

.horizontal-contact-form input,
.horizontal-contact-form select {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-family);
    background-color: var(--white);
    color: var(--text-color);
}

.horizontal-contact-form input:focus,
.horizontal-contact-form select:focus {
    outline: 2px solid var(--secondary-color);
}

.horizontal-contact-form .btn {
    flex: 0 0 auto;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
}

/* Completely hide on mobile/tablets per user request */
@media (max-width: 991px) {
    .bottom-contact-strip {
        display: none !important;
    }
    body {
        padding-bottom: 0; /* Reset body padding since banner is gone */
    }
}

/* --- Footer --- */
.site-footer {
    background-color: var(--primary-color-dark);
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-family);
}

.footer-main {
    padding: 60px 0 40px;
    border-top: 4px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}

/* Footer Logo & About */
.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(213, 24, 32, 0.4);
}

/* Footer Headings */
.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #B28850;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #B28850;
    padding-left: 6px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #B28850;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #B28850;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-credit {
    font-style: italic;
}

/* --- Sticky Brochure Button & Modal --- */
.sticky-brochure-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color-dark);
    color: var(--white);
    padding: 20px 10px;
    cursor: pointer;
    z-index: 1001;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 4px 10px rgba(0,0,0,0.2);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
}

.sticky-brochure-btn:hover {
    background-color: var(--secondary-color);
    padding-right: 15px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-container {
    background-color: var(--white);
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    background-color: var(--primary-color-dark);
    color: var(--white);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px 24px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form input,
.modal-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-family);
    transition: border-color 0.3s;
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-block {
    width: 100%;
}

@media (max-width: 576px) {
    .modal-container {
        max-width: 90%;
    }
    .sticky-brochure-btn {
        padding: 15px 8px;
        font-size: 12px;
    }
}

/* --- Mobile Responsive Setup --- */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1010;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    position: absolute;
    left: 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 11px; }
.mobile-menu-toggle span:nth-child(3) { top: 22px; }

.mobile-menu-toggle.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.mobile-menu-toggle.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

@media (max-width: 991px) {
    .header-container {
        height: 70px;
    }
    
    .logo img {
        max-height: 50px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 380px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.08);
        transition: right 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1005;
        padding-top: 15px; /* Extremely minimal top padding to push menu up! */
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px 20px;
        gap: 4px; /* Tighter gap */
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-item:last-child {
        border-bottom: none;
        margin-top: 24px;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        padding: 16px 0;
        width: 100%;
    }
    
    .nav-link::after {
        display: none; /* remove hover line on mobile */
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        padding: 0 0 16px 16px;
        border: none;
        display: none;
        background-color: transparent;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease forwards;
    }

    .dropdown-link {
        padding: 12px 16px;
        font-size: 16px;
        color: var(--text-light);
    }
    
    .dropdown-link:hover {
        background-color: transparent;
        color: var(--primary-color);
        padding-left: 20px;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
        display: block;
        padding: 16px 28px;
    }
    
    /* Responsive Slider Fix: Don't force 100vh on mobile, otherwise wide images get brutally cropped */
    .hero-slider, .swiper, .swiper-slide {
        height: auto !important;
        min-height: auto !important;
    }
    
    .slider-img {
        height: auto !important;
        object-fit: contain !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important; /* Hide arrows on mobile, encourage swiping */
    }

    /* About Section Responsive Fixes */
    .mobile-title {
        display: block !important;
        text-align: center;
        margin-bottom: 40px;
    }

    .desktop-title {
        display: none !important;
    }

    .about-container {
        grid-template-columns: 1fr; /* Stack columns on tablets/mobile */
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1; /* Puts image above text inside the container */
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-title {
        font-size: 32px;
    }

    /* Amenities Grid tablet stack */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* FAQ Responsive */
    .faq-heading {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 4px;
    }

    /* Map Responsive */
    .map-title {
        font-size: 28px;
    }

    .map-header {
        padding: 30px 0;
    }

    .map-wrapper iframe {
        height: 380px;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-main {
        padding: 40px 0 30px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .highlights-grid {
        grid-template-columns: 1fr; /* Stack grid items vertically */
    }
    
    .highlight-item {
        border-right: none !important;
        border-bottom: 1px solid #eaeaea;
    }
    
    .highlight-item:nth-last-child(2) {
        border-bottom: 1px solid #eaeaea; /* Second to last gets border back */
    }

    /* Amenities mobile 2-column tiles instead of 1 huge column */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .amenity-label {
        font-size: 13px;
        padding: 12px 6px;
    }

    /* FAQ small screen */
    .faq-question {
        font-size: 14px;
        padding: 16px 4px;
        gap: 12px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* Map small screen */
    .map-title {
        font-size: 24px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    /* Footer small screen */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
}
