@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Great+Vibes&display=swap');

:root {
    --pink:        #e91e90;
    --pink-mid:    #f06292;
    --pink-light:  #fce4ec;
    --purple:      #7b2d8e;
    --dark-violet: #4a0e6b;
    --gold:        #9c27b0;
    --gold-hover:  #7b1fa2;
    --gold-glow:   rgba(156,39,176,0.25);

    --bg:          #ffffff;
    --surface:     #ffffff;
    --surface-2:   #f9f4fc;
    --border:      #eeddf5;
    --border-dark: #d8b8e8;

    --text-primary: #2e003e;
    --text-muted:   #6a2c7a;
    --text-light:   #9e7ab0;

    --success: #27ae60;
    --pending: #e67e22;
    --danger:  #e74c3c;

    --font-serif: 'Playfair Display', serif;
    --font-sans:  'Outfit', sans-serif;
    --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);

    --radius:    16px;
    --radius-sm: 10px;
    --shadow:    0 2px 12px rgba(74,14,107,0.10);
    --shadow-md: 0 6px 24px rgba(74,14,107,0.14);
    --shadow-lg: 0 12px 40px rgba(74,14,107,0.18);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ══ NAVBAR ══ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(74,14,107,0.07);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    transition: justify-content 0.35s ease, height 0.35s ease, padding 0.35s ease;
}

.navbar.scrolled {
    justify-content: space-between;
    height: 80px;
}

.nav-brand-scrolled {
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: opacity 0.35s ease, width 0.35s ease;
    pointer-events: none;
}

.navbar.scrolled .nav-brand-scrolled {
    opacity: 1;
    width: 340px;
    pointer-events: auto;
}

/* Compress menu links when navbar is scrolled to prevent wrapping */
.navbar.scrolled .nav-menu {
    gap: 2px !important;
    flex-wrap: nowrap !important;
}

.navbar.scrolled .nav-link {
    padding: 6px 10px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
}

.navbar.scrolled .nav-btn {
    padding: 6px 15px !important;
    margin-left: 4px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-container { display: inline-block; transition: var(--transition); }
.nav-logo-container:hover { transform: scale(1.05); }
.nav-logo { height: 60px; width: auto; object-fit: contain; display: block; }

.palace-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.palace-name {
    font-family: 'Great Vibes', cursive;
    font-size: 2.1rem;
    background: linear-gradient(135deg, var(--dark-violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.palace-ac {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: var(--dark-violet);
    background: var(--surface-2);
}

.nav-btn {
    background: linear-gradient(135deg, var(--purple), var(--pink)) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 9px 22px !important;
    margin-left: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(233,30,144,0.25);
}
.nav-btn:hover {
    background: linear-gradient(135deg, var(--dark-violet), var(--purple)) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(74,14,107,0.35) !important;
}

/* ── Container ── */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 70px;
}

/* ══ HERO ══ */
.hero {
    background: linear-gradient(135deg, var(--surface-2) 0%, #fff5fd 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    padding: 70px 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content:'';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(233,30,144,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content:'';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(74,14,107,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 18px;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto 30px;
    line-height: 1.75;
}

/* ══ SECTION TITLE ══ */
.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 12px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--pink));
    margin: 12px auto 0;
    border-radius: 2px;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 580px;
    margin: 0 auto 40px;
}

/* ══ CARDS / PANELS ══ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}
.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--border-dark);
}

/* Keep .glass-panel as alias for card so old PHP still works */
.glass-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.glass-panel:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-dark);
}

