:root {
    /* Design Tokens */
    --gold: #c8a24a;
    --gold-dark: #b08a34;
    --gold-light: #e0b85a;
    --black: #0b0b0c;
    --black-light: #1a1a1c;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    
    --font-main: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; }

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    transition: top 0.3s;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
}
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

:where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid rgba(200, 162, 74, 0.7);
    outline-offset: 3px;
}

:where(button) { font-family: inherit; }

/* Layout Containers */
.container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Promo Bar */
.promo-bar {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: transparent;
    transition: var(--transition);
    padding: 1.25rem 0;
}

body.has-promo-bar .main-header { top: 40px; }

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left { display: flex; align-items: center; gap: 1rem; }
.header-logo-icon img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255,255,255,0.98);
    padding: 3px;
    border: 2px solid var(--gold);
    image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 640px) {
    .header-logo-icon img { width: 56px; height: 56px; padding: 3px; }
}
.brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}
.scrolled .brand-name { color: var(--black); }

.main-nav { display: none; }
@media (min-width: 1024px) { .main-nav { display: block; } }

.nav-links { display: flex; gap: 2rem; }
.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-caret { width: 1rem; height: 1rem; }
.scrolled .nav-link { color: var(--gray-600); }
.scrolled .nav-link:hover { color: var(--gold); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }

/* Hero Section */
.hero-modern {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(200, 162, 74, 0.2);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(2.25rem, 6.5vw, 3.75rem);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    margin-bottom: 2.25rem;
    opacity: 0.9;
}

.hero-cta-group { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
}

.hero-scroll-indicator:hover { color: var(--white); }

.scroll-arrow { width: 1.25rem; height: 1.25rem; }

.hero-image-counter {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--black);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}
.btn-hero-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-hero-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); }

/* Booking Widget */
.booking-modern {
    margin-top: -3rem;
    position: relative;
    z-index: 20;
}

.booking-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.booking-header { margin-bottom: 1.25rem; }
.booking-title { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 0.25rem; }
.booking-subtitle { color: var(--gray-600); font-size: 0.95rem; }

.alert-success, .alert-error {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    font-weight: 600;
}

.alert-icon { width: 1.25rem; height: 1.25rem; margin-top: 0.125rem; }

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #065f46;
}

.alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #7f1d1d;
}

.field-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.field-icon { width: 1.25rem; height: 1.25rem; color: var(--gold); }

.field-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}
.field-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 162, 74, 0.1); }

.btn-booking-submit {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
}
.btn-booking-submit:hover { background: var(--gold); color: var(--black); }

.booking-help { margin-top: 0.75rem; text-align: center; color: var(--gray-600); font-weight: 600; }
.help-link { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.help-link:hover { color: var(--gold); }

/* About Section */
.about-modern { padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.about-image-wrapper { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-image-wrapper { aspect-ratio: 4 / 3; }
.about-image { width: 100%; height: 100%; object-fit: cover; }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0));
    z-index: 1;
    pointer-events: none;
}

.about-image-wrapper > img { position: relative; z-index: 0; }
.image-badge { z-index: 2; }

.image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number { display: block; font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.badge-text { font-size: 0.875rem; color: var(--gray-600); font-weight: 600; }

.section-label { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.875rem; margin-bottom: 1rem; }
.section-title { font-size: 2.5rem; margin-bottom: 1.25rem; }
.about-description { font-size: 1.125rem; color: var(--gray-600); margin-bottom: 2.5rem; }

.about-features { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-icon { font-size: 1.5rem; background: var(--gray-50); padding: 0.75rem; border-radius: var(--radius-md); }
.feature-content h4 { font-family: var(--font-main); font-size: 1.125rem; margin-bottom: 0.25rem; }
.feature-content p { font-size: 0.875rem; color: var(--gray-600); }

/* Rooms & Halls */
.rooms-modern, .halls-modern { padding: 6rem 0; background: var(--gray-50); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); }

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

.room-card, .hall-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.room-card:hover, .hall-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }

.room-image-wrapper, .hall-image-wrapper { position: relative; height: 240px; overflow: hidden; }
.room-card-image, .hall-card-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.room-card:hover .room-card-image, .hall-card:hover .hall-card-image { transform: scale(1.1); }

.room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.room-card:hover .room-overlay { opacity: 1; }

.room-view-btn {
    background: rgba(255,255,255,0.92);
    color: var(--black);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.room-view-btn svg { width: 1.25rem; height: 1.25rem; }
.room-view-btn:hover { background: var(--white); }

.room-card-content, .hall-card-content { padding: 1.5rem; }
.room-card-title, .hall-card-title { font-size: 1.35rem; margin-bottom: 0.6rem; }
.room-card-description, .hall-card-description { color: var(--gray-600); margin-bottom: 1.25rem; font-size: 0.9rem; }

.room-card-link, .hall-card-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow { width: 1.1rem; height: 1.1rem; }

.hall-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.55);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
}

