/* ==========================================================================
   SALONOVA LUXURY DESIGN SYSTEM & MASTER STYLESHEET
   ========================================================================== */

/* 1. Core Variables & Theme Tokens */
:root {
    /* Color Palette */
    --clr-gold-primary: #c5a880;
    --clr-gold-dark: #b3946a;
    --clr-gold-light: #dfcfb9;
    --clr-gold-glow: rgba(197, 168, 128, 0.4);
    
    --clr-dark-bg: #111111;
    --clr-dark-surface: #1a1a1a;
    --clr-dark-card: #242424;
    --clr-dark-border: #333333;
    
    --clr-light-bg: #fdfcfb;
    --clr-light-surface: #f7f5f2;
    --clr-light-card: #ffffff;
    --clr-light-border: #e9e5e0;
    
    --clr-text-dark: #1a1a1a;
    --clr-text-body: #4a4a4a;
    --clr-text-muted: #8a8a8a;
    --clr-text-light: #ffffff;
    
    --clr-danger: #d9534f;
    --clr-success: #2ecc71;
    --clr-info: #3498db;

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;

    /* Layout & Spacing */
    --container-max-width: 1200px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --box-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    --box-shadow-gold: 0 10px 30px rgba(197, 168, 128, 0.2);
    
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-blur: 12px;
}

/* 2. Global Resets & Defaults */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--clr-text-body);
    background-color: var(--clr-light-bg);
    overflow-x: hidden;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }
}

/* 3. Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-dark);
    font-weight: 600;
    line-height: 1.25;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--clr-gold-dark);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 1.25rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--clr-gold-primary);
}

.section-title-wrapper p {
    margin-top: 1rem;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* 4. Common Components */
/* Premium Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
}

.btn-premium:hover::after {
    left: 150%;
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-gold {
    background-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
    box-shadow: var(--box-shadow-gold);
}

.btn-primary-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--clr-text-dark);
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-primary-gold:hover::before {
    width: 100%;
}

.btn-primary-gold:hover {
    color: var(--clr-text-light);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-secondary-dark {
    background-color: var(--clr-text-dark);
    color: var(--clr-text-light);
}

.btn-secondary-dark:hover {
    background-color: var(--clr-gold-primary);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-gold);
}

.btn-outline-gold {
    border: 2px solid var(--clr-gold-primary);
    color: var(--clr-text-dark);
}

.btn-outline-gold:hover {
    background-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-gold);
}

.btn-outline-light {
    border: 2px solid var(--clr-text-light);
    color: var(--clr-text-light);
}

.btn-outline-light:hover {
    background-color: var(--clr-text-light);
    color: var(--clr-text-dark);
    transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--box-shadow-soft);
    border-radius: var(--border-radius-lg);
}

/* 5. Layout (Header, Navbar, Footer) */
/* Top Info Bar */
.top-bar {
    background-color: var(--clr-text-dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 1.5rem;
}

.top-info i {
    color: var(--clr-gold-primary);
    margin-right: 0.35rem;
}

.top-socials a {
    margin-left: 1rem;
    font-size: 0.85rem;
}

.top-socials a:hover {
    color: var(--clr-gold-primary);
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }
}

/* Main Navigation Header */
.main-header {
    background-color: rgba(253, 252, 251, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--clr-light-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 0.6rem 0;
    box-shadow: var(--box-shadow-soft);
    background-color: rgba(253, 252, 251, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 65px;
}

/* Logo Design */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--clr-text-dark);
}

.logo-text span {
    color: var(--clr-gold-primary);
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    margin-top: 0.15rem;
}

/* Nav Menu Links */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--clr-gold-primary);
    transition: var(--transition-fast);
}

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

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

/* Nav CTA */
.btn-nav {
    border: 1px solid var(--clr-gold-primary) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth) !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover,
.btn-nav-active {
    background-color: var(--clr-gold-primary);
    color: var(--clr-text-light) !important;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--clr-text-dark);
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
}