/* ══ STATS ══ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}
.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--border-dark);
}
.stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ══ HALL CARDS ══ */
.grid-halls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}
.hall-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.hall-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--border-dark);
}
.hall-img-wrapper { position: relative; height: 220px; overflow: hidden; }
.hall-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.hall-card:hover .hall-img { transform: scale(1.06); }
.hall-capacity-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--border-dark);
    color: var(--dark-violet);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
}
.hall-info { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.hall-name { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-primary); margin-bottom: 10px; }
.hall-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; flex-grow: 1; line-height: 1.65; }
.features-list { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.feature-tag {
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--purple);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 500;
}
.hall-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.hall-price-label { font-size: 0.82rem; color: var(--text-light); }
.hall-price-val {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ══ BUTTONS ══ */
.btn {
    display: inline-block;
    padding: 11px 28px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    font-family: var(--font-sans);
}
.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    box-shadow: 0 4px 16px rgba(156,39,176,0.30);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-violet), var(--purple));
    box-shadow: 0 6px 22px rgba(74,14,107,0.40);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--purple);
    color: var(--purple);
}
.btn-outline:hover {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}
.btn-sm { padding: 6px 16px; font-size: 0.80rem; }

/* ══ FORM ══ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; }
.form-control {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 15px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.93rem;
    outline: none;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(123,45,142,0.10);
}
select.form-control option { background-color: #fff; color: var(--text-primary); }

/* ══ ESTIMATOR ══ */
.estimator-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    margin-bottom: 60px;
}
@media (max-width:900px) { .estimator-layout { grid-template-columns: 1fr; } }

