﻿/* ═══════════════════════════════════════════════
   GALIM PENTHOUSE — COASTAL BLUE + SAND
   Complete — matches index.html exactly
   Mobile-optimized
   ═══════════════════════════════════════════════ */

:root {
    --blue-deep: #14405C;
    --blue-mid: #1D6A96;
    --blue: #2480AE;
    --blue-light: #62B6CB;
    --blue-pale: #BDE4F0;
    --blue-wash: #EAF5FA;
    --sand-dark: #B08D57;
    --sand: #C9A96E;
    --sand-light: #DCC99D;
    --sand-pale: #F0E6D2;
    --sand-wash: #F8F3EB;
    --bg-body: #FDFBF8;
    --bg-card: #FFFFFF;
    --bg-alt: var(--sand-wash);
    --text-primary: #1A2B3D;
    --text-secondary: #4A6274;
    --text-muted: #8A9BAA;
    --accent: var(--blue-mid);
    --accent-hover: var(--blue-deep);
    --accent-warm: var(--sand);
    --border: #E2E0DC;
    --border-light: #F0EDEA;
    --shadow-soft: 0 2px 16px rgba(20, 64, 92, 0.06);
    --shadow-med: 0 8px 32px rgba(20, 64, 92, 0.10);
    --shadow-lg: 0 16px 48px rgba(20, 64, 92, 0.14);
    --section-gap: 100px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --footer-bg: #0F2D40;
    --footer-text: #9BB8CA;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-h: 70px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: "Heebo", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-body);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: "Heebo", "Noto Serif Hebrew", serif;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-gap) 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--blue-wash);
    padding: 5px 18px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.section-intro {
    max-width: 600px;
    margin: 14px auto 0;
    color: var(--text-secondary);
}


/* ═══════════ HEADER ═══════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: var(--transition);
    background: transparent;
}

    .site-header.scrolled {
        background: rgba(253, 251, 248, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 1px 12px rgba(20, 64, 92, 0.08);
    }

.header-content {
    display: flex;
    align-items: center;
    height: var(--header-h);
    gap: 16px;
}

.logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: "Suez One", serif;
    font-size: 1.3rem;
    color: var(--blue-deep);
    transition: var(--transition);
}

.site-header:not(.scrolled) .logo-main {
    color: #fff;
}

.logo-sub {
    font-family: "Heebo", sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sand);
    font-weight: 500;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: auto;
}

    .main-nav a {
        font-size: 0.85rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        padding: 6px 14px;
        border-radius: 8px;
        transition: var(--transition);
        white-space: nowrap;
    }

.site-header.scrolled .main-nav a {
    color: var(--text-secondary);
}

.main-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .main-nav a:hover {
    color: var(--accent);
    background: var(--blue-wash);
}

.btn-nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    padding: 8px 22px !important;
}

    .btn-nav-cta:hover {
        background: var(--accent-hover) !important;
        transform: translateY(-1px);
    }

.lang-switcher {
    display: flex;
    gap: 6px;
    margin-inline-start: 12px;
}

.flag-circle {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.site-header.scrolled .flag-circle {
    border-color: var(--border);
}

.flag-circle:hover {
    transform: scale(1.12);
}

.flag-he {
    background-image: url('https://flagcdn.com/w40/il.png');
}

.flag-en {
    background-image: url('https://flagcdn.com/w40/gb.png');
}

.flag-fr {
    background-image: url('https://flagcdn.com/w40/fr.png');
}

.lang-switcher .active .flag-circle {
    border-color: var(--sand);
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: var(--transition);
    }

.site-header.scrolled .menu-toggle span {
    background: var(--text-primary);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: url('images/terrasse/sunset_terrace_view_compressed.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 0 24px;
}

    .hero-content h1 {
        color: #fff;
        font-size: clamp(1.6rem, 5vw, 3.6rem);
        margin: 16px 0;
        white-space: normal;
        line-height: 1.3;
        text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 4px 32px rgba(0, 0, 0, 0.6);
    }

.hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand-light);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    padding: 5px 18px;
    border-radius: 999px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-family: "Heebo", sans-serif;
    font-size: clamp(0.88rem, 2.5vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 32px;
    line-height: 1.75;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.75);
    padding: 0 8px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ═══════════ BUTTONS ═══════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

    .btn-primary:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(29, 106, 150, 0.3);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: #fff;
    }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #25D366;
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

    .btn-whatsapp:hover {
        background: #1EBE57;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    }

.btn-full {
    width: 100%;
}


/* ═══════════ QUICK FACTS ═══════════ */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-med);
    margin-top: -56px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.fact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    gap: 8px;
    position: relative;
}

    .fact-item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--border-light);
    }

