/* ===== Plaza RAH Homestay — Booking System Styles ===== */
/* Color scheme: Deep Teal #0D7377 primary, Warm Gold #C49B3C accent */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    transition: background 0.3s ease, color 0.3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0D7377;
    --primary-dark: #095B5E;
    --primary-light: #E0F2F1;
    --accent: #C49B3C;
    --accent-dark: #A88430;
    --accent-light: #F5EDDA;
    --cream: #FDF9F0;
    --cream-dark: #F0EBE0;
    --green: #2E7D32;
    --green-light: #E8F5E9;
    --red: #C62828;
    --red-light: #FFEBEE;
    --dark: #1A1A2E;
    --text: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg: #FDF9F0;
    --bg-card: #FFFFFF;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

/* Dark Mode */
[data-theme="dark"] {
    --text: #E0E0E0;
    --text-light: #A0A0A0;
    --bg: #121218;
    --bg-card: #1E1E2E;
    --cream: #181820;
    --cream-dark: #252535;
    --primary-light: #1A3A3C;
    --accent-light: #2A2520;
    --green-light: #1A2E1A;
    --red-light: #2A1515;
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute; top: -100px; left: 0; background: var(--primary);
    color: white; padding: 8px 16px; z-index: 10000; font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text); line-height: 1.3; }
h2 { font-size: 2.2rem; margin-bottom: 0.5rem; }
h3 { font-size: 1.3rem; }