.panel-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 12px;
    margin-top: 8px;
}
.select-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.select-card:hover { border-color: var(--border-dark); box-shadow: var(--shadow); }
.select-card.active { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(123,45,142,0.10); background: var(--surface-2); }
.select-card input[type="radio"],
.select-card input[type="checkbox"] { position: absolute; top: 13px; right: 13px; accent-color: var(--purple); }
.select-card-title { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.select-card-price { font-size: 0.85rem; color: var(--purple); font-weight: 600; }
.select-card-desc { font-size: 0.76rem; color: var(--text-light); margin-top: 4px; line-height: 1.3; }

.slider-container { display: flex; align-items: center; gap: 14px; }
.range-slider { flex-grow: 1; accent-color: var(--purple); height: 5px; border-radius: 3px; }
.slider-val {
    min-width: 66px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 5px 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-panel { padding: 28px; display: flex; flex-direction: column; }
.summary-item { display: flex; justify-content: space-between; margin-bottom: 14px; font-size: 0.93rem; color: var(--text-muted); }
.summary-item.total {
    border-top: 1.5px solid var(--border);
    padding-top: 18px;
    margin-top: 18px;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}
.summary-item.total span:last-child {
    background: linear-gradient(135deg, var(--dark-violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.btn-book { margin-top: 22px; width: 100%; }

/* ══ TABLE ══ */
.table-responsive { overflow-x: auto; width: 100%; margin-bottom: 28px; }
.table-glass { width: 100%; border-collapse: collapse; text-align: left; }
.table-glass th, .table-glass td { padding: 13px 18px; border-bottom: 1px solid var(--border); }
.table-glass th { font-weight: 700; color: var(--dark-violet); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; background: var(--surface-2); }
.table-glass tr:hover td { background: var(--surface-2); }

/* ══ STATUS BADGES ══ */
.status-badge { display: inline-block; padding: 4px 12px; border-radius: 30px; font-size: 0.78rem; font-weight: 600; }
.status-pending  { background: rgba(230,126,34,0.10); border: 1px solid var(--pending); color: var(--pending); }
.status-approved { background: rgba(39,174,96,0.10);  border: 1px solid var(--success); color: var(--success); }
.status-cancelled{ background: rgba(231,76,60,0.10);  border: 1px solid var(--danger);  color: var(--danger); }

/* ══ ALERTS ══ */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 28px; display: flex; align-items: center; gap: 10px; font-size: 0.93rem; }
.alert-success { background: rgba(39,174,96,0.08);  border: 1px solid rgba(39,174,96,0.25);  color: var(--success); }
.alert-danger  { background: rgba(231,76,60,0.08);  border: 1px solid rgba(231,76,60,0.25);  color: var(--danger); }

/* ══ BOOKING SUCCESS ══ */
.booking-success-card { text-align: center; padding: 40px; max-width: 580px; margin: 40px auto; }
.success-icon {
    font-size: 3.2rem;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}
.success-id {
    font-family: monospace;
    background: var(--surface-2);
    border: 1px solid var(--border-dark);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 1.05rem;
    color: var(--purple);
    display: inline-block;
    margin: 14px 0;
}

/* ══ FOOTER ══ */
footer {
    background: var(--surface-2);
    border-top: 1px solid var(--border);
    padding: 50px 20px 30px;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-muted);
}
footer .footer-brand { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px; }
footer .footer-logo { height: 55px; width: auto; }
footer .footer-palace-name {
    font-family: 'Great Vibes', cursive;
    font-size: 1.9rem;
    background: linear-gradient(135deg, var(--dark-violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
footer .footer-palace-ac { font-size: 0.72rem; font-weight: 700; color: var(--purple); letter-spacing: 4px; text-transform: uppercase; }
footer p { margin-bottom: 8px; line-height: 1.6; }
footer .footer-socials { display: flex; justify-content: center; gap: 18px; margin-bottom: 24px; font-size: 1.3rem; }
footer .footer-socials a { color: var(--text-light); transition: var(--transition); }
footer .footer-socials a:hover { color: var(--pink); transform: scale(1.2); }
footer .footer-copy { font-size: 0.8rem; color: var(--text-light); border-top: 1px solid var(--border); padding-top: 18px; margin-top: 10px; }

/* ══ WHATSAPP FAB ══ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.6); }
.whatsapp-float::before {
    content: '';
    position: absolute;
    top:0; left:0;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: waPulse 2s infinite;
    z-index: -1;
}
@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 1; }
    100% { transform: scale(1.65); opacity: 0; }
}
.wa-tooltip {
    position: absolute;
    right: 72px;
    background: var(--dark-violet);
    color: #fff;
    padding: 7px 14px;
    border-radius: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; visibility: visible; right: 76px; }

/* ══ CALENDAR ══ */
.calendar-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto 50px;
}
.cal-header {
    background: linear-gradient(135deg, var(--dark-violet), var(--purple));
    color: #fff;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cal-header h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; }
.cal-nav-btn {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.30);
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.cal-nav-btn:hover { background: rgba(255,255,255,0.32); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.cal-day-head {
    padding: 12px 0;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    background: var(--surface-2);
    letter-spacing: 0.5px;
}
.cal-day {
    padding: 14px 0;
    text-align: center;
    font-size: 0.9rem;
    cursor: default;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    transition: background 0.2s;
    font-weight: 500;
}
.cal-day:nth-child(7n) { border-right: none; }
.cal-day.empty { background: #fafafa; color: #ccc; }
.cal-day.available { color: var(--success); font-weight: 700; }
.cal-day.booked { background: rgba(231,76,60,0.06); color: var(--danger); font-weight: 700; text-decoration: line-through; }
.cal-day.today { background: rgba(74, 14, 107, 0.08) !important; font-weight: 700; }
.cal-legend { display: flex; gap: 22px; justify-content: center; padding: 16px; border-top: 1px solid var(--border); }
.cal-legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); }
.cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-available { background: var(--success); }
.dot-booked { background: var(--danger); }

/* ══ EVENTS ══ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}
.event-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border-dark); }
.event-card-img { width: 100%; height: 190px; object-fit: cover; display: block; }
.event-card-body { padding: 20px; }
.event-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.badge-recent   { background: rgba(39,174,96,0.10); color: var(--success); border: 1px solid rgba(39,174,96,0.25); }
.badge-upcoming { background: rgba(233,30,144,0.08); color: var(--pink); border: 1px solid rgba(233,30,144,0.25); }
.event-card-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-primary); margin-bottom: 8px; }
.event-card-desc  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ══ TEA SPOT MENU ══ */
.menu-category-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--purple);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
    margin-bottom: 40px;
}
.menu-item-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.menu-item-card:hover { 
    border-color: var(--purple); 
    box-shadow: var(--shadow-md); 
}
.menu-item-card:hover img {
    transform: scale(1.06);
}
.menu-item-name { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); }
.menu-item-price { font-size: 1rem; font-weight: 700; color: var(--pink); white-space: nowrap; }
.qty-control { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.qty-btn {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--border-dark);
    background: var(--surface-2);
    color: var(--dark-violet);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    line-height: 1;
}
.qty-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.qty-display { font-weight: 700; font-size: 0.95rem; min-width: 22px; text-align: center; color: var(--text-primary); }
.order-btn {
    margin-top: 10px;
    padding: 6px 14px;
    font-size: 0.78rem;
    border-radius: 20px;
    border: none;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-sans);
    transition: var(--transition);
}
.order-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.cart-panel {
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 100px;
}
.cart-panel h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--text-primary); margin-bottom: 16px; }
.cart-empty { color: var(--text-light); font-size: 0.88rem; font-style: italic; }
.cart-item { display: flex; justify-content: space-between; font-size: 0.88rem; padding: 6px 0; border-bottom: 1px dashed var(--border); color: var(--text-muted); }
.cart-total { font-size: 1.1rem; font-weight: 700; color: var(--dark-violet); margin-top: 14px; display: flex; justify-content: space-between; }