/* Mobile Navigation Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--clr-light-bg);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.drawer-close {
    font-size: 1.5rem;
    color: var(--clr-text-dark);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-links a {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--clr-light-border);
}

.drawer-links a.active {
    color: var(--clr-gold-primary);
    border-bottom-color: var(--clr-gold-primary);
}

.btn-drawer-cta {
    background-color: var(--clr-gold-primary);
    color: var(--clr-text-light) !important;
    text-align: center;
    border-radius: var(--border-radius-full);
    border: none !important;
    margin-top: 1rem;
}

.drawer-admin-divider {
    height: 1px;
    background-color: var(--clr-light-border);
    margin: 1.5rem 0;
}

.drawer-admin-link {
    font-size: 0.9rem !important;
    text-transform: none !important;
    color: var(--clr-text-muted) !important;
    border-bottom: none !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Footer Section */
.main-footer {
    background-color: var(--clr-text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0 0;
    border-top: 3px solid var(--clr-gold-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--clr-text-light);
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--clr-gold-primary);
}

.brand-col .logo-footer {
    margin-bottom: 1.5rem;
}

.brand-col .logo-footer .logo-text {
    color: var(--clr-text-light);
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-socials a:hover {
    background-color: var(--clr-gold-primary);
    border-color: var(--clr-gold-primary);
    transform: translateY(-3px);
}

.links-col ul li {
    margin-bottom: 0.85rem;
}

.links-col ul a {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.links-col ul a i {
    font-size: 0.65rem;
    color: var(--clr-gold-primary);
    transition: var(--transition-fast);
}

.links-col ul a:hover {
    color: var(--clr-gold-primary);
    padding-left: 4px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-list li .closed {
    color: var(--clr-danger);
    font-weight: 600;
}

.contact-list li {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.contact-list li i {
    color: var(--clr-gold-primary);
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0c0c0c;
    padding: 1.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-meta-links {
    display: flex;
    gap: 1.5rem;
}

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

.admin-shield-link {
    color: var(--clr-gold-primary) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* 6. Animations (Rich Scroll & Interaction Effects) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(197, 168, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Intersection Observer Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Delay modifiers for sequential item loading */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* ==========================================================================
   7. Home Page Specific Styles
   ========================================================================== */
/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--clr-text-light);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(17, 17, 17, 0.45), rgba(17, 17, 17, 0.65)), 
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
    z-index: 1;
    transform: scale(1.08);
    animation: heroZoom 10s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-content {
    max-width: 650px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--clr-gold-primary);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-section {
        height: auto;
        padding: 8rem 0;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--clr-light-border);
}

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

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-full);
    background-color: var(--clr-light-surface);
    color: var(--clr-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition-smooth);
    border: 1px solid var(--clr-light-border);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
    box-shadow: var(--box-shadow-gold);
    transform: scale(1.1) rotate(8deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Home About Split */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    width: 90%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--clr-text-dark);
    color: var(--clr-text-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-medium);
    border-left: 4px solid var(--clr-gold-primary);
    text-align: center;
}

.about-badge span {
    display: block;
}

.about-badge .years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--clr-gold-primary);
    line-height: 1;
}

.about-badge .label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.about-split-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.about-split-content .lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-gold-dark);
    margin-bottom: 1.25rem;
}

.about-split-content p {
    color: var(--clr-text-body);
    margin-bottom: 2rem;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-dark);
}

.about-point i {
    color: var(--clr-gold-primary);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-main-img {
        width: 100%;
    }
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)),
                url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
    color: var(--clr-text-light);
    text-align: center;
    padding: 6rem 0;
}

.cta-banner h2 {
    color: var(--clr-text-light);
    font-size: 2.6rem;
    margin-bottom: 1.25rem;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==========================================================================
   8. Services Menu Page Styles
   ========================================================================== */
.services-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--clr-light-border);
    background-color: var(--clr-light-card);
    color: var(--clr-text-dark);
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
    border-color: var(--clr-gold-primary);
    box-shadow: var(--box-shadow-gold);
}

.services-tab-content {
    display: none;
}