.section-subtitle {
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(253, 249, 240, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13,115,119,0.1);
    transition: var(--transition);
}
[data-theme="dark"] .nav {
    background: rgba(18,18,24,0.95);
    border-bottom-color: rgba(13,115,119,0.2);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 12px 24px;
}
.nav-logo {
    font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--primary);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    font-size: 0.88rem; font-weight: 500; color: var(--text);
    transition: color var(--transition); position: relative;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--primary); color: var(--white) !important;
    padding: 8px 20px; border-radius: 24px; font-size: 0.85rem; font-weight: 600;
}
.nav-cta:hover { background: var(--primary-dark); color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.nav-controls { display: flex; align-items: center; gap: 12px; }

/* Language Toggle */
.lang-toggle { display: flex; gap: 4px; background: rgba(13,115,119,0.08); padding: 4px; border-radius: 20px; }
.lang-btn {
    padding: 6px 14px; border-radius: 16px; font-size: 0.8rem; font-weight: 600;
    cursor: pointer; background: transparent; color: var(--text-light); border: none; transition: all 0.2s;
}
.lang-btn:hover { background: rgba(13,115,119,0.15); }
.lang-btn.active { background: var(--primary); color: white; }

/* Theme Toggle */
.theme-toggle {
    width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--primary);
    background: transparent; color: var(--text); font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.theme-toggle:hover { background: var(--primary-light); }
.theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: inline; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(13,115,119,0.7), rgba(26,26,46,0.65));
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    padding: 6px 16px; border-radius: 20px; margin-bottom: 20px;
    color: #F5EDDA; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 1px; text-transform: uppercase;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 520px; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px; border-radius: 24px;
    color: var(--white); font-size: 0.85rem;
}
.hero-tag svg { width: 16px; height: 16px; opacity: 0.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 28px; font-weight: 600;
    font-size: 0.95rem; transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary {
    background: var(--primary); color: var(--white);
    box-shadow: 0 4px 20px rgba(13,115,119,0.4);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(13,115,119,0.5); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-block { width: 100%; justify-content: center; }

/* ===== INFO BANNERS ===== */
.info-banner { padding: 20px 0; text-align: center; color: var(--white); }
.info-banner .container { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.banner-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.banner-inner span { font-size: 0.95rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.muslim-banner { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.medical-banner { background: linear-gradient(135deg, #1565C0, #1976D2); }
.divider { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }

/* ===== GALLERY ===== */
.gallery { background: var(--cream); }
.gallery-filter {
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px;
}
.filter-btn {
    padding: 8px 20px; border-radius: 20px; border: 2px solid var(--primary);
    background: transparent; color: var(--primary); font-size: 0.85rem;
    font-weight: 500; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { background: var(--primary-light); }
.filter-btn.active { background: var(--primary); color: white; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
}
.gallery-item {
    position: relative; border-radius: var(--radius-sm); overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.4));
    opacity: 0; transition: opacity var(--transition);
    display: flex; align-items: flex-end; padding: 12px;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: white; font-size: 0.85rem; font-weight: 500; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92); display: none;
    align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 90%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    background: rgba(255,255,255,0.15); border: none; color: white;
    width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
    font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15); border: none; color: white;
    width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
    font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.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: 0.85rem;
}

/* ===== AMENITIES / FEATURES ===== */
.amenities-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.amenity-card {
    background: var(--bg-card); border-radius: var(--radius); padding: 28px 24px;
    border: 1px solid var(--cream-dark); transition: all var(--transition);
}
.amenity-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.amenity-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 1.5rem;
}
.amenity-icon.primary { background: var(--primary-light); }
.amenity-icon.accent { background: rgba(13,115,119,0.1); color: var(--primary); }
.amenity-icon.gold { background: var(--accent-light); color: var(--accent); }
.amenity-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.amenity-card p { font-size: 0.88rem; color: var(--text-light); }

/* ===== BOOKING SECTION ===== */
.booking { background: linear-gradient(135deg, var(--dark), #2D2D44); color: var(--white); }
.booking .section-subtitle { color: var(--accent); }
.booking .section-header h2 { color: var(--white); }
.booking .section-header p { color: rgba(255,255,255,0.7); }
.booking-container { max-width: 900px; margin: 0 auto; }

/* Pricing Quick Ref */
.pricing-quick-ref {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    margin-bottom: 32px;
}
.price-tag {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm); padding: 16px; text-align: center;
    transition: all var(--transition);
}
.price-tag:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.price-tag.featured { border-color: var(--accent); background: rgba(196,155,60,0.15); }
.price-tag.discount-tag { border-color: #4CAF50; background: rgba(76,175,80,0.1); }
.price-label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.price-amount { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--accent); }
.price-amount span { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-family: 'Inter', sans-serif; }

/* Calendar */
.calendar-wrapper { margin-bottom: 32px; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.calendar-nav {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); width: 40px; height: 40px; border-radius: 50%;
    cursor: pointer; font-size: 1.1rem; display: flex; align-items: center;
    justify-content: center; transition: all var(--transition);
}
.calendar-nav:hover { background: rgba(255,255,255,0.2); }
.calendar-month { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day-name {
    text-align: center; font-size: 0.75rem; font-weight: 600;
    color: rgba(255,255,255,0.5); padding: 8px 0; text-transform: uppercase;
}
.calendar-day {
    text-align: center; padding: 10px 4px; border-radius: var(--radius-sm);
    font-size: 0.9rem; cursor: pointer; transition: all var(--transition);
    color: rgba(255,255,255,0.8); position: relative;
}
.calendar-day:hover:not(.disabled):not(.empty) { background: rgba(255,255,255,0.1); }
.calendar-day.empty { cursor: default; }
.calendar-day.disabled { color: rgba(255,255,255,0.25); cursor: not-allowed; }
.calendar-day.today { border: 1px solid var(--accent); }
.calendar-day.selected {
    background: var(--primary); color: var(--white); font-weight: 600;
}
.calendar-day.in-range { background: rgba(13,115,119,0.3); border-radius: 0; }
.calendar-day.check-in { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.calendar-day.check-out { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.calendar-day.unavailable {
    text-decoration: line-through; color: rgba(255,255,255,0.2); cursor: not-allowed;
}
.calendar-day.peak::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%; background: var(--accent);
}
.calendar-day .price-tooltip {
    display: none; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
    background: var(--dark); color: var(--white); padding: 4px 8px; border-radius: 4px;
    font-size: 0.7rem; white-space: nowrap; z-index: 10;
}
.calendar-day:hover .price-tooltip { display: block; }

.calendar-legend { display: flex; gap: 20px; margin-top: 12px; flex-wrap: wrap; }
.calendar-legend span {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.8rem; color: rgba(255,255,255,0.6);
}
.legend-dot { width: 12px; height: 12px; border-radius: 3px; }
.legend-dot.available { background: rgba(255,255,255,0.15); }
.legend-dot.selected-legend { background: var(--primary); }
.legend-dot.in-range-legend { background: rgba(13,115,119,0.3); }
.legend-dot.booked { background: var(--red); opacity: 0.6; }
.legend-dot.peak { background: var(--accent); }

/* ===== BOOKING FORM ===== */
.booking-form { margin-top: 32px; }
.form-title { color: var(--white); margin-bottom: 20px; font-size: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 0; }
.form-group.full { grid-column: span 2; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.7); margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
    color: var(--white); font-size: 0.95rem; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
}
.form-group select option { color: var(--dark); background: var(--white); }
.form-group textarea { resize: vertical; }

.booking-summary {
    background: rgba(255,255,255,0.08); border-radius: var(--radius);
    padding: 24px; margin: 24px 0; border: 1px solid rgba(255,255,255,0.1);
}
.booking-summary h4 { color: var(--accent); margin-bottom: 16px; }
.summary-row {
    display: flex; justify-content: space-between; padding: 8px 0;
    font-size: 0.9rem; color: rgba(255,255,255,0.7);
}
.summary-row.total {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 12px; margin-top: 4px;
    font-size: 1.1rem; font-weight: 700; color: var(--white);
}
.summary-row.total span:last-child { color: var(--accent); }
.summary-row.final-row { font-size: 1.2rem; }
.summary-row.deposit-row { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.btn-whatsapp {
    width: 100%; background: #25D366; color: var(--white);
    padding: 16px; border-radius: var(--radius); border: none;
    font-size: 1.05rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all var(--transition);
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
.btn-whatsapp:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-submit {
    width: 100%; background: var(--primary); color: var(--white);
    padding: 16px; border-radius: var(--radius); border: none;
    font-size: 1.05rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all var(--transition); margin-top: 12px;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.booking-note {
    text-align: center; margin-top: 12px;
    font-size: 0.82rem; color: rgba(255,255,255,0.5);
}

/* ===== POOL SCHEDULE ===== */
.pool-section { background: var(--bg-card); }
.pool-schedule {
    max-width: 700px; margin: 0 auto; border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--cream-dark);
}
.pool-slot {
    display: flex; align-items: center; padding: 24px 28px;
    border-bottom: 1px solid var(--cream-dark); gap: 20px;
}
.pool-slot:last-child { border-bottom: none; }
.pool-slot.female { background: var(--primary-light); }
[data-theme="dark"] .pool-slot.female { background: var(--primary-light); }
.pool-time { min-width: 130px; font-weight: 700; font-size: 1.05rem; color: var(--primary); }
.pool-info h4 { font-size: 1rem; margin-bottom: 4px; }
.pool-info p { font-size: 0.85rem; color: var(--text-light); }
.pool-icon { font-size: 1.6rem; }

/* ===== PRICING CARDS ===== */
.pricing { background: var(--cream); }
.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px; margin-bottom: 40px;
}
.pricing-card {
    background: var(--bg-card); border-radius: var(--radius); padding: 36px 28px;
    text-align: center; border: 2px solid transparent;
    transition: all var(--transition); position: relative; overflow: hidden;
}
.pricing-card.featured { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.pricing-card.featured::before {
    content: 'Most Popular'; position: absolute; top: 16px; right: -30px;
    background: var(--accent); color: var(--white);
    padding: 4px 40px; font-size: 0.72rem; font-weight: 600;
    transform: rotate(45deg); letter-spacing: 1px;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-label {
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-light); margin-bottom: 8px;
}
.pricing-price {
    font-family: 'Playfair Display', serif; font-size: 2.8rem;
    color: var(--primary); line-height: 1.2;
}
.pricing-price span { font-size: 1rem; color: var(--text-light); }
.pricing-period { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li {
    padding: 8px 0; font-size: 0.9rem; color: var(--text);
    display: flex; align-items: center; gap: 8px; justify-content: center;
}
.pricing-features li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }
.discount-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); border-radius: var(--radius); padding: 32px;
    display: flex; align-items: center; justify-content: center; gap: 16px;
    flex-wrap: wrap; text-align: center;
}
.discount-banner h3 { color: var(--white); font-size: 1.4rem; }
.discount-amount {
    font-size: 2rem; font-weight: 700; background: rgba(255,255,255,0.2);
    padding: 8px 24px; border-radius: 12px;
}

/* ===== LOCATION ===== */
.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.map-container {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); aspect-ratio: 4/3;
}
.map-container iframe { width: 100%; height: 100%; border: none; }
.location-info h3 { margin-bottom: 16px; }
.nearby-list { margin-bottom: 32px; }
.nearby-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid var(--cream-dark);
}
.nearby-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0;
}
.nearby-icon.primary { background: var(--primary-light); }
.nearby-icon.accent { background: rgba(13,115,119,0.1); }
.nearby-icon.gold { background: var(--accent-light); }
.nearby-item h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; }
.nearby-item p { font-size: 0.83rem; color: var(--text-light); }
.directions-box {
    background: var(--bg-card); border-radius: var(--radius); padding: 24px;
    border: 1px solid var(--cream-dark);
}
.directions-box h4 { margin-bottom: 12px; }
.directions-box li {
    padding: 6px 0; font-size: 0.9rem; color: var(--text);
    display: flex; align-items: flex-start; gap: 8px;
    list-style: none;
}
.directions-box li::before { content: '→'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* ===== HOUSE RULES ===== */
.rules-section { background: var(--bg-card); }
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.rules-card {
    background: var(--cream); border-radius: var(--radius); padding: 28px;
    border: 1px solid var(--cream-dark);
}
.rules-card h3 { margin-bottom: 16px; font-size: 1.1rem; color: var(--primary); }
.rules-card li {
    padding: 6px 0; font-size: 0.88rem; color: var(--text);
    display: flex; align-items: flex-start; gap: 10px;
    list-style: none;
}
.rules-card li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.rules-notice {
    margin-top: 32px; padding: 20px 28px;
    background: var(--primary-light); border-radius: var(--radius);
    border: 1px solid var(--primary); text-align: center;
}
.rules-notice p { font-size: 0.95rem; color: var(--primary-dark); font-weight: 500; }
[data-theme="dark"] .rules-notice p { color: var(--accent); }

/* ===== CONTACT ===== */
.contact { background: var(--bg-card); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { margin-bottom: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; }
.contact-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.contact-icon.whatsapp { background: rgba(37,211,102,0.1); color: #25D366; }
.contact-icon.phone { background: var(--primary-light); color: var(--primary); }
.contact-icon.clock { background: var(--accent-light); color: var(--accent); }
.contact-icon.location { background: var(--primary-light); color: var(--primary); }
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; }
.contact-item p { font-size: 0.85rem; color: var(--text-light); }
.contact-item a { color: var(--primary); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

.btn-whatsapp-large {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: #25D366; color: var(--white); padding: 20px 32px;
    border-radius: var(--radius); font-size: 1.1rem; font-weight: 600;
    transition: all var(--transition); text-align: center;
}
.btn-whatsapp-large:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: 0 4px 20px rgba(37,211,102,0.4); }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark); color: rgba(255,255,255,0.6);
    padding: 48px 0 24px;
}
.footer-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center; font-size: 0.8rem;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    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: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed; bottom: 24px; right: 96px; z-index: 999;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(13,115,119,0.3);
    opacity: 0; visibility: hidden; transition: all var(--transition);
    cursor: pointer; border: none; font-size: 1.2rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); }