.fact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
    background: var(--blue-wash);
    margin-bottom: 4px;
}

.fact-value {
    font-family: "Suez One", serif;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.fact-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ═══════════ SPLIT LAYOUT ═══════════ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}


/* ═══════════ ABOUT ═══════════ */
.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.85;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-med);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--blue-wash);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
}

.hi-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--accent);
    box-shadow: var(--shadow-soft);
}


/* ═══════════ ROOM / SUITE CARDS ═══════════ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-med);
    }

.suite-hero {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.suite-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .suite-main-img {
    transform: scale(1.05);
}

.suite-bath-badge {
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--shadow-soft);
    bottom: 14px;
    z-index: 2;
}

.suite-badge-left .suite-bath-badge {
    left: 18px;
}

.suite-badge-right .suite-bath-badge {
    right: 18px;
}

.suite-body {
    padding: 24px;
}

.room-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .room-thumb {
    transform: scale(1.05);
}

.room-content {
    padding: 24px;
}

.room-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--blue-wash);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 8px;
}

.room-card h3 {
    margin-bottom: 10px;
}

.room-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-card li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 5px 0;
    padding-inline-start: 20px;
    position: relative;
    line-height: 1.6;
}

    .room-card li::before {
        content: '';
        position: absolute;
        inset-inline-start: 0;
        top: 12px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--blue-pale);
        border: 2px solid var(--accent);
    }


/* ═══════════ AMENITIES ═══════════ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

    .amenity-item:hover {
        border-color: var(--blue-pale);
        box-shadow: var(--shadow-soft);
    }

.amenity-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    background: var(--blue-wash);
}

.amenity-item span:last-child {
    font-size: 0.88rem;
    font-weight: 500;
}


/* ═══════════ GALLERY ═══════════ */
.gallery-grid {
    columns: 3;
    column-gap: 16px;
}

    .gallery-grid img {
        width: 100%;
        break-inside: avoid;
        margin-bottom: 16px;
        border-radius: var(--radius);
        cursor: pointer;
        transition: transform 0.5s ease, filter 0.3s ease;
    }

        .gallery-grid img:hover {
            transform: scale(1.03);
            filter: brightness(0.9);
        }


/* ═══════════ LOCATION ═══════════ */
.location-split {
    align-items: start;
}

.location-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.85;
}

.map-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-med);
}

    .map-image-wrapper a {
        display: block;
    }

.map-image {
    width: 100%;
    border-radius: var(--radius-lg);
    transition: transform 0.4s ease;
}

    .map-image:hover {
        transform: scale(1.02);
    }

.map-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
}

.location-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

    .location-gallery figure {
        border-radius: var(--radius-lg);
        overflow: hidden;
        background: var(--bg-card);
        box-shadow: var(--shadow-soft);
        transition: var(--transition);
    }

        .location-gallery figure:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-med);
        }

    .location-gallery img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .location-gallery figure:hover img {
        transform: scale(1.05);
    }

    .location-gallery figcaption {
        padding: 16px 20px;
        font-size: 0.85rem;
        color: var(--text-secondary);
        line-height: 1.65;
    }

        .location-gallery figcaption strong {
            color: var(--accent);
        }


/* ═══════════ CONTACT ═══════════ */
.contact-split {
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
}

    .contact-method:not(:last-child) {
        border-bottom: 1px solid var(--border-light);
    }

    .contact-method > i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
        color: var(--accent);
        background: var(--blue-wash);
    }

    .contact-method div {
        font-size: 0.92rem;
    }

    .contact-method strong {
        display: block;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--text-muted);
        margin-bottom: 2px;
    }

    .contact-method a {
        color: var(--text-primary);
        font-weight: 500;
    }

        .contact-method a:hover {
            color: var(--accent);
        }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .contact-form .form-row {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .contact-form label {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--text-secondary);
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 16px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        font-family: "Heebo", sans-serif;
        font-size: 0.92rem;
        background: var(--bg-card);
        color: var(--text-primary);
        transition: var(--transition);
        width: 100%;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(29, 106, 150, 0.12);
        }


