/* ============================================================
   Z&A Skin & Aesthetics - Main Stylesheet
   ============================================================ */

:root {
    --primary: #8B5E83;
    --primary-dark: #6B4663;
    --primary-light: #C9A7C7;
    --secondary: #D4A574;
    --secondary-light: #E8C9A0;
    --accent: #E8B4B8;
    --dark: #2C2C2C;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --bg-light: #FDF8F5;
    --bg-section: #F9F2EE;
    --white: #FFFFFF;
    --gold: #C9A96E;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --border: #E8E0DC;
    --shadow: 0 2px 15px rgba(139, 94, 131, 0.1);
    --shadow-lg: 0 5px 30px rgba(139, 94, 131, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ---- Global ---- */
* { box-sizing: border-box; }

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

.section-padding { padding: 80px 0; }
.section-bg { background: var(--bg-section); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.section-header .subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-header .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ---- Buttons ---- */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 94, 131, 0.3);
}
.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn-secondary-custom {
    background: linear-gradient(135deg, var(--secondary), var(--gold));
    border: none;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
    color: var(--white);
}

/* ---- Navbar ---- */
.navbar-main {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0;
    transition: var(--transition);
    z-index: 1050;
}
.navbar-main.scrolled {
    padding: 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.12);
}
.navbar-top-bar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}
.navbar-top-bar a { color: var(--white); opacity: 1; text-decoration: none; }
.navbar-top-bar a:hover { opacity: 1; color: var(--secondary-light); }
.navbar-top-bar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    margin-left: 6px;
    font-size: 0.8rem;
}
.navbar-top-bar .social-links a:hover { background: rgba(255,255,255,0.3); }

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
    padding: 14px 0;
    letter-spacing: 0.5px;
}
.navbar-brand span { color: var(--secondary); font-weight: 600; }
.navbar-brand img { height: 45px; margin-right: 10px; }

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 500;
    padding: 20px 18px !important;
    position: relative;
    font-size: 1rem;
    letter-spacing: 0.2px;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}
.navbar-nav .nav-link:hover { color: var(--primary) !important; }
.navbar-nav .nav-link.active { color: var(--primary) !important; font-weight: 600; }

.navbar-nav .nav-link.navbar-cta {
    padding: 10px 28px !important;
    background: var(--primary-dark);
    color: #FFFFFF !important;
    border-radius: 50px;
    margin-left: 10px;
    font-weight: 700 !important;
    font-size: 0.95rem;
    box-shadow: 0 3px 12px rgba(139, 94, 131, 0.35);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.2);
}
.navbar-cta::after { display: none !important; }
.navbar-nav .nav-link.navbar-cta:hover {
    background: var(--primary);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(139, 94, 131, 0.45);
}

/* ---- Hero Section ---- */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-section) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(139,94,131,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 10px;
}
.hero-content h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 8px;
}
.hero-content .hero-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}
.hero-content .hero-qualifications .badge-qual {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}
.hero-content .hero-qualifications .badge-qual i { margin-right: 5px; color: var(--gold); }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-image-wrapper {
    position: relative;
    text-align: center;
}
.hero-image-wrapper img {
    max-height: 500px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.hero-stats {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 20px;
}
.hero-stats .stat-item { text-align: center; }
.hero-stats .stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}
.hero-stats .stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ---- About Section ---- */
.about-section .about-image-wrapper {
    position: relative;
}
.about-section .about-image-wrapper img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-section .experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-section .experience-badge .number { font-size: 2rem; font-weight: 700; display: block; }
.about-section .experience-badge .label { font-size: 0.8rem; opacity: 0.9; }
.about-credential {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}
.about-credential .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---- Services Section ---- */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-section));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}
.service-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.service-card .service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.service-card .service-link:hover { color: var(--primary-dark); }

/* ---- Stats Section ---- */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
}
.stat-box {
    text-align: center;
    color: var(--white);
    padding: 20px;
}
.stat-box .stat-icon { font-size: 2rem; margin-bottom: 10px; opacity: 0.8; }
.stat-box .stat-num { font-size: 2.5rem; font-weight: 700; display: block; }
.stat-box .stat-text { font-size: 0.95rem; opacity: 0.85; }

/* ---- Reviews Section ---- */
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
}
.review-card .review-quote {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
}
.review-card .stars { color: var(--gold); margin-bottom: 12px; }
.review-card .review-text {
    color: var(--text);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-card .reviewer .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-weight: 600;
}
.review-card .reviewer .name { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.review-card .reviewer .source { font-size: 0.8rem; color: var(--text-light); }
.review-card .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 4px;
}

