/* =========================================================================
   ASHLYHILLS PREMIUM STYLES
   ========================================================================= */

:root {
    --primary: #4338ca;
    --primary-hover: #3730a3;
    --secondary: #e11d48;
    --accent: #0f766e;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --text-main: #334155;
    --text-muted: #64748b;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;

    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 10px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 10px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px -5px rgba(0,0,0,0.1), 0 10px 20px -5px rgba(0,0,0,0.05);

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    --transition: all 0.4s cubic-bezier(0.16,1,0.3,1);

    /* AshlyHills Gold Theme */
    --gold: #B8955A;
    --gold-lt: #D4B483;
    --gold-dk: #8A6E3E;
    --ink: #0E0F0D;
    --cream: #FAF7F2;
    --mist: #F0EDE7;
    --slate: #64625E;
    --ah-border: rgba(184,149,90,0.18);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background-color: var(--light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-hover); }

/* --- Layout --- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-dark { background-color: var(--dark-light); color: var(--light); }
.section-dark h2,.section-dark h3 { color: var(--white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: #cbd5e1; }

/* --- Navigation --- */
.navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(184,149,90,0.12);
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    height: 100%;
}

.nav-logo { 
    font-family: 'Playfair Display', serif; 
    font-size: 1.6rem; 
    font-weight: 700; 
    display: flex; 
    align-items: center; 
    gap: 0.6rem; 
    color: var(--ink); 
    letter-spacing: 0.02em; 
    text-decoration: none;
    line-height: 1;
}

.nav-links { 
    display: flex; 
    gap: 2.2rem; 
    align-items: center; 
    height: 100%;
}

.nav-links a.nav-link { 
    color: var(--slate); 
    font-weight: 500; 
    font-size: 0.78rem; 
    text-transform: uppercase; 
    letter-spacing: 0.12em; 
    position: relative; 
    transition: color 0.3s ease; 
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-links a.nav-link:not(.nav-btn) { 
    height: 100%;
}

.nav-links a.nav-link:not(.nav-btn)::after { 
    content: ''; 
    position: absolute; 
    width: 0%; 
    height: 2px; 
    bottom: 25px; 
    left: 0; 
    background-color: var(--gold); 
    transition: width 0.3s ease; 
}

.nav-links a.nav-link:not(.nav-btn):hover::after { 
    width: 100%; 
}

.nav-links a.nav-link:hover { 
    color: var(--ink); 
}

/* User Profile in Navbar */
.nav-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    position: relative;
    padding: 0 0.5rem;
    height: 100%;
    transition: var(--transition);
}

.nav-user:hover {
    background: rgba(184,149,90,0.03);
}

.nav-avatar, .nav-avatar-placeholder {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    padding: 2px;
    box-sizing: border-box;
}

.nav-avatar {
    object-fit: cover;
}