/* ══ CONTACT ══ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 50px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}
.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.contact-info-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--dark-violet), var(--purple));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-label { font-size: 0.78rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-info-value { font-size: 0.95rem; color: var(--text-primary); font-weight: 500; }
.booking-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

/* ══ ADMIN ══ */
.login-box { max-width: 440px; margin: 80px auto; padding: 40px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ══ MISC ══ */
.actions-row  { display: flex; gap: 10px; }
.d-flex       { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.gap-15       { gap: 15px; }
.mt-20        { margin-top: 20px; }
.mb-20        { margin-bottom: 20px; }
.text-center  { text-align: center; }

/* ══ DIVIDER ══ */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 50px 0; }

/* ══ FULL AC BADGE (hero) ══ */
.ac-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--dark-violet), var(--purple));
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* ══ INFO STRIP (address below hero) ══ */
.info-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 10px;
}
.info-strip i { color: var(--pink); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
    .navbar { padding: 0 20px; }
    .nav-menu { gap: 2px; }
    .nav-link { padding: 7px 10px; font-size: 0.82rem; }
}
@media (max-width: 860px) {
    .navbar { flex-direction: column; height: auto; padding: 14px 20px; gap: 10px; }
    .nav-brand { justify-content: center; }
    .nav-menu { width: 100%; flex-wrap: wrap; justify-content: center; gap: 4px; }
}
@media (max-width: 640px) {
    .hero-title { font-size: 2rem; }
    .hero { padding: 45px 20px; }
    .section-title { font-size: 1.6rem; }
    .grid-halls { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 24px; }
    .wa-tooltip { display: none; }
}

/* ══ TWO-COLUMN HERO LAYOUT ══ */
.hero-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0 80px 0;
    position: relative;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: #fce4ec;
    color: #e91e90;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(233,30,144,0.06);
}

.hero-title-main {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title-main span.gradient-highlight {
    background: linear-gradient(135deg, var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-desc-main {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 35px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
    width: 100%;
}

.hero-img-main {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}

.floating-ac-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    transition: var(--transition);
}

.floating-ac-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74,14,107,0.15);
}