/* ---- Before & After ---- */
.ba-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.ba-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ba-images { display: flex; }
.ba-images img { width: 50%; height: 200px; object-fit: cover; }
.ba-card .ba-title {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--dark);
}

/* ---- Gallery ---- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.gallery-filters .filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
}
.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 94, 131, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { color: var(--white); font-size: 2rem; }

/* ---- Contact Section ---- */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid var(--border);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.contact-info-card .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-card h6 { font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.contact-info-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ---- Map ---- */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* ---- Footer ---- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer h5 { color: var(--white); font-weight: 600; margin-bottom: 20px; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer ul li a:hover { color: var(--primary-light); padding-left: 5px; }
.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
}
.footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}
.footer .social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ---- Page Header (inner pages) ---- */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 40%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    transform: skewX(-15deg);
}
.page-header h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; }
.page-header .breadcrumb {
    justify-content: center;
    margin: 0;
}
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item.active { color: var(--white); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ---- Booking Wizard ---- */
.booking-wizard {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.wizard-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}
.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--border);
}
.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}
.wizard-step .step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-section);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    transition: var(--transition);
}
.wizard-step.active .step-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.wizard-step.completed .step-circle {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}
.wizard-step .step-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; }
.wizard-step.active .step-label { color: var(--primary); font-weight: 600; }

.wizard-panel { display: none; }
.wizard-panel.active { display: block; }

.date-picker-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}
.date-picker-grid .day-header {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 8px 0;
}
.date-picker-grid .day-cell {
    padding: 10px 5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}
.date-picker-grid .day-cell:hover { background: var(--bg-section); }
.date-picker-grid .day-cell.available { color: var(--dark); font-weight: 500; }
.date-picker-grid .day-cell.unavailable {
    color: var(--text-light);
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}
.date-picker-grid .day-cell.selected {
    background: var(--primary);
    color: var(--white);
}
.date-picker-grid .day-cell.today {
    border: 2px solid var(--primary);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}
.slot-btn {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
}
.slot-btn:hover { border-color: var(--primary); color: var(--primary); }
.slot-btn.selected {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.slot-btn.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Patient Cards */
.patient-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}
.patient-card .remove-patient {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 1.1rem;
}
.patient-card .patient-number {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* Booking Summary */
.booking-summary {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 25px;
    border: 1px solid var(--border);
}
.booking-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.booking-summary .summary-row:last-child { border-bottom: none; }
.booking-summary .summary-label { color: var(--text-light); font-size: 0.9rem; }
.booking-summary .summary-value { font-weight: 600; color: var(--dark); font-size: 0.9rem; }

/* Booking Success */
.booking-success {
    text-align: center;
    padding: 40px 20px;
}
.booking-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}
.booking-success .ref-number {
    background: var(--bg-section);
    border-radius: var(--radius-sm);
    padding: 15px;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    margin: 15px 0;
}

/* ---- Service Detail Page ---- */
.service-detail-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.service-detail-sidebar .sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}
.service-detail-sidebar .sidebar-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}
.service-detail-sidebar .service-list-item {
    display: block;
    padding: 10px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    transition: var(--transition);
}
.service-detail-sidebar .service-list-item:hover {
    color: var(--primary);
    padding-left: 5px;
}
.service-detail-sidebar .service-list-item.active {
    color: var(--primary);
    font-weight: 600;
}
.service-detail-sidebar .service-list-item:last-child { border-bottom: none; }

/* ---- Lightbox ---- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.show { display: flex; }
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-sm);
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-image-wrapper { margin-top: 40px; }
    .hero-stats { display: none; }
    .section-padding { padding: 60px 0; }
    .navbar-nav .nav-link { padding: 10px 15px !important; }
    .navbar-cta { margin: 10px 15px; display: inline-block; }
    .booking-wizard { padding: 25px; }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-section { min-height: auto; padding: 80px 0 40px; }
    .section-header h2 { font-size: 1.8rem; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header { padding: 60px 0 40px; }
    .wizard-step .step-label { font-size: 0.7rem; }
    .booking-wizard { padding: 20px 15px; }
    .slot-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-box .stat-num { font-size: 2rem; }
    .navbar-top-bar .d-flex { flex-direction: column; text-align: center; gap: 5px; }
}

@media (max-width: 575px) {
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .date-picker-grid .day-cell { padding: 8px 2px; font-size: 0.8rem; }
    .wizard-steps { gap: 5px; }
    .footer { text-align: center; }
}

/* ---- Loading Spinner ---- */
.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.8);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
}
.spinner-overlay.show { display: flex; }
.spinner-custom {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Working Hours Table ---- */
.hours-table { width: 100%; }
.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}
.hours-table td:first-child { font-weight: 500; }
.hours-table td:last-child { text-align: right; }
