/* --- Design System --- */
:root {
    --primary-bg: #1a1a1a;
    --secondary-bg: #242424;
    --accent-gold: #d4af37;
    --accent-gold-hover: #f1c40f;
    --text-pearl: #f5f5f5;
    --text-gray: #b0b0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-max: 1200px;
    /* Google Drive file IDs — served via googleusercontent (reliable for <img> / CSS). */
    --photo-hero: url("https://lh3.googleusercontent.com/d/1PCq9i2iFodS3mC_uUA5QRF4PR9B0h57w=w2400");
    --photo-bedroom: url("https://lh3.googleusercontent.com/d/1H9Q6S796aWBQnkgW-J_yWpwV8p_P3q-a=w2400");
    --photo-exterior: url("https://lh3.googleusercontent.com/d/1v09l2eowjhYdP84A-n6AcLL-wKCB4Lfv=w2400");
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-pearl);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-intro {
    max-width: 720px;
    margin: 1rem auto 0;
    color: var(--text-gray);
}

.subtitle {
    display: block;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

h2 {
    font-size: 3rem;
    letter-spacing: 1px;
}

/* --- Buttons --- */
.btn-primary, .btn-gold, .btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
}

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

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.btn-primary {
    background-color: var(--text-pearl);
    color: var(--primary-bg);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.block {
    display: block;
    width: 100%;
    text-align: center;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.9rem 0;
    transition: transform 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.navbar.nav-hidden {
    transform: translateY(-105%);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-logo img {
    width: clamp(130px, 16vw, 190px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.brand-logo-footer img {
    width: clamp(170px, 22vw, 240px);
    height: auto;
    object-fit: contain;
}

.logo span {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin: 0 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.menu-btn {
    display: none;
    font-size: 1.2rem;
    color: var(--text-pearl);
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 992px) {
    .nav-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--primary-bg);
        border-left: 1px solid var(--glass-border);
        padding: 8rem 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-links-wrapper.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .menu-btn {
        display: block;
        position: relative;
        z-index: 1001;
    }
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    background: var(--photo-hero) no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-trust {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    background: rgba(10, 10, 10, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.hero-trust i {
    color: var(--accent-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
}

.scroll-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    margin: 8px auto;
    border-radius: 50%;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(15px); opacity: 1; }
    100% { transform: translateY(30px); opacity: 0; }
}

/* --- About Section --- */
.about {
    padding: 10rem 0;
    background-color: var(--primary-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 3.5rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 62ch;
}

.about-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat p {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: var(--transition-smooth);
}

.about-slide-image {
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.4s ease;
}

.about-slide-image.is-fading {
    opacity: 0.2;
}

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

/* --- Amenities Section --- */
.amenities {
    padding: 10rem 0;
    background-color: var(--secondary-bg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    background-color: rgba(255,255,255,0.08);
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.amenity-card i {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.amenity-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- Gallery Section --- */
.gallery {
    padding: 10rem 0;
    background-color: var(--primary-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

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

.gallery-caption {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    z-index: 2;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.8rem;
    letter-spacing: 0.4px;
}

/* --- Videos Section --- */
.videos-section {
    padding: 8rem 0;
    background-color: var(--secondary-bg);
}

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

.video-slot {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.video-slot:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.75);
}

.video-slot-thumb {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.video-slot-thumb span {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    padding: 0.45rem 0.7rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.66);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.82rem;
}

.video-slot-thumb i {
    color: var(--accent-gold);
    margin-right: 0.3rem;
}

.video-slot p {
    padding: 1rem;
    color: var(--text-gray);
    font-size: 0.93rem;
}

/* --- Gallery Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(4, 4, 6, 0.94);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.4rem;
}

.lightbox.hidden {
    display: none;
}

.lightbox-stage {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.lightbox-stage img {
    width: min(100%, 1200px);
    max-height: 78vh;
    object-fit: contain;
    transform-origin: center;
    transition: transform 0.22s ease;
    border-radius: 12px;
}

.lightbox-caption {
    margin-top: 0.8rem;
    color: #ddd;
    font-size: 0.92rem;
    letter-spacing: 0.2px;
}

.lightbox-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(25, 25, 25, 0.72);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lightbox-btn:hover {
    border-color: rgba(212, 175, 55, 0.9);
    color: var(--accent-gold);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.lightbox-controls {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 3000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #08170d;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    background: #2ee070;
}

/* --- Location Section --- */
.location {
    padding: 10rem 0;
    background-color: var(--secondary-bg);
}

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

.map-container {
    height: 500px;
    background: var(--photo-exterior) no-repeat center center/cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

/* --- Trust Section --- */
.trust-section {
    padding: 8rem 0;
    background-color: var(--primary-bg);
}

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

.trust-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 2rem 1.4rem;
    transition: var(--transition-smooth);
}

.trust-card:hover {
    border-color: rgba(212, 175, 55, 0.75);
    transform: translateY(-4px);
}

.trust-card i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    margin-bottom: 0.65rem;
}

.trust-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.booking-reasons {
    margin-top: 1.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.booking-reasons span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    font-size: 0.84rem;
}

.booking-reasons i {
    color: var(--accent-gold);
}

.proximity-list {
    margin: 2.5rem 0;
}

.proximity-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.proximity-list i {
    color: var(--accent-gold);
    width: 20px;
}

/* --- Contact Section --- */
.contact {
    padding: 10rem 0;
    background-color: var(--primary-bg);
    background: linear-gradient(to bottom, var(--primary-bg), #000);
}

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.booking-assurance {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.booking-assurance span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.86rem;
    color: var(--text-gray);
}

.booking-assurance i {
    color: var(--accent-gold);
}

.booking-cta-row {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.booking-cta-row a {
    min-width: 190px;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-form label {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.booking-form input, .booking-form textarea {
    width: 100%;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    color: var(--text-pearl);
    border-radius: 10px;
    font-family: inherit;
    outline: none;
    transition: var(--transition-smooth);
}

.booking-form input:focus, .booking-form textarea:focus {
    border-color: var(--accent-gold);
    background-color: rgba(255,255,255,0.08);
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.form-success i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.hidden {
    display: none;
}

/* --- Footer --- */
.footer {
    padding: 5rem 0 3rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-logo .logo {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.footer-social a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    color: var(--text-gray);
    font-size: 0.8rem;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* --- Mobile Responsive --- */
@media (max-width: 992px) {
    h2 { font-size: 2.5rem; }
    .hero h1 { font-size: 3.5rem; }
    .about,
    .amenities,
    .gallery,
    .videos-section,
    .trust-section,
    .location,
    .contact {
        padding: 7rem 0;
    }
    
    .about-grid, .location-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .about-image {
        order: -1;
    }

    .about-image img {
        max-height: 520px;
        border-radius: 18px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 360px;
    }

    .gallery-item.large {
        grid-row: span 1;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 420px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.1rem;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 0.78rem;
        letter-spacing: 2px;
        margin-bottom: 0.7rem;
    }

    .hero {
        min-height: 86svh;
    }

    .hero h1 { font-size: 2.35rem; }
    .hero p { font-size: 1rem; margin-bottom: 2rem; }
    .hero-btns { flex-direction: column; gap: 1rem; }
    .hero-btns a { width: 100%; }
    .hero-trust { gap: 0.55rem; }
    .hero-trust span { font-size: 0.74rem; padding: 0.4rem 0.65rem; }

    .about,
    .amenities,
    .gallery,
    .videos-section,
    .trust-section,
    .location,
    .contact {
        padding: 5.5rem 0;
    }

    .about-grid,
    .location-grid {
        gap: 2rem;
    }

    .about-image img {
        aspect-ratio: 16 / 11;
        min-height: 280px;
        max-height: 420px;
        border-radius: 14px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenity-card {
        padding: 2.2rem 1.4rem;
    }

    .gallery-grid {
        grid-auto-rows: 250px;
        gap: 1rem;
    }

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

    .video-slot-thumb {
        height: 205px;
    }

    .gallery-caption {
        font-size: 0.74rem;
    }

    .lightbox {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        padding: 3.5rem 0.8rem 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-btn {
        width: 40px;
        height: 40px;
    }

    .lightbox-stage img {
        max-height: 72vh;
    }

    .map-container {
        height: 320px;
    }

    .booking-card { padding: 1.5rem; border-radius: 18px; }
    .form-row { grid-template-columns: 1fr; }
    .booking-assurance { justify-content: flex-start; }
    .booking-cta-row { justify-content: flex-start; }

    .floating-whatsapp {
        right: 0.7rem;
        bottom: 0.7rem;
        padding: 0.66rem 0.85rem;
        font-size: 0.82rem;
    }

    .floating-whatsapp span {
        display: none;
    }

    .brand-logo img {
        width: 118px;
    }

    .brand-logo-footer img {
        width: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