.ac-card-icon {
    width: 44px;
    height: 44px;
    background: #eeddf5;
    color: var(--purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.ac-card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.ac-card-sub {
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.ac-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* ══ RESPONSIVE OVERRIDES ══ */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-desc-main {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .floating-ac-card {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 640px) {
    .hero-title-main {
        font-size: 2.3rem;
    }
    .floating-ac-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
}

/* ══ TOP BRAND & LOCATION BAR ══ */
.top-brand-bar {
    background: #ffffff;
    padding: 6px 20px 8px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-logo-wrap {
    transition: var(--transition);
    margin-bottom: 4px;
    display: inline-block;
}
.brand-logo-wrap:hover {
    transform: scale(1.08);
}
.brand-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
}

.brand-palace-name {
    font-family: 'Great Vibes', cursive;
    font-size: 2.6rem;
    background: linear-gradient(135deg, var(--dark-violet), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.brand-palace-ac {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 1px;
}

.brand-location-details {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 30px;
    margin-top: 6px;
    box-shadow: var(--shadow);
}

.brand-location-details i {
    color: var(--pink);
}

@media (max-width: 640px) {
    .brand-palace-name {
        font-size: 2.1rem;
    }
    .brand-palace-ac {
        font-size: 0.68rem;
        letter-spacing: 3px;
    }
    .brand-logo {
        height: 90px;
    }
}

/* ══ GOLDEN GLOW ON LOGO HOVER ══ */
.brand-logo,
.nav-logo,
.footer-logo {
    transition: filter 0.35s ease, transform 0.35s ease;
    filter: drop-shadow(0 0 0 rgba(255, 215, 0, 0));
}

@keyframes sunsetGlow {
    0% {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.95)) 
                drop-shadow(0 0 20px rgba(255, 120, 0, 0.8)) 
                drop-shadow(0 0 35px rgba(255, 60, 60, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.95)) 
                drop-shadow(0 0 25px rgba(255, 69, 0, 0.85)) 
                drop-shadow(0 0 40px rgba(233, 30, 99, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 12px rgba(255, 140, 0, 0.95)) 
                drop-shadow(0 0 22px rgba(233, 30, 99, 0.8)) 
                drop-shadow(0 0 38px rgba(123, 45, 142, 0.6));
    }
}

.brand-logo:hover,
.nav-logo:hover,
.footer-logo:hover,
.brand-logo-wrap:hover .brand-logo,
.nav-logo-container:hover .nav-logo,
.nav-brand-scrolled:hover .nav-logo,
.footer-brand:hover .footer-logo {
    animation: sunsetGlow 3s infinite alternate ease-in-out;
    transform: scale(1.08);
}

.centered-ac-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
    width: fit-content;
    transition: var(--transition);
}

.centered-ac-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(74,14,107,0.12);
}

/* ══ PRINT ══ */
@media print {
    @page {
        margin: 0; /* Hides default browser header (title, date) and footer (URL, page number) */
    }
    body {
        background: #fff !important;
        color: #000 !important;
        margin: 1.2cm 1.5cm !important; /* Elegant clean margins for print */
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
    /* Hide all other sections of the continuous scroll home page and browser items */
    section:not(#track-status), .section-divider, .top-brand-bar, .navbar, footer, .whatsapp-float, .no-print, .hero, form, button, .btn { 
        display: none !important; 
    }
    .container, main { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; }
    
    .glass-panel.printable-invoice {
        background: #fff !important;
        border: 2px solid #000 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        border-radius: 8px !important;
        padding: 35px 40px !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        height: 258mm !important; /* Strict height to fill standard A4 page perfectly */
        display: flex !important;
        flex-direction: column !important;
        page-break-inside: avoid !important;
    }
    
    /* Logo display */
    .printable-invoice > div:first-child {
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
        border-bottom: 2px solid #000 !important;
    }
    .printable-invoice img {
        max-width: 240px !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Brand name and Bill ID header */
    .printable-invoice > div:nth-child(2) {
        margin-bottom: 25px !important;
        padding-bottom: 15px !important;
        border-bottom: 1.5px solid #000 !important;
    }
    .invoice-brand-name {
        font-size: 1.9rem !important;
        font-weight: bold !important;
    }
    .bill-id-text {
        font-family: Arial, Helvetica, sans-serif !important;
        font-size: 1.6rem !important;
        margin-top: 4px !important;
    }
    
    h2 { font-size: 1.35rem !important; margin: 4px 0 !important; }
    h3 { font-size: 1.05rem !important; margin-bottom: 8px !important; }
    h2, h3, h4, td, span, p, div, strong, label { color: #000 !important; text-shadow: none !important; }
    
    /* Spacing in details layout grids */
    div[style*="display: grid"], div[style*="display:grid"] {
        gap: 25px !important;
        margin-bottom: 20px !important;
    }
    
    /* Spacing inside tables */
    table { border-collapse: collapse !important; width: 100% !important; line-height: 1.6 !important; }
    td, th { border-bottom: 1px dashed #ccc !important; padding: 4px 6px !important; font-size: 11px !important; }
    
    .status-badge {
        border: 1.5px solid #000 !important;
        color: #000 !important;
        background: #f2f2f2 !important;
        padding: 4px 12px !important;
        font-size: 0.85rem !important;
    }
    
    /* Special Instructions notes box */
    div[style*="background: rgba(255, 255, 255, 0.03)"],
    div[style*="background:rgba(255,255,255,0.03)"] {
        padding: 12px 16px !important;
        margin-bottom: 20px !important;
        border-radius: 8px !important;
        border: 1px solid #000 !important;
        background: #f9f9f9 !important;
    }
    div[style*="background: rgba(255, 255, 255, 0.03)"] p,
    div[style*="background:rgba(255,255,255,0.03)"] p {
        font-size: 10px !important;
        margin-bottom: 4px !important;
    }
    
    /* Pricing section */
    div[style*="border-top: 1px solid rgba(255, 255, 255, 0.08)"],
    div[style*="border-top:1px solid"] {
        border-top: 1.5px solid #000 !important;
        padding-top: 15px !important;
        margin-top: 15px !important;
    }
    div[style*="display: flex; flex-direction: column"] {
        gap: 8px !important;
        margin-bottom: 15px !important;
    }
    div[style*="display: flex; justify-content: space-between"] {
        margin-bottom: 6px !important;
    }
    
    /* Estimated total row */
    div[style*="font-size: 1.5rem"] {
        font-size: 1.35rem !important;
        margin-top: 8px !important;
        padding-top: 8px !important;
        border-top: 2px dashed #000 !important;
    }
    
    /* Signature Area printable styling */
    .signature-section {
        margin-top: auto !important; /* Pushes the signature block to the absolute bottom of the A4 page container */
        margin-bottom: 0 !important;
    }
    .signature-section div {
        width: 180px !important;
    }
    .signature-section div div {
        border-bottom: 1.5px solid #000 !important;
        height: 35px !important;
    }
    .signature-section span {
        color: #000 !important;
        font-size: 0.85rem !important;
    }
}

/* ══ BOOKING MODAL ══ */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 0, 50, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.booking-modal {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(74, 14, 107, 0.28);
    border: 1px solid var(--border-dark);
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.97);
    transition: transform 0.38s cubic-bezier(0.165, 0.84, 0.44, 1);
    scrollbar-width: thin;
    scrollbar-color: var(--border-dark) transparent;
}
.booking-modal-overlay.active .booking-modal {
    transform: translateY(0) scale(1);
}
.booking-modal::-webkit-scrollbar { width: 6px; }
.booking-modal::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 6px; }

.booking-modal-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(135deg, var(--dark-violet), var(--purple));
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius) var(--radius) 0 0;
}
.booking-modal-header-title {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.booking-modal-header-title span:first-child {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.booking-modal-header-title span:last-child {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: #fff;
}
.booking-modal-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.30);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.booking-modal-close:hover {
    background: rgba(255,255,255,0.28);
    transform: rotate(90deg);
}
.booking-modal-body {
    padding: 36px 40px 40px;
    position: relative;
    overflow: hidden;
}
.booking-modal-body::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(233,30,144,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.booking-modal-body::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(74,14,107,0.05) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 640px) {
    .booking-modal-body { padding: 24px 20px 28px; }
    .booking-modal-header { padding: 18px 20px; }
    .booking-modal-header-title span:last-child { font-size: 1.15rem; }
}