.nav-avatar-placeholder {
    background: var(--mist);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-user-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.nav-btn { 
    padding: 0.7rem 1.8rem; 
    border-radius: 0; 
    border: 1px solid var(--ink); 
    color: var(--ink) !important; 
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    font-size: 0.72rem; 
    transition: all 0.3s ease;
    height: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    align-self: center;
    line-height: 1;
    background: transparent;
}

.nav-btn i {
    font-size: 0.72rem;
}

.nav-btn:hover { 
    background: var(--ink) !important; 
    color: var(--gold-lt) !important; 
}

.nav-btn-primary { 
    background: var(--ink) !important; 
    color: var(--gold-lt) !important; 
}

.nav-btn-primary:hover { 
    background: #000 !important; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
}

.nav-toggle { 
    display: none; 
    background: none; 
    border: none; 
    font-size: 1.4rem; 
    color: var(--ink); 
    cursor: pointer; 
}

@media (max-width: 992px) {
    .navbar { height: 70px; }
    .nav-toggle { display: block; }
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: white; 
        padding: 1.5rem 0; 
        box-shadow: var(--shadow-md); 
        gap: 1.5rem; 
        height: auto;
        border-top: 1px solid var(--ah-border);
    }
    .nav-links.active { display: flex; }
    .nav-link { height: auto !important; padding: 0.5rem 2rem !important; }
    .nav-link::after { display: none; }
    .nav-user { height: auto; padding: 0.5rem 2rem; border-top: 1px solid var(--ah-border); margin-top: 0.5rem; width: 100%; box-sizing: border-box; }
}

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.75rem; border-radius: var(--radius-sm); font-weight: 600; font-family: 'Montserrat', sans-serif; text-transform: uppercase; font-size: 0.85rem; cursor: pointer; transition: var(--transition); border: none; outline: none; gap: 0.5rem; letter-spacing: 0.05em; }
.btn-primary { background: var(--dark); color: var(--white); box-shadow: 0 4px 14px 0 rgba(15,23,42,0.2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,23,42,0.3); background: var(--primary); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.8); }
.btn-outline-light:hover { background: var(--white); color: var(--dark); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.875rem; border-radius: var(--radius-sm); }
.btn-danger { background: linear-gradient(135deg,#ef4444,#dc2626); color: var(--white); box-shadow: 0 4px 14px 0 rgba(239,68,68,0.3); }
.btn-danger:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(239,68,68,0.4); color: var(--white); }
.btn-success { background: linear-gradient(135deg,#10b981,#059669); color: var(--white); box-shadow: 0 4px 14px 0 rgba(16,185,129,0.3); }
.btn-success:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,185,129,0.4); color: var(--white); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1.5px solid #e2e8f0; }
.btn-ghost:hover { background: var(--light); color: var(--text-main); border-color: #cbd5e1; }
.btn-outline { background: transparent; border: 2px solid #e2e8f0; color: var(--text-main); }
.btn-outline:hover { border-color: var(--dark); background: var(--dark); color: white; }

/* --- Forms --- */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--dark); font-size: 0.95rem; }
.form-input { width: 100%; padding: 0.85rem 1.25rem; border: 2px solid transparent; border-radius: var(--radius-md); font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--dark); transition: var(--transition); background-color: #f1f5f9; }
.form-input:focus { border-color: var(--primary); background-color: var(--white); box-shadow: 0 0 0 4px rgba(99,102,241,0.15); outline: none; transform: translateY(-1px); }
.form-row { display: flex; gap: 1.5rem; }
.form-row .form-group { flex: 1; }

/* --- Auth --- */
.auth-wrapper { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; background: linear-gradient(135deg, #f8fafc, #e2e8f0); }
.auth-card { background: var(--white); width: 100%; max-width: 500px; border-radius: var(--radius-xl); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); padding: 3rem; }
.auth-header { text-align: center; margin-bottom: 2.5rem; }
.auth-header h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.auth-header p { color: var(--text-muted); }
.auth-footer { text-align: center; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e2e8f0; color: var(--text-muted); font-size: 0.95rem; }
.auth-footer a { font-weight: 600; }

/* --- Page Header --- */
.page-header { color: var(--white); padding: 4rem 0 3rem; text-align: center; }
.page-header h1 { color: var(--white); font-size: 3rem; margin-bottom: 1rem; }
.page-subtitle { font-size: 1.125rem; color: #cbd5e1; }

/* --- Empty States --- */
.empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; background: linear-gradient(145deg,#f8fafc,#f1f5f9); border-radius: var(--radius-xl); border: 2px dashed #cbd5e1; color: var(--text-muted); }
.empty-state i { font-size: 3.5rem; color: #94a3b8; margin-bottom: 1.25rem; }
.empty-state p { font-size: 1.125rem; margin-bottom: 1.5rem; color: var(--text-main); font-weight: 500; }

/* --- Flash Messages --- */
.flash-messages { position: fixed; top: 20px; right: 20px; z-index: 1050; display: flex; flex-direction: column; gap: 10px; }
.alert { padding: 1rem 1.5rem; border-radius: var(--radius-md); color: white; font-weight: 500; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.75rem; animation: slideInRight 0.3s ease-out forwards; }
.alert-success { background: var(--success); }
.alert-error { background: var(--danger); }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* --- Status Badges --- */
.status-badge { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.3rem 0.8rem; border-radius: 999px; font-size: 0.75rem; font-weight: 700; text-transform: capitalize; }
.status-pending { background: rgba(245,158,11,0.12); color: #d97706; }
.status-confirmed { background: rgba(99,102,241,0.12); color: var(--primary); }
.status-checked-in { background: rgba(16,185,129,0.12); color: var(--success); }
.status-checked-out { background: rgba(100,116,139,0.12); color: #475569; }
.status-cancelled { background: rgba(239,68,68,0.12); color: var(--danger); }
.status-paid { background: rgba(16,185,129,0.12); color: var(--success); }
.status-unpaid { background: rgba(245,158,11,0.12); color: #d97706; }
.status-refunded { background: rgba(100,116,139,0.12); color: #475569; }

/* --- Location Cards (old classes kept for compatibility) --- */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(350px,1fr)); gap: 2.5rem; margin-top: 2rem; }
.location-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.05); }
.location-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.location-image { position: relative; height: 250px; width: 100%; }
.location-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.location-card:hover .location-image img { transform: scale(1.05); }
.location-badge { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.9); color: var(--dark); padding: 0.5rem 1rem; border-radius: 30px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; box-shadow: var(--shadow-sm); z-index: 10; }
.location-info { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.location-address { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.location-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.location-desc { color: var(--text-main); line-height: 1.7; margin-bottom: 1.5rem; flex-grow: 1; }
.amenity-tag { background: var(--light); color: var(--dark); padding: 0.4rem 0.85rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500; border: 1px solid #e2e8f0; }

/* --- Category Cards (old classes kept for compatibility) --- */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(320px,1fr)); gap: 2rem; }
.category-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); display: flex; flex-direction: column; }
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.category-image { height: 200px; position: relative; }
.category-image img { width: 100%; height: 100%; object-fit: cover; }
.category-info { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.category-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #e2e8f0; }
.category-price { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.category-price small { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); }
.availability-badge { display: inline-block; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }

/* --- Detail / Calendar --- */
.location-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
@media (max-width: 992px) { .location-detail-grid { grid-template-columns: 1fr; } }
.detail-card { background: var(--white); border-radius: var(--radius-xl); padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-bottom: 2rem; border: 1px solid rgba(226,232,240,0.8); transition: var(--transition); }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 1rem; margin-bottom: 2rem; }
.amenity-item { display: flex; align-items: center; gap: 0.75rem; background: var(--light); padding: 1rem; border-radius: var(--radius-md); font-weight: 500; }
.amenity-item i { color: var(--accent); font-size: 1.25rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 0.25rem; margin-bottom: 1rem; }
.cal-day { background: var(--white); border: 1px solid #e2e8f0; border-radius: var(--radius-sm); padding: 0.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 60px; }
.cal-status-available .day-avail { background: rgba(16,185,129,0.1); color: var(--success); }
.cal-status-limited .day-avail { background: rgba(245,158,11,0.1); color: var(--warning); }
.cal-status-full .day-avail { background: rgba(239,68,68,0.1); color: var(--danger); opacity: 0.7; }
.day-num { font-weight: 600; font-size: 0.875rem; }
.day-avail { font-size: 0.7rem; font-weight: 700; padding: 2px 6px; border-radius: 10px; margin-top: 4px; }

/* --- Dashboard --- */
.dashboard-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
@media (max-width: 992px) { .dashboard-grid { grid-template-columns: 1fr; } }
.dashboard-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 2rem; margin-bottom: 2rem; }
.booking-item { border: 1px solid #e2e8f0; border-radius: var(--radius-lg); padding: 1.5rem; background: #ffffff; transition: var(--transition); }
.booking-item:hover { border-color: var(--primary); box-shadow: 0 10px 25px rgba(99,102,241,0.1); transform: translateY(-3px); }

/* --- Admin Panel --- */
.admin-layout { display: flex; min-height: 100vh; background-color: #f1f5f9; }
.admin-sidebar { width: 280px; min-width: 280px; flex-shrink: 0; background: var(--dark-light); color: var(--white); display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; overflow-y: auto; box-shadow: var(--shadow-xl); z-index: 100; }
.admin-sidebar.superadmin-sidebar { background: #070806; border-right: 2px solid var(--gold); }
.admin-sidebar-header { padding: 1.5rem 2rem; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid #334155; color: var(--white); background: var(--dark); }
.superadmin-sidebar .admin-sidebar-header { background: #000; color: var(--gold-lt); }
.superadmin-sidebar .admin-sidebar-header i { color: var(--gold); }
.admin-nav { display: flex; flex-direction: column; padding: 1.5rem 1rem; gap: 0.5rem; flex-grow: 1; }
.admin-nav-link { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.5rem; color: #cbd5e1; border-radius: var(--radius-md); font-weight: 500; transition: var(--transition); }
.admin-nav-link:hover,.admin-nav-link.active { background: rgba(255,255,255,0.1); color: var(--white); }
.superadmin-sidebar .admin-nav-link:hover, .superadmin-sidebar .admin-nav-link.active { background: rgba(184,149,90,0.1); color: var(--gold-lt); }
.admin-logout { margin-top: auto; color: #fca5a5 !important; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; }
.admin-logout:hover { background: rgba(239,68,68,0.1) !important; color: #ef4444 !important; }
.admin-content { flex-grow: 1; padding: 2rem; overflow-x: hidden; display: flex; flex-direction: column; gap: 2rem; }
.admin-header { display: flex; justify-content: space-between; align-items: center; background: var(--white); padding: 1.5rem 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.text-gold { color: var(--gold); }
.admin-stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; background: #f8fafc; color: var(--dark); }
.stat-purple .admin-stat-icon { color: #8b5cf6; background: rgba(139,92,246,0.1); }
.stat-green .admin-stat-icon { color: var(--success); background: rgba(5,150,105,0.1); }
.admin-stat-info { display: flex; flex-direction: column; }
.admin-stat-number { font-size: 1.75rem; font-weight: 800; color: var(--dark); line-height: 1.2; font-family: 'Playfair Display', serif; }
.admin-stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; }
.admin-stat-card { background: var(--white); padding: 1.5rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 1.5rem; position: relative; overflow: hidden; }
.admin-stat-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.stat-blue::before { background: var(--primary); }
.stat-green::before { background: var(--success); }
.stat-purple::before { background: #8b5cf6; }
.stat-orange::before { background: var(--warning); }
.data-table { width: 100%; border-collapse: collapse; min-width: 800px; }
.data-table th,.data-table td { padding: 1.25rem 1.5rem; text-align: left; border-bottom: 1px solid #e2e8f0; }
.data-table th { background: #f8fafc; color: var(--text-muted); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
.bookings-table-wrap,.data-table-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow-x: auto; }
.admin-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.admin-item-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); display: flex; flex-direction: column; border: 1px solid #e2e8f0; }
.admin-item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cbd5e1; }
.admin-item-img { width: 100%; height: 200px; object-fit: cover; }
.admin-item-img-placeholder { width: 100%; height: 200px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: #cbd5e1; }
.admin-item-info { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.admin-item-info h4 { font-size: 1.25rem; font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; color: var(--dark); }
.admin-item-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; flex-grow: 1; }
.admin-item-actions { display: flex; gap: 0.75rem; border-top: 1px solid #f1f5f9; padding-top: 1rem; }

/* --- Admin Categories & Header --- */
.categories-admin-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; align-items: start; margin-top: 2rem; }
@media (max-width: 992px) { .categories-admin-grid { grid-template-columns: 1fr; } }
.add-category-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #e2e8f0; }
.add-category-icon { font-size: 2rem; color: var(--primary); }
.add-category-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.25rem; }
.categories-list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #e2e8f0; margin-top:0; }
.category-count-badge { background: #f1f5f9; color: var(--text-muted); padding: 0.35rem 0.85rem; border-radius: 2rem; font-size: 0.85rem; font-weight: 600; }
.categories-items { display: flex; flex-direction: column; gap: 1rem; }
.category-list-item { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; border: 1px solid #e2e8f0; border-radius: var(--radius-md); transition: var(--transition); background: var(--white); }
.category-list-item:hover { border-color: #cbd5e1; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.category-item-left { display: flex; align-items: center; gap: 1.25rem; }
.category-index { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: #f8fafc; border-radius: var(--radius-sm); font-weight: 700; color: #94a3b8; font-size: 1.1rem; }
.category-item-info { display: flex; flex-direction: column; }
.category-item-name { font-weight: 600; font-size: 1.1rem; color: var(--dark); margin-bottom: 0.25rem; font-family: 'Playfair Display', serif; }
.category-item-id { font-size: 0.85rem; color: var(--text-muted); font-family: monospace; }
.category-item-actions { display: flex; gap: 0.5rem; }
.btn-secondary-outline { border: 1px solid #cbd5e1; color: var(--text-main); background: transparent; padding: 0.45rem 1rem; font-size: 0.85rem; border-radius: var(--radius-sm); text-decoration: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; font-family: 'Montserrat', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-secondary-outline:hover { background: #f8fafc; color: var(--primary); border-color: var(--primary); }
.btn-danger-outline { border: 1px solid #fca5a5; color: var(--danger); background: transparent; padding: 0.45rem 1rem; font-size: 0.85rem; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; font-family: 'Montserrat', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-danger-outline:hover { background: #fef2f2; }
.admin-header-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.25rem; }
.admin-header-left { display: flex; flex-direction: column; margin:0;}
.admin-user { display: flex; align-items: center; gap: 1rem; font-weight: 500; }
.admin-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.admin-avatar-placeholder { width: 40px; height: 40px; border-radius: 50%; background: #e2e8f0; display: flex; align-items: center; justify-content: center; color: #94a3b8; }

/* --- Admin Profile --- */
.profile-grid { display: grid; grid-template-columns: 2.2fr 1fr; gap: 2rem; align-items: start; margin-top: 2rem; }
@media (max-width: 992px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-card-center { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1rem 0; }
.profile-avatar-lg { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 1.5rem; border: 4px solid #fff; box-shadow: var(--shadow-md); }
.profile-avatar-placeholder-lg { width: 120px; height: 120px; border-radius: 50%; background: #f1f5f9; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; color: #cbd5e1; margin-bottom: 1.5rem; border: 4px solid #fff; box-shadow: var(--shadow-sm); }
.profile-card-center h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 0.25rem; font-family: 'Playfair Display', serif; }
.profile-card-center p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.profile-card-center p i { color: var(--primary); margin-right: 0.5rem; }
.form-input-file { padding: 0.6rem; background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: var(--radius-md); transition: var(--transition); }
.form-input-file:hover { border-color: var(--primary); background: #f1f5f9; }

/* =========================================================================
   NEW AH-* COMPONENT STYLES  (public pages)
   ========================================================================= */

/* ── SHARED PAGE HEADER ── */
.ah-ph { position: relative; padding: 9rem 0 6rem; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.ah-ph-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.ah-ph-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(14,15,13,.68), rgba(14,15,13,.92)); }
.ah-ph-body { position: relative; z-index: 2; animation: ahFadeUp .8s cubic-bezier(.22,1,.36,1) both; }
@keyframes ahFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.ah-kicker { display: inline-flex; align-items: center; gap: 12px; font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 20px; font-weight: 300; }
.ah-kicker::before,.ah-kicker::after { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); opacity: .5; }
.ah-ph h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5.5vw,4.5rem); font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 14px; }
.ah-ph h1 em { font-style: italic; color: var(--gold-lt); }
.ah-ph p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.6); letter-spacing: .04em; }

/* ── HERO ── */
.ah-hero { position: relative; height: 100vh; min-height: 680px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ah-hero-bg { position: absolute; inset: 0; background: url('/images/luxury_apartment_sri_lanka.png') center/cover no-repeat; }
.ah-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(165deg, rgba(14,15,13,.72) 0%, rgba(14,15,13,.38) 45%, rgba(14,15,13,.80) 100%); }
.ah-hero-body { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 820px; animation: ahFadeUp .9s cubic-bezier(.22,1,.36,1) both; }
.ah-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,6.5vw,5.5rem); font-weight: 700; color: #fff; line-height: 1.06; margin-bottom: 22px; }
.ah-hero h1 em { font-style: italic; color: var(--gold-lt); }
.ah-hero-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,.65); letter-spacing: .04em; line-height: 1.75; margin-bottom: 48px; max-width: 560px; margin-left: auto; margin-right: auto; }
.ah-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── AH BUTTONS ── */
.btn-gold { display: inline-block; padding: 14px 42px; background: var(--gold); color: var(--ink); font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background .25s, transform .2s; }
.btn-gold:hover { background: var(--gold-lt); color: var(--ink); transform: translateY(-2px); }
.btn-ghost-w { display: inline-block; padding: 13px 42px; border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.85); font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; transition: border-color .25s, color .25s, transform .2s; }
.btn-ghost-w:hover { border-color: var(--gold); color: var(--gold-lt); transform: translateY(-2px); }
.btn-white { display: inline-block; padding: 14px 40px; background: #fff; color: var(--ink); font-size: .75rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; transition: background .25s, transform .2s; }
.btn-white:hover { background: var(--gold-lt); color: var(--ink); transform: translateY(-2px); }
.btn-book { display: block; text-align: center; padding: 13px; background: transparent; border: 1px solid rgba(184,149,90,.4); color: var(--gold-lt); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; transition: background .25s, color .25s; }
.btn-book:hover { background: var(--gold); color: var(--ink); }

/* ── SEARCH BAR ── */
.ah-search { position: relative; z-index: 10; margin-top: -52px; }
.ah-search-inner { max-width: 960px; margin: 0 auto; background: rgba(255,255,255,.97); border: 1px solid var(--ah-border); box-shadow: 0 24px 64px rgba(14,15,13,.14); display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; overflow: hidden; }
.ah-sf { padding: 22px 24px; border-right: 1px solid var(--ah-border); display: flex; flex-direction: column; gap: 5px; }
.ah-sf label { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.ah-sf select,.ah-sf input { background: transparent; border: none; outline: none; font-family: 'Montserrat', sans-serif; font-size: .92rem; font-weight: 300; color: var(--ink); cursor: pointer; width: 100%; }
.ah-sf select option { background: #fff; color: var(--ink); }
.ah-search-btn { display: flex; align-items: center; justify-content: center; padding: 0 32px; background: var(--ink); color: var(--gold-lt); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; font-family: 'Montserrat', sans-serif; gap: 8px; transition: background .25s; white-space: nowrap; }
.ah-search-btn:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 900px) { .ah-search-inner { grid-template-columns: 1fr 1fr; } .ah-search-btn { grid-column: 1/-1; padding: 18px; } }
@media (max-width: 600px) { .ah-search-inner { grid-template-columns: 1fr; } }

/* ── STATS BAR ── */
.ah-stats { background: var(--ink); display: flex; justify-content: center; flex-wrap: wrap; }
.ah-stat { flex: 1; max-width: 240px; padding: 36px 28px; border-right: 1px solid rgba(255,255,255,.07); text-align: center; text-decoration: none; display: block; }
.ah-stat:last-child { border-right: none; }
.ah-stat-n { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 600; color: var(--gold-lt); display: flex; align-items: baseline; justify-content: center; gap: 4px; line-height: 1; margin-bottom: 6px; }
.ah-stat-n .si { font-size: 1rem; color: #F59E0B; }
.ah-stat-l { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.38); font-weight: 300; }

/* ── SECTION BASE ── */
.ah-section { padding: 96px 48px; }
.ah-sec-label { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 14px; }
.ah-sec-h { font-family: 'Playfair Display', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 600; color: var(--ink); margin-bottom: 10px; line-height: 1.12; }
.ah-sec-h em { font-style: italic; color: var(--gold-dk); }
.ah-rule { width: 48px; height: 1px; background: var(--gold); opacity: .55; margin-bottom: 48px; }
@media (max-width: 900px) { .ah-section { padding: 64px 24px; } }

/* ── MARQUEE ── */
.ah-features { background: var(--mist); border-top: 1px solid var(--ah-border); border-bottom: 1px solid var(--ah-border); padding: 36px 0; overflow: hidden; }
.ah-marquee { display: flex; gap: 52px; animation: ahMarquee 28s linear infinite; white-space: nowrap; }
@keyframes ahMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ah-fi { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ah-fi i { color: var(--gold); font-size: .35rem; }
.ah-fi span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--slate); font-weight: 400; }

/* ── LOCATION CARDS (new) ── */
.ah-locs { background: var(--cream); }
.ah-locs-inner { max-width: 1200px; margin: 0 auto; }
.ah-locs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 24px; }
.ah-loc-card { background: #fff; border: 1px solid var(--ah-border); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .3s, transform .3s; }
.ah-loc-card:hover { box-shadow: 0 20px 56px rgba(14,15,13,.1); transform: translateY(-4px); }
.ah-loc-img { height: 240px; position: relative; overflow: hidden; }
.ah-loc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.ah-loc-card:hover .ah-loc-img img { transform: scale(1.05); }
.ah-loc-badge { position: absolute; top: 16px; right: 16px; background: rgba(14,15,13,.82); color: var(--gold-lt); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; padding: 5px 12px; font-weight: 400; }
.ah-loc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.ah-loc-body h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.ah-loc-addr { font-size: .83rem; font-weight: 300; color: var(--slate); display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.ah-loc-addr i { color: var(--gold); font-size: .85rem; }
.ah-loc-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.ah-tag { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--ah-border); color: var(--slate); padding: 4px 10px; }
.ah-loc-desc { font-size: .87rem; font-weight: 300; color: var(--slate); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.ah-loc-cta { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color .22s, gap .22s; }
.ah-loc-cta:hover { color: var(--gold-dk); gap: 14px; }
.ah-loc-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.ah-cinfo { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--slate); font-weight: 300; }
.ah-cinfo i { color: var(--gold); width: 14px; text-align: center; }

/* ── APARTMENT TYPE CARDS ── */
.ah-types { background: var(--ink); padding-bottom: 96px; }
.ah-types .ah-sec-h { color: #fff; }
.ah-types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1px; background: rgba(255,255,255,.06); max-width: 1200px; margin: 0 auto; }
.ah-type-card { background: #131410; overflow: hidden; display: flex; flex-direction: column; transition: background .3s; }
.ah-type-card:hover { background: #1a1b17; }
.ah-type-img { height: 210px; overflow: hidden; position: relative; }
.ah-type-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1); }
.ah-type-card:hover .ah-type-img img { transform: scale(1.04); }
.ah-type-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.ah-type-body h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; margin-bottom: 8px; }
.ah-type-desc { font-size: .84rem; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.ah-type-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07); }
.ah-type-price { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold-lt); font-weight: 600; }
.ah-type-price small { font-size: .8rem; color: rgba(255,255,255,.35); font-family: 'Montserrat', sans-serif; font-weight: 300; }
.ah-type-guests { font-size: .8rem; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 6px; }
.ah-type-rating { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: rgba(255,255,255,.45); text-decoration: none; margin-top: 10px; }
.ah-type-rating i { color: #F59E0B; font-size: .8rem; }
.ah-type-rating strong { color: #fff; }
.ah-type-tag { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); padding: 4px 10px; }
.ah-type-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }

/* ── AVAILABILITY BADGES ── */
.ah-avail { display: inline-block; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; margin-top: 14px; }
.av-ok { background: rgba(16,185,129,.1); color: #34D399; border: 1px solid rgba(16,185,129,.2); }
.av-low { background: rgba(245,158,11,.1); color: #FCD34D; border: 1px solid rgba(245,158,11,.2); }
.av-no { background: rgba(239,68,68,.1); color: #F87171; border: 1px solid rgba(239,68,68,.2); }

/* ── APARTMENT PAGE FILTER BAR ── */
.ah-filter-bar { background: var(--ink); padding: 0 48px; display: flex; gap: 0; overflow-x: auto; border-bottom: 1px solid rgba(255,255,255,.06); }
.ah-filter-btn { display: inline-block; padding: 18px 28px; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.38); text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; transition: color .22s, border-color .22s; font-weight: 400; }
.ah-filter-btn:hover { color: var(--gold-lt); }
.ah-filter-btn.active { color: var(--gold-lt); border-bottom-color: var(--gold); }
@media (max-width: 768px) { .ah-filter-bar { padding: 0 16px; } }

/* ── APARTMENT CARDS ── */
.ah-apt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 24px; max-width: 1300px; margin: 0 auto; }
.ah-apt-card { background: #fff; border: 1px solid var(--ah-border); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .3s, transform .3s; }
.ah-apt-card:hover { box-shadow: 0 20px 60px rgba(14,15,13,.1); transform: translateY(-4px); }
.ah-apt-img { height: 220px; position: relative; overflow: hidden; }
.ah-apt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.ah-apt-card:hover .ah-apt-img img { transform: scale(1.05); }
.ah-apt-loc-badge { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px 12px; background: linear-gradient(to top, rgba(14,15,13,.8), transparent); color: #fff; font-size: .75rem; font-weight: 300; font-family: 'Playfair Display', serif; font-style: italic; }
.ah-apt-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ah-apt-body h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.ah-apt-desc { font-size: .84rem; font-weight: 300; color: var(--slate); line-height: 1.65; flex: 1; margin-bottom: 18px; }
.ah-apt-meta { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 1px solid var(--ah-border); border-bottom: 1px solid var(--ah-border); margin-bottom: 14px; }
.ah-apt-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.ah-apt-price small { font-size: .78rem; color: var(--slate); font-family: 'Montserrat', sans-serif; font-weight: 300; }
.ah-apt-guests { font-size: .8rem; color: var(--slate); display: flex; align-items: center; gap: 6px; }
.ah-apt-guests i { color: var(--gold); }
.ah-rating-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ah-rating-lnk { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--slate); text-decoration: none; }
.ah-rating-lnk i { color: #F59E0B; font-size: .8rem; }
.ah-rating-lnk strong { color: var(--ink); }

/* ── REVIEWS PAGE ── */
.ah-rev-layout { display: grid; grid-template-columns: 300px 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; align-items: start; }
.ah-sum-card { background: #fff; border: 1px solid var(--ah-border); padding: 36px; position: sticky; top: 96px; }
.ah-sum-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--ah-border); }
.ah-big-rating { text-align: center; margin-bottom: 28px; }
.ah-big-num { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 700; color: var(--ink); line-height: 1; }
.ah-big-stars { color: #F59E0B; font-size: 1.2rem; margin: 8px 0; }
.ah-big-count { font-size: .8rem; color: var(--slate); font-weight: 300; letter-spacing: .06em; }
.ah-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ah-bar-lbl { width: 38px; text-align: right; font-size: .78rem; color: var(--slate); flex-shrink: 0; }
.ah-bar-lbl i { color: #F59E0B; font-size: .65rem; }
.ah-bar-track { flex: 1; height: 6px; background: var(--mist); overflow: hidden; }
.ah-bar-fill { height: 100%; background: var(--gold); transition: width .6s cubic-bezier(.22,1,.36,1); }
.ah-bar-count { width: 26px; text-align: right; font-size: .78rem; color: var(--slate); }
.ah-rev-card { background: #fff; border: 1px solid var(--ah-border); padding: 32px; margin-bottom: 20px; transition: box-shadow .25s; }
.ah-rev-card:hover { box-shadow: 0 8px 32px rgba(14,15,13,.07); }
.ah-rev-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.ah-rev-author { display: flex; align-items: center; gap: 14px; }
.ah-rev-av { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--ink); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; flex-shrink: 0; }
.ah-rev-name { font-size: .95rem; font-weight: 500; color: var(--ink); }
.ah-rev-sub { font-size: .78rem; color: var(--slate); font-weight: 300; margin-top: 2px; }
.ah-rev-date { font-size: .78rem; color: var(--slate); font-weight: 300; }
.ah-rev-stars { color: #F59E0B; font-size: .9rem; margin-bottom: 12px; }
.ah-rev-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: .98rem; color: var(--ink); line-height: 1.75; margin: 0; }
.ah-rev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.ah-rev-quote { font-family: 'Playfair Display', serif; font-size: 1rem; font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: 24px; }
.ah-rev-loc { font-size: .75rem; color: var(--slate); font-weight: 300; }
@media (max-width: 900px) { .ah-rev-layout { grid-template-columns: 1fr; } .ah-sum-card { position: static; } }

/* ── LOCATION DETAIL ── */
.ah-detail-section { padding: 64px 48px; background: var(--cream); }
.ah-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; max-width: 1200px; margin: 0 auto; align-items: start; }
.ah-detail-card { background: #fff; border: 1px solid var(--ah-border); padding: 40px; margin-bottom: 32px; }
.ah-detail-img { width: 100%; height: 460px; object-fit: cover; margin-bottom: 36px; display: block; }
.ah-detail-sec-h { display: flex; align-items: center; gap: 12px; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 20px; }
.ah-detail-sec-h::before { content: ''; display: block; width: 4px; height: 1.1em; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.ah-detail-body-text { font-size: .97rem; font-weight: 300; line-height: 1.85; color: var(--slate); margin-bottom: 36px; }
.ah-amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 10px; margin-bottom: 36px; }
.ah-amenity-item { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--mist); font-size: .87rem; font-weight: 400; }
.ah-amenity-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.ah-contact-list { display: flex; flex-direction: column; gap: 10px; }
.ah-contact-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--mist); }
.ah-contact-item i { color: var(--gold); font-size: 1.1rem; width: 18px; text-align: center; }
.ah-contact-item span { font-size: .9rem; font-weight: 400; color: var(--ink); }
.ah-sidebar-card { background: #fff; border: 1px solid var(--ah-border); padding: 32px; margin-bottom: 24px; }
.ah-sidebar-h { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 24px; }
.ah-sidebar-h::before { content: ''; display: block; width: 4px; height: 1em; background: var(--gold); border-radius: 2px; }
.ah-sidebar-h i { font-size: .9rem; color: var(--gold); }
.btn-book-full { display: block; text-align: center; padding: 16px; background: var(--ink); color: var(--gold-lt); font-size: .73rem; letter-spacing: .22em; text-transform: uppercase; text-decoration: none; transition: background .25s; border: none; width: 100%; cursor: pointer; font-family: 'Montserrat', sans-serif; }
.btn-book-full:hover { background: var(--gold); color: var(--ink); }
.btn-login-book { display: block; text-align: center; padding: 16px; background: var(--gold); color: var(--ink); font-size: .73rem; letter-spacing: .22em; text-transform: uppercase; text-decoration: none; transition: background .25s; }
.btn-login-book:hover { background: var(--gold-lt); }
.ah-login-note { font-size: .82rem; color: var(--slate); font-weight: 300; text-align: center; margin-bottom: 16px; line-height: 1.6; }
.ah-types-section { background: var(--ink); padding: 80px 48px; }
.ah-types-h { max-width: 1200px; margin: 0 auto 48px; }
.ah-types-h h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 600; color: #fff; margin-bottom: 10px; }
.ah-types-h h2 em { font-style: italic; color: var(--gold-lt); }
.ah-types-h .ah-sec-label { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 14px; }
.ah-types-h .ah-rule { width: 48px; height: 1px; background: var(--gold); opacity: .55; margin-bottom: 0; }
.cal-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cal-nav-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--ah-border); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cal-nav-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.cal-month { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--ink); }
#calGrid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-bottom: 16px; }
.cal-day-header { text-align: center; font-size: .6rem; letter-spacing: .1em; color: var(--slate); padding: 4px 0; text-transform: uppercase; }
.cal-day-empty { height: 32px; }
.cal-status-available { background: rgba(16,185,129,.1); color: #059669; }
.cal-status-limited { background: rgba(245,158,11,.1); color: #D97706; }
.cal-status-full { background: rgba(239,68,68,.08); color: #DC2626; }
.cal-status-past { color: var(--ah-border); }
.cal-legend { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--ah-border); }
.cal-leg-item { display: flex; align-items: center; gap: 5px; font-size: .65rem; color: var(--slate); }
.cal-dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-a { background: #10B981; } .dot-l { background: #F59E0B; } .dot-f { background: #EF4444; }
@media (max-width: 1000px) { .ah-detail-grid { grid-template-columns: 1fr; } .ah-sidebar-card { position: static; } .ah-detail-section { padding: 48px 24px; } .ah-types-section { padding: 64px 24px; } }

/* ── CTA SECTION ── */
.ah-cta { background: var(--ink); position: relative; overflow: hidden; text-align: center; padding: 96px 48px; }
.ah-cta::before { content: 'A'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Playfair Display', serif; font-size: 38vw; color: rgba(184,149,90,.03); pointer-events: none; user-select: none; line-height: 1; }
.ah-cta .ah-sec-h { color: #fff; }
.ah-cta p { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 520px; margin: 0 auto 44px; letter-spacing: .04em; }
.ah-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── EMPTY STATE (ah style) ── */
.ah-empty { text-align: center; padding: 6rem 2rem; background: #fff; border: 1px solid var(--ah-border); }
.ah-empty i { font-size: 3rem; color: var(--ah-border); margin-bottom: 16px; display: block; }
.ah-empty h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 8px; color: var(--ink); }
.ah-empty p { font-size: .9rem; color: var(--slate); font-weight: 300; margin-bottom: 24px; }

/* =========================================================================
   FOOTER  —  redesigned to match gold/cream theme
   ========================================================================= */

.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,.5);
    padding: 72px 0 0;
    margin-top: 0;
    border-top: 1px solid rgba(184,149,90,.15);
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 56px;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-container { padding: 0 24px; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Brand column */
.footer-col:first-child .footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-lt);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    letter-spacing: .04em;
}

.footer-col:first-child .footer-brand-name i {
    color: var(--gold);
    font-size: 1.3rem;
}

.footer-col:first-child > p {
    font-size: .87rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,.38);
    max-width: 260px;
}

/* Column headings — remove old h3/h4 heavy styles */
.footer-col h3,
.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    background: none;
    -webkit-text-fill-color: unset;
}

/* Links */
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a {
    font-size: .87rem;
    font-weight: 300;
    color: rgba(255,255,255,.38);
    text-decoration: none;
    transition: color .22s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold-lt); }

/* Contact items (no anchor) */
.footer-col ul li i {
    color: var(--gold);
    font-size: .85rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.footer-col ul li span,
.footer-col ul li > *:not(a):not(i) {
    font-size: .87rem;
    font-weight: 300;
    color: rgba(255,255,255,.38);
}

/* Divider */
.footer-bottom {
    border-top: 1px solid rgba(184,149,90,.12);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom p {
    font-size: .72rem;
    letter-spacing: .1em;
    color: rgba(255,255,255,.22);
    font-weight: 300;
}