.section-footer { text-align: center; margin-top: 2.5rem; }

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-delay-1, .fade-in-delay-2, .fade-in-delay-3, .fade-in-delay-4, .fade-in-delay-5 {
    opacity: 0;
    transform: translateY(10px);
    animation: tv-hero-fade 0.9s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.22s; }
.fade-in-delay-3 { animation-delay: 0.34s; }
.fade-in-delay-4 { animation-delay: 0.46s; }
.fade-in-delay-5 { animation-delay: 0.58s; }

@keyframes tv-hero-fade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
    .fade-in { opacity: 1 !important; transform: none !important; }
    .fade-in-delay-1, .fade-in-delay-2, .fade-in-delay-3, .fade-in-delay-4, .fade-in-delay-5 { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* Mobile Menu Panel */
.mobile-menu-panel {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 200;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full);
    padding: 0.75rem;
    color: var(--white);
    cursor: pointer;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-label {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-toggle {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 210;
}

@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
}

.scrolled .mobile-toggle { color: var(--black); }
.mobile-menu-open .mobile-toggle { color: var(--white); }

/* Dropdown Panel */
.nav-item-dropdown { position: relative; }
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    padding: 1rem 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown.is-open .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-panel:focus-within { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-link {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--gray-50);
    color: var(--gold);
}

/* Header Right */
.header-right { display: flex; align-items: center; gap: 1.5rem; }

.btn-login, .btn-profile {
    background: var(--gold);
    color: var(--black);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

.btn-login:hover, .btn-profile:hover { background: var(--gold-dark); }

.btn-modern-primary {
    background: var(--gold);
    color: var(--black);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-modern-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-modern-secondary {
    background: transparent;
    border: 2px solid rgba(200, 162, 74, 0.6);
    color: var(--gold-dark);
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-modern-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Video Showcase */
.video-showcase { padding: 4rem 0 6rem; background: var(--white); }

.video-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.video-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.video-brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo-small {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: contain;
    background: rgba(255,255,255,0.98);
    padding: 3px;
    image-rendering: -webkit-optimize-contrast;
}
.video-brand h3 { font-family: var(--font-main); font-size: 1.05rem; margin: 0; }
.video-brand p { color: var(--gray-600); font-size: 0.875rem; margin: 0.1rem 0 0; }

.video-wrapper { background: var(--black); }
.video-wrapper { aspect-ratio: 16 / 9; }
.showcase-video { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-content { padding: 1.75rem; }
.video-content h4 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 0.5rem; }
.video-content p { color: var(--gray-600); margin-bottom: 1.25rem; }

.btn-full-width { width: 100%; }

/* CTA */
.cta-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(11,11,12,1) 0%, rgba(26,26,28,1) 100%);
    color: var(--white);
}

.cta-content { text-align: center; max-width: 820px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.cta-subtitle { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 1.75rem; }

.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn-whatsapp, .btn-call {
    padding: 0.9rem 1.35rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
}

.btn-whatsapp { background: #22c55e; color: #052e16; }
.btn-whatsapp:hover { filter: brightness(0.95); transform: translateY(-2px); }

.btn-call { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: var(--white); }
.btn-call:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.btn-icon { width: 1.25rem; height: 1.25rem; }

/* Footer */
.modern-footer { background: var(--black); color: var(--white); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.footer-logo img { width: 56px; height: 56px; border-radius: 50%; }
.footer-logo img {
    object-fit: contain;
    background: rgba(255,255,255,0.98);
    padding: 3px;
    border: 2px solid rgba(200, 162, 74, 0.6);
    image-rendering: -webkit-optimize-contrast;
}
.footer-brand-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; }
.footer-tagline { color: var(--gray-400); max-width: 300px; }

.footer-links h4, .footer-contact h4 { font-family: var(--font-main); font-size: 1.125rem; margin-bottom: 1.5rem; color: var(--gold); }
.footer-links a { display: block; color: var(--gray-400); text-decoration: none; margin-bottom: 0.75rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { color: var(--gray-400); margin-bottom: 0.75rem; }

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .section-title { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-cta-group { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .booking-card { padding: 1.5rem; }
    .rooms-grid, .halls-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .cta-buttons { flex-direction: column; }
    .btn-whatsapp, .btn-call { width: 100%; justify-content: center; }
}

@media (min-width: 480px) and (max-width: 768px) {
    .about-features { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .feature-item { gap: 0.85rem; }
    .feature-icon { padding: 0.6rem; }
}

@media (min-width: 900px) {
    .rooms-grid, .halls-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .room-image-wrapper, .hall-image-wrapper { height: 210px; }
    .about-features { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
    .feature-item { flex-direction: column; gap: 0.6rem; }
    .feature-icon { width: fit-content; }
}