.services-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-menu-item {
    background-color: var(--clr-light-card);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--clr-light-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.service-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--clr-gold-primary);
    transition: var(--transition-smooth);
}

.service-menu-item:hover::before {
    height: 100%;
}

.service-menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-soft);
    border-color: var(--clr-gold-light);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.service-title-h {
    font-size: 1.3rem;
    font-weight: 600;
}

.service-line {
    flex-grow: 1;
    border-bottom: 1px dashed var(--clr-light-border);
    height: 1px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-gold-dark);
    white-space: nowrap;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.25rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-duration {
    color: var(--clr-text-muted);
}

.service-duration i {
    color: var(--clr-gold-primary);
    margin-right: 0.25rem;
}

.btn-book-service {
    color: var(--clr-gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.btn-book-service:hover {
    color: var(--clr-text-dark);
}

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

/* ==========================================================================
   9. About Page Styles
   ========================================================================== */
/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.staff-card {
    background-color: var(--clr-light-card);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--clr-light-border);
    text-align: center;
    transition: var(--transition-smooth);
}

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

.staff-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.staff-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.staff-card:hover .staff-img-wrapper img {
    transform: scale(1.08);
}

.staff-social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(17, 17, 17, 0.8));
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    opacity: 0;
}

.staff-card:hover .staff-social-overlay {
    bottom: 0;
    opacity: 1;
}

.staff-social-overlay a {
    color: var(--clr-text-light);
    font-size: 1.1rem;
}

.staff-social-overlay a:hover {
    color: var(--clr-gold-primary);
}

.staff-info {
    padding: 1.8rem;
}

.staff-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

.staff-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-gold-dark);
    font-weight: 600;
}

@media (max-width: 992px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Elegant Salon Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17,17,17,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--clr-text-light);
    font-size: 1.5rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   10. Booking Page Specific Styles (Interactive Wizard)
   ========================================================================== */
.booking-wizard-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
}

/* Wizard Header / Steps */
.wizard-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 4rem;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--clr-light-border);
    z-index: 1;
}

.step-indicator {
    position: relative;
    z-index: 2;
    background-color: var(--clr-light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
}

/* Staff & Addons Selection Styling */
.staff-card:hover {
    border-color: var(--clr-gold-primary) !important;
    background: rgba(212, 175, 55, 0.03) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.05);
}
.staff-card.selected {
    border-color: var(--clr-gold-primary) !important;
    background: rgba(212, 175, 55, 0.05) !important;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}
.addon-checkbox-card:hover {
    border-color: var(--clr-gold-light) !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    background-color: var(--clr-light-card);
    border: 2px solid var(--clr-light-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--clr-text-muted);
    transition: var(--transition-smooth);
    margin-bottom: 0.75rem;
}

.step-indicator.active .step-num {
    background-color: var(--clr-gold-primary);
    border-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
    box-shadow: var(--box-shadow-gold);
}

.step-indicator.completed .step-num {
    background-color: var(--clr-text-dark);
    border-color: var(--clr-text-dark);
    color: var(--clr-text-light);
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    text-align: center;
}

.step-indicator.active .step-label {
    color: var(--clr-text-dark);
}

@media (max-width: 576px) {
    .step-label {
        display: none;
    }
    .wizard-steps {
        margin-bottom: 2.5rem;
    }
}

/* Wizard Panel Contents */
.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.wizard-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-light-border);
    padding-bottom: 0.75rem;
}

/* Step 1: Category & Service Selection */
.booking-services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.booking-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-category-btn {
    text-align: left;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    background-color: var(--clr-light-surface);
    font-weight: 600;
    border: 1px solid var(--clr-light-border);
    transition: var(--transition-fast);
}

.booking-category-btn:hover,
.booking-category-btn.active {
    background-color: var(--clr-text-dark);
    color: var(--clr-text-light);
    border-color: var(--clr-text-dark);
}

.booking-services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar for service selection list */
.booking-services-list::-webkit-scrollbar {
    width: 6px;
}
.booking-services-list::-webkit-scrollbar-thumb {
    background-color: var(--clr-gold-primary);
    border-radius: var(--border-radius-full);
}
.booking-services-list::-webkit-scrollbar-track {
    background-color: var(--clr-light-surface);
}

