﻿/* ==========================================================================
   DER FINALE BARBERSHOP - LUXURY MODERN STYLESHEET
   ========================================================================== */

:root {
    --bg-dark: #0a0b0e;
    --bg-card: rgba(18, 20, 26, 0.7);
    --bg-panel: rgba(22, 25, 33, 0.85);
    --primary-gold: #d4af37;
    --primary-gold-hover: #b89628;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --text-primary: #ffffff;
    --text-secondary: #a0a5b5;
    --text-muted: #6b7280;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.3);
    --status-open: #10b981;
    --status-closed: #ef4444;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

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

button, input, select, textarea {
    font-family: inherit;
}

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

/* Glassmorphism Classes */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.glass-frame {
    background: rgba(18, 20, 26, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gold-gradient {
    background: linear-gradient(135deg, #fff2b2 0%, #d4af37 50%, #aa8010 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.badge-gold {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    border: 1px solid var(--border-gold);
}

.badge-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b89628 100%);
    color: #000;
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e5c14e 0%, #c9a334 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.45);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(220, 39, 67, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #20ba59;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
}

.pulse-glow {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
}

.navbar {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--primary-gold);
    display: block;
    letter-spacing: 2px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-gold);
}

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

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-sm);
    color: var(--primary-gold);
}

.lang-icon { font-size: 0.9rem; }

.lang-selector select {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.lang-selector select option {
    background-color: #12141a;
    color: #fff;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    font-size: 1.3rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (Luxury Dark Gradient without noisy image)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 50% 25%, rgba(212, 175, 55, 0.14) 0%, rgba(10, 11, 14, 0.96) 65%, var(--bg-dark) 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(10, 11, 14, 0.3) 0%, rgba(10, 11, 14, 0.85) 80%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-logo-wrapper {
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.2rem;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.stat-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.stat-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   STATUS BAR SECTION
   ========================================================================== */
.status-bar-section {
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.status-bar-card {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    border: 1px solid var(--border-gold);
}

.status-indicator-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-dot-wrapper {
    position: relative;
    width: 16px; height: 16px;
}

.status-dot {
    width: 14px; height: 14px;
    background-color: var(--status-open);
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 12px var(--status-open);
    animation: pulseDot 2s infinite;
}

.status-dot.closed {
    background-color: var(--status-closed);
    box-shadow: 0 0 12px var(--status-closed);
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.status-label {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    display: block;
}

.status-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hours-quick-summary {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hours-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.hours-chip.closed {
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.day-name {
    font-weight: 700;
    color: var(--primary-gold);
    margin-right: 0.3rem;
}

.hours-chip.closed .day-name {
    color: #ef4444;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 6rem 0;
}

.about-card {
    padding: 3.5rem 3rem;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    background: rgba(212, 175, 55, 0.04);
}

.feature-icon {
    font-size: 1.6rem;
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.feature-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   SERVICES & PRICING
   ========================================================================== */
.services-section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.service-card {
    padding: 2.2rem 1.8rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.service-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.service-badge.gold {
    background: var(--primary-gold);
    color: #000;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 1.2rem;
}

.service-name {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border-light);
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.price-list-container {
    padding: 2.5rem;
}

.price-table-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-gold);
}

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

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.price-item:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(4px);
}

.price-title {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
}

.price-sub {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-left: 1rem;
}

/* ==========================================================================
   BOOKING SECTION & BARBER SELECTION
   ========================================================================== */
.booking-section {
    padding: 6rem 0;
}

.booking-wrapper {
    padding: 3.5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-gold);
}

.booking-header {
    margin-bottom: 2.5rem;
}

/* Salon Closed Banner */
.salon-closed-banner {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 1.3rem 1.6rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.salon-closed-banner i {
    font-size: 2rem;
    color: #ef4444;
    flex-shrink: 0;
}

.salon-closed-banner strong {
    font-size: 1.1rem;
    color: #fff;
    display: block;
    margin-bottom: 0.2rem;
}

.salon-closed-banner p {
    font-size: 0.9rem;
    margin: 0;
}

/* Barber Selection Cards Grid */
.barber-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 0.6rem;
}

.barber-card {
    padding: 1.2rem 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.barber-card:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.barber-card.active {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.barber-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.barber-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.barber-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.barber-check-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--primary-gold);
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.barber-card.active .barber-check-icon {
    opacity: 1;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-gold);
}

.form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.07);
}

.form-control option {
    background-color: #161921;
    color: #fff;
}

.form-help-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Time Slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.8rem;
    margin-top: 0.5rem;
    max-height: 240px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.time-slot-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    padding: 0.65rem 0.5rem;
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    transition: var(--transition);
}

.time-slot-btn span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.time-slot-btn small {
    font-size: 0.7rem;
    color: var(--status-open);
}

.time-slot-btn:hover:not(:disabled) {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.time-slot-btn.selected {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.time-slot-btn.selected small {
    color: #000;
    font-weight: 700;
}

.time-slot-btn.booked, .time-slot-btn.past, .time-slot-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.02);
}

.time-slot-btn.booked small, .time-slot-btn.past small {
    color: var(--status-closed);
}

.slots-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem;
    color: var(--text-muted);
}

.slots-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    display: block;
}

.form-actions {
    margin-top: 2.5rem;
}

/* ==========================================================================
   GOOGLE REVIEW SECTION
   ========================================================================== */
.review-invite-section {
    padding: 5rem 0 2rem 0;
}

.review-card {
    padding: 3.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.16) 0%, rgba(18, 20, 26, 0.9) 100%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), var(--shadow-gold);
}

.review-stars {
    font-size: 2.2rem;
    color: #fbbf24;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
}

.review-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.review-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2.2rem auto;
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.contact-info-card {
    padding: 3rem 2.5rem;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.detail-row {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.detail-icon {
    font-size: 1.3rem;
    color: var(--primary-gold);
    width: 44px; height: 44px;
    background: rgba(212, 175, 55, 0.1);
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.detail-row h4 {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.detail-row p {
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--primary-gold);
}

.contact-quick-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-map-wrapper {
    min-height: 420px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #060709;
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.3));
    border-radius: 4px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.6rem;
    max-width: 350px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.admin-badge-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gold);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-badge-btn:hover {
    background: rgba(212, 175, 55, 0.15);
}

.footer-bottom {
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   MODAL & 6-DIGIT CODE
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
}

.modal-backdrop.active {
    display: flex;
}

.modal-box {
    padding: 3rem 2.5rem;
    max-width: 520px;
    width: 100%;
    border: 1px solid var(--border-gold);
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--status-open);
    margin-bottom: 1.2rem;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.auth-code-container {
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed var(--primary-gold);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    margin: 1.5rem 0;
}

.auth-code-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.3rem;
}

.auth-code-display {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-gold);
    letter-spacing: 4px;
}

.auth-code-container small {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.3rem;
}

.modal-message {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(10, 11, 14, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-light);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.2rem;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.4rem;
    }

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

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

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        padding: 2rem 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .status-bar-card {
        padding: 1.2rem;
    }
}