:root {
    --primary-color: #334155; /* Slate/Dark Grey for text */
    --accent-color: #0ea5e9; /* Ocean Blue for buttons */
    --accent-hover: #0284c7;
    --navbar-bg: #1e293b; /* Charcoal for header/footer */
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --font-main: 'Outfit', sans-serif;
    --radius: 24px; /* Increased for a more modern, rounded look */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--primary-color);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: var(--navbar-bg);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-white { color: white !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-accent { color: var(--accent-color); }
.bold { font-weight: 700; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.align-start { align-items: flex-start !important; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.section {
    padding: 5rem 0;
}

.bg-white { background-color: var(--bg-white); }
.bg-light { background-color: var(--bg-light); }

.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Side Progress Navigation */
.side-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.side-nav-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.side-nav-dot.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
}

.side-nav.dark-dots .side-nav-dot {
    background-color: rgba(15, 23, 42, 0.2);
    border-color: rgba(15, 23, 42, 0.3);
}

.side-nav.dark-dots .side-nav-dot.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.side-nav-label {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6); /* Slightly faded by default */
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    pointer-events: none;
    letter-spacing: 1px;
}

.side-nav.dark-dots .side-nav-label {
    color: rgba(15, 23, 42, 0.5);
}

.side-nav-dot.active .side-nav-label {
    color: var(--accent-color);
    opacity: 1;
    right: 30px;
}

.side-nav-dot:hover .side-nav-label {
    color: white;
    right: 30px;
}

.side-nav.dark-dots .side-nav-dot:hover .side-nav-label {
    color: var(--navbar-bg);
}

@media (max-width: 992px) {
    .side-nav {
        display: none; /* Hide on smaller screens to save space */
    }
}

/* Navigation - Transparent to Fixed */
.navbar {
    background-color: transparent; /* Initially transparent */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed; /* Fixed to overlay hero */
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: var(--navbar-bg);
    padding: 1rem 5%;
    box-shadow: var(--shadow-md);
}

.navbar .logo {
    height: 50px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar .logo img {
    height: 100%;
    width: auto;
}

.navbar.scrolled .logo {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #cbd5e1;
}

.nav-links a:hover {
    color: white;
}

.btn-book {
    background-color: var(--accent-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
}

.btn-book:hover {
    background-color: var(--accent-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hamburger Animation to X */
.hamburger.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Full screen height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4); /* Reverted to original lighter overlay */
    z-index: 0;
}

/* Subtle top gradient for navbar visibility */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.text-white-muted {
    color: #cbd5e1 !important;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
}

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

/* About / House Section - Modern & Clean V2 */
.about-wrapper-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-v2 {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image-v2:hover img {
    transform: scale(1.03);
}

.image-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.image-badge i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.image-badge span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navbar-bg);
}

.about-content-v2 h2 {
    font-size: 2.5rem;
    line-height: 1.1;
}

.quick-stats-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: background 0.3s ease;
}

.stat-box:hover {
    background: #f1f5f9;
}

.stat-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.stat-box strong {
    display: block;
    font-size: 1.2rem;
    color: var(--navbar-bg);
    line-height: 1;
}

.stat-box span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
}

.btn-text {
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.btn-text:hover {
    gap: 15px;
    color: var(--accent-hover);
}

@media (max-width: 992px) {
    .about-wrapper-v2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-v2 {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .quick-stats-v2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-content-v2 h2 {
        font-size: 2rem;
    }
}

/* Amenities Grid Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.amenity-card {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius);
}

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

.amenity-card:hover img {
    transform: scale(1.05);
}

.icons-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.icon-item {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.icon-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Booking Section */
.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-airbnb {
    background-color: #FF5A5F; /* Airbnb Coral */
    color: white;
}

.btn-airbnb:hover {
    background-color: #e34c51;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 90, 95, 0.2);
}

.btn-booking-com {
    background-color: #003580; /* Booking.com Blue */
    color: white;
}

.btn-booking-com:hover {
    background-color: #002253;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 53, 128, 0.2);
}

.booking-buttons i, .btn-icon {
    margin-right: 10px;
    font-size: 1.1rem;
    height: 1.1rem;
    width: auto;
    vertical-align: middle;
}

.social-icon-img {
    height: 18px;
    width: auto;
}

/* Location Section */
.proximity-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.proximity-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.proximity-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.prox-icon {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.prox-text {
    display: flex;
    flex-direction: column;
}

.prox-text strong {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.prox-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}

.map-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.map-overlay-badge i {
    color: var(--accent-color);
}

.map-overlay-badge span {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .proximity-grid {
        grid-template-columns: 1fr;
    }
}

/* Stay Information Section */
.info-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.highlight-card {
    border-top: 4px solid var(--accent-color);
    box-shadow: var(--shadow-md);
}

.standard-list {
    margin-left: 1.5rem;
}

.standard-list li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Stay Information Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card-modern {
    background: #f8fafc; /* Very subtle light grey */
    padding: 3rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
}

.info-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--navbar-bg);
    margin-bottom: 1.5rem;
}

.info-card-modern h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.info-card-modern p, .info-card-modern .standard-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}