/* ===== TOAST ===== */
.toast {
    position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--dark); color: var(--white); padding: 12px 24px;
    border-radius: var(--radius-sm); font-size: 0.9rem; z-index: 10000;
    opacity: 0; transition: all 0.3s ease; pointer-events: none;
    box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed; inset: 0; z-index: 9998;
    background: rgba(0,0,0,0.5); display: flex; flex-direction: column;
    align-items: center; justify-content: center; color: white;
}
.spinner {
    width: 40px; height: 40px; border: 4px solid rgba(255,255,255,0.3);
    border-top-color: var(--accent); border-radius: 50%;
    animation: spin 0.8s linear infinite; margin-bottom: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 10001;
    background: rgba(0,0,0,0.6); display: flex;
    align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}
.modal-content {
    background: var(--bg-card); border-radius: var(--radius);
    padding: 32px; max-width: 500px; width: 90%; max-height: 85vh;
    overflow-y: auto; position: relative;
}
.modal-close {
    position: absolute; top: 12px; right: 12px; background: none;
    border: none; font-size: 1.5rem; color: var(--text-light);
    cursor: pointer; padding: 4px 8px;
}
.modal-close:hover { color: var(--text); }

/* ===== PRINT STYLES ===== */
@media print {
    .nav, .whatsapp-float, .scroll-top, .mobile-toggle,
    .theme-toggle, .lang-toggle, .btn-whatsapp { display: none !important; }
    .hero { min-height: auto; padding: 40px 0; }
    .hero-bg img { display: none; }
    .hero-overlay { background: var(--primary) !important; }
    body { background: white !important; color: black !important; }
    section { padding: 30px 0 !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    h2 { font-size: 1.8rem; }
    section { padding: 60px 0; }
    .nav-links { display: none; }
    .nav-links.active {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg); padding: 20px 24px;
        border-bottom: 1px solid var(--cream-dark); gap: 16px;
    }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1rem; }
    .hero-highlights { gap: 8px; }
    .hero-tag { font-size: 0.78rem; padding: 6px 12px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.featured { grid-column: span 2; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-quick-ref { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .location-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .pool-slot { flex-direction: column; gap: 8px; }
    .pool-time { min-width: auto; }
    .footer-inner { flex-direction: column; text-align: center; }
    .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
    .scroll-top { right: 80px; bottom: 16px; }
    .rules-grid { grid-template-columns: 1fr; }
    .info-banner .container { flex-direction: column; gap: 8px; }
    .banner-inner { flex-direction: column; gap: 8px; }
    .divider { display: none; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.featured { grid-column: span 1; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
    .pricing-quick-ref { grid-template-columns: 1fr 1fr; }
}