/* ============================================================
   Viana's Home — Premium CSS
   Brand: Forest Green #1B4332, Gold #C6973F, Sage #6B8F71
   Fonts: Playfair Display (headings) + Inter (body)
   ============================================================ */

/* ── CSS Variables ── */
:root {
    --primary: #1B4332;
    --primary-light: #2D6A4F;
    --primary-dark: #0F2A1D;
    --gold: #C6973F;
    --gold-light: #D4AF61;
    --gold-dark: #A67C2E;
    --sage: #6B8F71;
    --sage-light: #8FB996;
    --off-white: #FAFAF5;
    --light-gray: #F0EDE8;
    --medium-gray: #D1CDC6;
    --charcoal: #2D2D2D;
    --dark-text: #1a1a1a;
    --body-text: #4a4a4a;
    --white: #ffffff;
    --danger: #D32F2F;
    --success: #2E7D32;
    --warning: #F9A825;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1200px;
    --header-height: 80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text);
    background: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-text);
    line-height: 1.3;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ── Container ── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Loading Screen ── */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content { text-align: center; }
.loader-logo {
    height: 60px;
    margin-bottom: 24px;
    animation: pulse-logo 1.5s ease-in-out infinite;
    filter: brightness(0) invert(1);
}
.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes pulse-logo {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Cookie Consent ── */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: var(--white);
    padding: 20px 0;
    z-index: 9000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-content p { font-size: 14px; flex: 1; min-width: 250px; margin: 0; }
.cookie-actions { display: flex; gap: 10px; }

/* ── Alerts ── */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius);
    margin: 20px auto;
    max-width: var(--container);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }
.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}
.alert-close:hover { opacity: 1; }

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 5000;
    transition: all var(--transition);
    background: transparent;
}
.site-header.scrolled {
    background: rgba(27, 67, 50, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
    height: 70px;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-img {
    height: 48px;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}
.site-header.scrolled .logo-img { height: 40px; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(255,255,255,0.1);
}
.nav-link .fa-chevron-down { font-size: 10px; margin-left: 4px; transition: var(--transition); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    padding: 8px 0;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.has-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }
.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--body-text);
    font-size: 14px;
    transition: var(--transition);
}
.dropdown a:hover {
    background: var(--light-gray);
    color: var(--primary);
    padding-left: 24px;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
    font-size: 14px !important;
    padding: 10px 24px !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 5001;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }
.mobile-toggle.active .hamburger { background: transparent; }
.mobile-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 4999;
}
.mobile-overlay.active { display: block; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(198,151,63,0.3);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-secondary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,67,50,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-block { width: 100%; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================================================
   SECTION STYLES
   ===================================================== */
.section {
    padding: 100px 0;
}
.section-sm { padding: 60px 0; }

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-title {
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--body-text);
    line-height: 1.7;
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}
.section-dark .section-title,
.section-dark .section-subtitle { color: var(--white); }
.section-dark .section-subtitle { opacity: 0.85; }

.section-gray { background: var(--light-gray); }

/* Decorative line */
.divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto;
    border-radius: 2px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-dark);
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 42, 29, 0.7) 0%,
        rgba(15, 42, 29, 0.5) 50%,
        rgba(15, 42, 29, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}
.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.4s both;
    line-height: 1.15;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease 0.6s both;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.8s both;
}

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.4);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--primary);
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('') center/cover;
    opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 18px; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--gold); }

/* =====================================================
   CARDS
   ===================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.card:hover .card-img img { transform: scale(1.08); }

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.card-body { padding: 24px; }
.card-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--sage);
}
.card-meta i { color: var(--gold); }
.card-text {
    font-size: 14px;
    color: var(--body-text);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}
.card-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Card grid */
.card-grid {
    display: grid;
    gap: 30px;
}
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* =====================================================
   FEATURES / AMENITIES
   ===================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}
.feature-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 24px;
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: scale(1.1);
}
.feature-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.feature-text {
    font-size: 14px;
    color: var(--body-text);
}

/* Amenity tags */
.amenity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--light-gray);
    border-radius: 20px;
    font-size: 13px;
    color: var(--body-text);
    transition: var(--transition);
}
.amenity-tag i { color: var(--primary); font-size: 12px; }
.amenity-tag:hover { background: var(--primary); color: var(--white); }
.amenity-tag:hover i { color: var(--gold); }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px;
    border: 1px solid var(--medium-gray);
    background: transparent;
    color: var(--body-text);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .gallery-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}
.gallery-item .gallery-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    z-index: 2;
    transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { transform: translate(-50%, -50%) scale(1); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 2;
    transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: 100%;
    padding: 0 20px;
}
.testimonial-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--gold); font-size: 18px; margin-bottom: 20px; }
.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 600;
}
.testimonial-location {
    font-size: 13px;
    color: var(--sage);
    margin-top: 4px;
}
.testimonial-quote {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    font-family: var(--font-heading);
    margin-bottom: -10px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--medium-gray);
    background: transparent;
    color: var(--body-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* =====================================================
   FORMS
   ===================================================== */
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}
.form-label .required { color: var(--danger); }
.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark-text);
    transition: var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27,67,50,0.1);
}
.form-control::placeholder { color: var(--medium-gray); }

textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-hint {
    font-size: 12px;
    color: var(--sage);
    margin-top: 4px;
}
.form-error {
    font-size: 12px;
    color: var(--danger);
    margin-top: 4px;
}

/* =====================================================
   BOOKING FORM (multi-step)
   ===================================================== */
.booking-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
    position: relative;
}
.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--medium-gray);
}
.step-item {
    position: relative;
    text-align: center;
    flex: 1;
    max-width: 160px;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--body-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}
.step-item.active .step-number {
    background: var(--primary);
    color: var(--white);
}
.step-item.completed .step-number {
    background: var(--gold);
    color: var(--white);
}
.step-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--body-text);
}
.step-item.active .step-label { color: var(--primary); font-weight: 600; }

.booking-step-content {
    display: none;
    animation: fadeUp 0.4s ease;
}
.booking-step-content.active { display: block; }

.step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--dark-text);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 12px;
    color: var(--body-text);
}
.faq-item.active .faq-question { color: var(--primary); }
.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--body-text);
}

/* =====================================================
   ABOUT / CTA SECTIONS
   ===================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow);
}
.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content { max-width: 520px; }
.about-content .section-label { text-align: left; }
.about-content h2 { text-align: left; }
.about-content .divider { margin: 16px 0; }
.about-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: var(--sage);
    margin-top: 4px;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('') center/cover;
    opacity: 0.1;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 30px; }

/* =====================================================
   DETAIL PAGE
   ===================================================== */
.detail-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    background: var(--primary-dark);
    overflow: hidden;
}
.detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.detail-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,42,29,0.9), transparent 60%);
}
.detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    width: 100%;
}
.detail-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.detail-meta {
    display: flex;
    gap: 24px;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    flex-wrap: wrap;
}
.detail-meta i { color: var(--gold); margin-right: 6px; }

.detail-content {
    padding: 60px 0;
}
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.detail-main { }
.detail-sidebar {
    position: sticky;
    top: 100px;
}

/* Sidebar booking card */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}
.sidebar-card-title {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.sidebar-card-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.sidebar-card .form-group { margin-bottom: 16px; }
.sidebar-card .btn-block { margin-top: 8px; }

/* Image gallery on detail page */
.detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
}
.detail-gallery-main {
    aspect-ratio: 16/10;
}
.detail-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-gallery-side {
    display: grid;
    gap: 8px;
}
.detail-gallery-side .gallery-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.detail-gallery-side .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.detail-gallery-side .gallery-thumb:hover img { transform: scale(1.05); }
.gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

/* Room list */
.room-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.room-item {
    padding: 16px;
    background: var(--light-gray);
    border-radius: var(--radius);
    text-align: center;
}
.room-item i { color: var(--primary); font-size: 20px; margin-bottom: 8px; display: block; }
.room-name { font-weight: 600; font-size: 14px; }
.room-size { font-size: 13px; color: var(--sage); }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-info-list { margin-top: 24px; }
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-label {
    font-size: 13px;
    color: var(--sage);
    margin-bottom: 2px;
}
.contact-info-value {
    font-weight: 600;
    color: var(--dark-text);
}
.contact-info-value a { color: var(--primary); }
.contact-info-value a:hover { color: var(--gold); }

/* =====================================================
   THANK YOU / 404 PAGE
   ===================================================== */
.thankyou-section,
.error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px;
}
.thankyou-icon,
.error-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
}
.thankyou-icon { background: #e8f5e9; color: #2e7d32; }
.error-icon { background: #fce4ec; color: #c62828; }
.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

/* =====================================================
   WHATSAPP FLOAT & BACK TO TOP
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 3000;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
    100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .detail-grid { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-accent { display: none; }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        padding: 100px 30px 40px;
        transition: var(--transition);
        z-index: 5000;
        overflow-y: auto;
    }
    .main-nav.open { right: 0; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-link {
        padding: 14px 0;
        font-size: 17px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-radius: 0;
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0 0 0 16px;
    }
    .dropdown a { color: rgba(255,255,255,0.7); padding: 10px 0; }
    .dropdown a:hover { color: var(--gold); background: transparent; padding-left: 0; }
    .has-dropdown:hover .dropdown { }

    .mobile-toggle { display: block; }

    .nav-cta { display: none; }

    .hero-scroll { display: none; }

    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    .card-grid-2,
    .card-grid-3 { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

    .detail-gallery { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .booking-steps::before { display: none; }
    .step-label { font-size: 11px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .stat-number { font-size: 1.8rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .whatsapp-float { bottom: 20px; left: 20px; width: 50px; height: 50px; font-size: 24px; }
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* ── Footer ── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.8); }
.footer-top { padding: 80px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
}
.footer-logo img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-tagline {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
}
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.social-links a:hover { background: var(--gold); transform: translateY(-3px); }

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}
.footer-contact i {
    color: var(--gold);
    width: 16px;
    text-align: center;
    margin-top: 4px;
}
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