.booking-service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    background-color: var(--clr-light-card);
    border: 1px solid var(--clr-light-border);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.booking-service-card:hover {
    border-color: var(--clr-gold-primary);
    background-color: rgba(197, 168, 128, 0.05);
}

.booking-service-card.selected {
    border-color: var(--clr-gold-primary);
    background-color: rgba(197, 168, 128, 0.08);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

.service-card-info h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
}

.service-card-info p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 0.25rem;
}

.service-card-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.service-card-price-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-gold-dark);
}

.service-select-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--clr-light-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: transparent;
    transition: var(--transition-fast);
}

.booking-service-card.selected .service-select-checkbox {
    background-color: var(--clr-gold-primary);
    border-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
}

@media (max-width: 768px) {
    .booking-services-layout {
        grid-template-columns: 1fr;
    }
}

/* Step 2: Date & Time Picker */
.date-time-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.calendar-wrapper h4,
.time-slots-wrapper h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--clr-text-dark);
}

.calendar-input {
    width: 100%;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--clr-light-border);
    background-color: var(--clr-light-card);
    font-size: 1rem;
    color: var(--clr-text-dark);
    font-weight: 600;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.8rem 0;
    text-align: center;
    background-color: var(--clr-light-card);
    border: 1px solid var(--clr-light-border);
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
}

.time-slot:hover {
    border-color: var(--clr-gold-primary);
    color: var(--clr-gold-dark);
}

.time-slot.selected {
    background-color: var(--clr-gold-primary);
    border-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
    box-shadow: var(--box-shadow-gold);
}

.time-slot.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background-color: var(--clr-light-surface);
}

.time-slot.disabled:hover {
    border-color: var(--clr-light-border);
    color: var(--clr-text-body);
}

@media (max-width: 768px) {
    .date-time-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Step 3: Customer Information Form */
.customer-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-dark);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--clr-light-border);
    background-color: var(--clr-light-card);
    font-size: 0.95rem;
    color: var(--clr-text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--clr-gold-primary);
    box-shadow: 0 0 0 3px var(--clr-gold-glow);
}

@media (max-width: 576px) {
    .customer-form {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}

/* Step 4: Summary / Confirmation */
.summary-card {
    background-color: var(--clr-light-surface);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--clr-light-border);
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--clr-light-border);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: var(--clr-text-muted);
}

.summary-value {
    font-weight: 700;
    color: var(--clr-text-dark);
    text-align: right;
}

.summary-value.total-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-gold-dark);
}

/* Wizard Navigation Controls */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    border-top: 1px solid var(--clr-light-border);
    padding-top: 1.5rem;
}

.btn-wizard-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth);
}

.btn-wizard-back {
    border: 1px solid var(--clr-light-border);
    background-color: var(--clr-light-card);
    color: var(--clr-text-body);
}

.btn-wizard-back:hover {
    background-color: var(--clr-light-surface);
    border-color: var(--clr-text-dark);
    color: var(--clr-text-dark);
}

.btn-wizard-next {
    background-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
}

.btn-wizard-next:hover {
    background-color: var(--clr-gold-dark);
    transform: translateY(-2px);
}

/* Success Overlay State */
.booking-success-wrapper {
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--clr-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem auto;
    animation: goldPulse 2s infinite;
}

.booking-success-wrapper h3 {
    font-size: 2rem;
    color: var(--clr-text-dark);
    margin-bottom: 1rem;
}