.info-card-modern .standard-list {
    margin-left: 0;
    list-style: none;
    padding: 0;
}

.info-card-modern .standard-list li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 8px;
}

.highlight-border {
    border-top: 5px solid var(--accent-color);
}

@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--navbar-bg);
    color: white;
    border-color: var(--navbar-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns as requested */
    gap: 15px;
}

.gallery-item.show-more-tile {
    background: var(--navbar-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    font-weight: 700;
    transition: background 0.3s ease;
}

.gallery-item.show-more-tile:hover {
    background: var(--accent-color);
}

.gallery-item.show-more-tile i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.lightbox-content {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.lightbox.active .lightbox-content.loaded {
    opacity: 1;
    transform: scale(1);
}

.lightbox-info {
    text-align: center;
    margin-top: 2rem;
    color: white;
}

.lightbox-counter {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#lightbox-caption {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #e2e8f0;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2010;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.05);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2010;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-wrapper {
        padding: 20px;
    }
    
    .lightbox-content {
        max-height: 65vh;
        border-radius: 12px;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }

    .lightbox-prev, .lightbox-next {
        bottom: 2rem;
        top: auto;
        transform: none;
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.1);
    }
    
    .lightbox-prev { left: 20%; }
    .lightbox-next { right: 20%; }

    .lightbox-prev:hover, .lightbox-next:hover {
        transform: scale(1.1);
    }
    
    .lightbox-info {
        margin-top: 1.5rem;
    }
    
    #lightbox-caption {
        font-size: 0.9rem;
    }
}

/* Optimization for Mobile Landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .lightbox-wrapper {
        flex-direction: row;
        padding: 10px 60px;
        justify-content: center;
        gap: 30px;
    }

    .lightbox-content {
        max-height: 85vh;
        width: auto;
    }

    .lightbox-info {
        margin-top: 0;
        text-align: left;
        max-width: 200px;
    }

    .lightbox-prev, .lightbox-next {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
}

.loader {
    display: none;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    border-top: 3px solid var(--accent-color);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

/* Footer */
footer {
    background: var(--navbar-bg);
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 20px;
}

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

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

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
}

.social-icons a:hover {
    background: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links ul {
        padding: 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }

    .navbar .logo {
        height: 35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: all;
    }

    .nav-links li {
        width: auto;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.3rem;
        padding: 0.8rem 2rem;
        display: inline-block;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-links .btn-book {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .icons-row {
        gap: 1.5rem;
    }
    
    .icon-item {
        width: 45%;
    }
}

/* Amenities Accordion */
.all-amenities {
    max-width: 1000px;
    margin: 0 auto;
}

.amenities-accordion {
    border: 1px solid var(--border-color);
    border-radius: 30px; /* More rounded */
    background: white;
    overflow: hidden;
    margin-top: 2rem; /* Added some margin top for better spacing */
}

.amenities-accordion summary {
    padding: 1.5rem 2rem;
    font-weight: 700;
    cursor: pointer;
    background: white;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--navbar-bg);
    letter-spacing: 1px;
    border-radius: 30px;
}

.amenities-accordion summary::-webkit-details-marker {
    display: none;
}

.amenities-accordion summary::after {
    content: '\f078'; /* FontAwesome angle-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent-color);
    font-size: 0.9rem;
}

.amenities-accordion.is-open summary::after {
    transform: rotate(180deg);
}

.amenities-accordion summary:hover {
    background: #f8fafc;
}

.accordion-content {
    padding: 0 2rem 2.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid transparent;
}

/* Classes controlled by JS for smooth animation */
.amenities-accordion.is-open .accordion-content {
    opacity: 1;
    transform: translateY(0);
    max-height: 2000px; /* Large enough to fit content */
    padding-top: 2rem;
    border-top-color: var(--border-color);
}

.amenity-group {
    margin-bottom: 1.5rem;
}

.amenity-group h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.amenity-group h3 i {
    color: var(--accent-color);
    width: 25px;
    text-align: center;
}