/* ═══════════ FAQ ACCORDION ═══════════ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: start;
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    gap: 16px;
    transition: var(--transition);
}

    .faq-question:hover {
        color: var(--accent);
    }

.faq-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-wash);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--accent);
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    background: var(--accent);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 0 20px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}


/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

    .lightbox.open {
        opacity: 1;
        pointer-events: all;
    }

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 45, 64, 0.92);
    backdrop-filter: blur(8px);
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

    .lightbox-close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

    .lightbox-prev:hover,
    .lightbox-next:hover {
        background: rgba(255, 255, 255, 0.3);
    }


/* ═══════════ FOOTER ═══════════ */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    margin-top: 14px;
    font-size: 0.85rem;
    line-height: 1.75;
}

.footer-col h4 {
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    padding: 4px 0;
    color: var(--footer-text);
    transition: var(--transition);
}

    .footer-col a:hover {
        color: var(--sand-light);
        padding-inline-start: 6px;
    }

.footer-social {
    display: flex;
    gap: 10px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.08);
        color: var(--footer-text);
        font-size: 1rem;
        transition: var(--transition);
    }

        .footer-social a:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }

.footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.78rem;
}


/* ═══════════ WHATSAPP FLOAT ═══════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-2px);
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    }

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: #fff;
}


/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 768px)
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --section-gap: 64px;
    }

    /* Header / Nav */
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--footer-bg);
        flex-direction: column;
        padding: 90px 32px 40px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    body.nav-open .main-nav {
        transform: translateX(0);
    }

    .main-nav a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1rem;
        padding: 12px 16px;
    }

        .main-nav a:hover {
            background: rgba(255, 255, 255, 0.08) !important;
            color: #fff !important;
        }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 16px;
    }

        .hero-content h1 {
            font-size: clamp(1.5rem, 7vw, 2.2rem);
            white-space: normal;
            line-height: 1.4;
        }

    .hero-eyebrow {
        font-size: 0.6rem;
        padding: 4px 14px;
    }

    /* Quick Facts */
    .quick-facts {
        grid-template-columns: 1fr 1fr;
        margin-top: -36px;
    }

    .fact-item:nth-child(2)::after {
        display: none;
    }

    /* Split */
    .split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* About */
    .about-image {
        order: -1;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    /* Cards */
    .cards {
        grid-template-columns: 1fr;
    }

    .suite-hero {
        height: 200px;
    }

    /* Gallery */
    .gallery-grid {
        columns: 2;
        column-gap: 10px;
    }

        .gallery-grid img {
            margin-bottom: 10px;
        }

    /* Location */
    .location-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Contact */
    .contact-split {
        gap: 24px;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.92rem;
        padding: 16px 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    /* WhatsApp float */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — PHONE (max-width: 480px)
   ═══════════════════════════════════════════════ */
@media (max-width: 480px) {
    :root {
        --section-gap: 48px;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.65;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .hero-actions .btn-primary,
        .hero-actions .btn-secondary {
            width: 100%;
            justify-content: center;
        }

    /* Quick Facts */
    .quick-facts {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-radius: var(--radius-lg);
    }

    .fact-item {
        padding: 18px 10px;
    }

    .fact-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .fact-value {
        font-size: 1.1rem;
    }

    .fact-label {
        font-size: 0.7rem;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 32px;
    }

        .section-header h2 {
            font-size: 1.4rem;
        }

    .section-intro {
        font-size: 0.88rem;
    }

    /* Gallery */
    .gallery-grid {
        columns: 1;
    }

    /* Location */
    .location-gallery {
        grid-template-columns: 1fr;
    }

    /* Amenities */
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    /* Suite cards */
    .suite-hero {
        height: 180px;
    }

    .suite-bath-badge {
        width: 60px;
        height: 60px;
    }

    .suite-body {
        padding: 18px;
    }

    .room-content {
        padding: 18px;
    }

    /* Contact */
    .contact-card {
        padding: 20px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        margin-top: 32px;
    }

    /* Lang switcher */
    .lang-switcher {
        margin-inline-start: auto;
    }

    .flag-circle {
        width: 22px;
        height: 22px;
    }

    /* Lightbox */
    .lightbox-image {
        max-width: 95vw;
        max-height: 75vh;
    }
}