.booking-success-wrapper p {
    color: var(--clr-text-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.05rem;
}

/* ==========================================================================
   11. Admin Panel & Login Page Styles
   ========================================================================== */
/* Login Page Structure */
.admin-login-body {
    background-color: var(--clr-dark-bg);
    color: var(--clr-text-light);
    font-family: var(--font-body);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background-color: var(--clr-dark-surface);
    border: 1px solid var(--clr-dark-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.login-card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-card-header .logo .logo-text {
    color: var(--clr-text-light);
    font-size: 2.2rem;
}

.login-card-header h2 {
    color: var(--clr-text-light);
    font-size: 1.25rem;
    margin-top: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    color: rgba(255,255,255,0.7);
}

.login-form input {
    background-color: var(--clr-dark-card);
    border: 1px solid var(--clr-dark-border);
    color: var(--clr-text-light);
}

.login-form input:focus {
    border-color: var(--clr-gold-primary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.25);
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
    margin-top: 1.5rem;
}

.btn-login:hover {
    background-color: var(--clr-gold-dark);
}

.back-to-site-link {
    display: block;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.back-to-site-link:hover {
    color: var(--clr-gold-primary);
}

/* Dashboard Layout */
.admin-dashboard-body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
}

.admin-sidebar {
    width: 260px;
    background-color: #181818;
    border-right: 1px solid #282828;
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #282828;
}

.sidebar-header .logo .logo-text {
    color: var(--clr-text-light);
    font-size: 1.6rem;
}

.sidebar-nav {
    padding: 2rem 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-md);
    color: #a0a0a0;
    font-weight: 500;
    transition: var(--transition-fast);
}

.sidebar-link:hover,
.sidebar-link.active {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--clr-gold-primary);
}

.sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid #282828;
}

.btn-logout {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e74c3c;
    font-weight: 600;
    width: 100%;
}

.btn-logout:hover {
    color: #ff6b5b;
}

/* Dashboard Content Area */
.admin-main-content {
    margin-left: 260px;
    flex-grow: 1;
    padding: 2.5rem;
}

@media (max-width: 992px) {
    .admin-sidebar {
        display: none; /* simple responsive bypass for model design */
    }
    .admin-main-content {
        margin-left: 0;
        padding: 1.5rem;
    }
}

.admin-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #282828;
    padding-bottom: 1.5rem;
}

.admin-header-bar h1 {
    color: var(--clr-text-light);
    font-size: 1.8rem;
}

.admin-user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-gold-primary);
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Analytics Cards */
.admin-analytics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.analytics-card {
    background-color: #1e1e1e;
    border: 1px solid #282828;
    border-radius: var(--border-radius-md);
    padding: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.analytics-info h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.analytics-val {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-text-light);
}

.analytics-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255,255,255,0.03);
    color: var(--clr-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

@media (max-width: 1200px) {
    .admin-analytics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .admin-analytics-grid {
        grid-template-columns: 1fr;
    }
}

/* Dashboard Panel Blocks */
.admin-panel-card {
    background-color: #1e1e1e;
    border: 1px solid #282828;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.panel-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #282828;
    padding-bottom: 1rem;
}

.panel-card-header h2 {
    color: var(--clr-text-light);
    font-size: 1.3rem;
}

/* Data Tables */
.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table th {
    background-color: #161616;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding: 1rem;
    border-bottom: 2px solid #282828;
}

.admin-table td {
    padding: 1.1rem 1rem;
    border-bottom: 1px solid #282828;
    color: #ccc;
}

.admin-table tr:hover td {
    background-color: rgba(255,255,255,0.01);
}

/* Badges */
.badge-status {
    padding: 0.3rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.badge-pending {
    background-color: rgba(243, 156, 18, 0.15);
    color: #f39c12;
}

.badge-confirmed {
    background-color: rgba(46, 204, 113, 0.15);
    color: var(--clr-success);
}

/* Form inputs for CRUD panel */
.admin-input {
    width: 100%;
    background-color: #161616;
    border: 1px solid #282828;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-md);
    color: var(--clr-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.admin-input:focus {
    border-color: var(--clr-gold-primary);
}

.admin-action-btn {
    padding: 0.5rem 0.9rem;
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.btn-action-delete {
    background-color: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.btn-action-delete:hover {
    background-color: #e74c3c;
    color: white;
}

.btn-action-confirm {
    background-color: rgba(46, 204, 113, 0.15);
    color: var(--clr-success);
}

.btn-action-confirm:hover {
    background-color: var(--clr-success);
    color: white;
}

