/* ==========================================================================
   AUREUM LUXURY GROOMING PARLOUR - STYLESHEET
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    --bg-primary: #0a0b0d;
    --bg-secondary: #111215;
    --bg-card: #181a1f;
    --bg-glass: rgba(17, 18, 21, 0.75);
    
    --accent: #c5a880;
    --accent-bright: #d4af37;
    --accent-dark: #8b7355;
    --accent-glow: rgba(197, 168, 128, 0.25);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a5b0;
    --text-muted: #626875;
    
    --border-color: rgba(197, 168, 128, 0.15);
    --border-glow: rgba(197, 168, 128, 0.3);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.3s ease;
    --transition-fast: 0.15s ease;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(197, 168, 128, 0.05);
}

/* --- Resets & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-dark);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- Typography & Global Layout --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-secondary);
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.gold-gradient-text {
    background: linear-gradient(135deg, #f3e7db 0%, #c5a880 50%, #9e7f59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Custom Cursor --- */
.custom-cursor-dot,
.custom-cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    transition: width var(--transition-fast), height var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
}

.custom-cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid var(--accent);
    opacity: 0.5;
}

body.hovered .custom-cursor-dot {
    width: 12px;
    height: 12px;
    background-color: var(--accent-bright);
}

body.hovered .custom-cursor-outline {
    width: 45px;
    height: 45px;
    border-color: var(--accent-bright);
    opacity: 0.8;
    background-color: rgba(197, 168, 128, 0.05);
}

@media (max-width: 1024px) {
    .custom-cursor-dot,
    .custom-cursor-outline {
        display: none;
    }
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.luxury-logo-monogram {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    animation: pulseGlow 2s infinite ease-in-out;
}

.preloader-line-loader {
    width: 120px;
    height: 1px;
    background: rgba(197, 168, 128, 0.2);
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.preloader-line-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
    animation: loadingAnim 1.5s infinite linear;
}

.preloader-text {
    font-family: var(--font-heading);
    letter-spacing: 5px;
    font-size: 0.9rem;
    color: var(--accent);
    opacity: 0.8;
}

@keyframes loadingAnim {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 10px var(--accent)); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-primary);
    border: 1px solid var(--accent);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

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

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-block {
    width: 100%;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 100;
    transition: var(--transition-medium);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.header.sticky {
    height: 75px;
    background-color: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1;
    color: var(--text-primary);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-top: 2px;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-medium);
}

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

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

.nav-mobile-footer {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 110;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: var(--transition-medium);
    background-color: var(--text-primary);
}

@media (max-width: 991px) {
    .hamburger-menu {
        display: block;
    }
    
    .btn-book-trigger {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        justify-content: space-between;
        padding: 100px 2rem 50px;
        transition: var(--transition-slow);
        z-index: 105;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-mobile-footer {
        display: block;
        border-top: 1px solid var(--border-color);
        padding-top: 2rem;
        width: 100%;
    }

    .nav-mobile-footer p {
        font-family: var(--font-heading);
        color: var(--accent);
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .nav-mobile-footer .phone-link {
        font-size: 1.1rem;
        color: var(--text-primary);
        font-weight: 500;
    }

    /* Hamburger Active State */
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
        background-color: var(--accent);
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
        background-color: var(--accent);
    }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('assets/images/interior.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 11, 13, 0.95) 20%,
        rgba(10, 11, 13, 0.8) 50%,
        rgba(10, 11, 13, 0.4) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

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

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
}

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

/* Scroll Down Indicator */
.hero-bottom-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: var(--transition-medium);
}

.scroll-down:hover {
    opacity: 1;
    color: var(--accent);
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 0.8rem;
    animation: bounceIndicator 2s infinite ease-in-out;
}

@keyframes bounceIndicator {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
}

/* --- Section Layouts --- */
section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-header {
    max-width: 650px;
    margin: 0 auto 4.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-desc {
    margin-top: 1.2rem;
    font-size: 1.05rem;
}

.gold-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.2rem 0;
}

.gold-divider span {
    width: 60px;
    height: 1px;
    background-color: var(--accent);
    position: relative;
}

.gold-divider span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: var(--accent-bright);
    border: 1px solid var(--bg-primary);
}

@media (max-width: 991px) {
    section {
        padding: 5rem 0;
    }
    .section-grid-2 {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .section-title {
        font-size: 2.1rem;
    }
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-primary);
}

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

.about-img-frame {
    border: 1px solid var(--border-color);
    padding: 1rem;
    position: relative;
}

.about-img-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 25px;
    height: 25px;
    border-top: 1px solid var(--accent);
    border-left: 1px solid var(--accent);
}

.about-img-frame::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-bottom: 1px solid var(--accent);
    border-right: 1px solid var(--accent);
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: brightness(0.9);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--accent);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.exp-txt {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 5px;
}

.about-content {
    padding-left: 1rem;
}

.about-paragraph {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.features-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: var(--transition-medium);
}

.feature-item:hover .feature-icon {
    background-color: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

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

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
    }
    .experience-badge {
        right: 1.5rem;
    }
    .about-img {
        height: 350px;
    }
}

/* --- Services Section --- */
.services-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.service-tabs {
    background-color: var(--bg-primary);
    padding: 0.4rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.7rem 1.6rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--bg-primary);
    background-color: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-medium);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-info-block {
    margin-bottom: 1.5rem;
}

.service-title-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.2);
    padding-bottom: 0.5rem;
}

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

.service-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.service-duration {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.service-duration i {
    color: var(--accent);
    margin-right: 5px;
}

.btn-select-service {
    background: none;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-select-service:hover,
.btn-select-service.selected {
    background-color: var(--accent);
    color: var(--bg-primary);
}

.service-disclaimer {
    margin-top: 3.5rem;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--accent);
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 1.8rem;
    }
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    padding: 10rem 0;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 11, 13, 0.85);
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.cta-container p {
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 2.2rem;
    }
}

/* --- Barbers Section --- */
.barbers-section {
    background-color: var(--bg-primary);
}

.barbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.barber-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.barber-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.barber-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.barber-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) grayscale(0.2);
    transition: transform 0.8s ease;
}

.barber-card:hover .barber-img {
    transform: scale(1.05);
    filter: brightness(1) grayscale(0);
}

.barber-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 11, 13, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.barber-card:hover .barber-overlay {
    opacity: 1;
}

.barber-socials {
    display: flex;
    gap: 1rem;
}

.barber-socials a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    transition: var(--transition-medium);
}

.barber-socials a:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

.barber-info {
    padding: 1.8rem;
    text-align: center;
}

.barber-role {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.barber-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.barber-specialty {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.barber-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    color: var(--accent-bright);
    font-size: 0.8rem;
}

.barber-rating span {
    color: var(--text-secondary);
    margin-left: 5px;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .barbers-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* --- Products Showcase Section --- */
.products-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.align-items-center {
    align-items: center;
}

.product-features {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-features li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: var(--accent);
}

.products-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-glow-circle {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: var(--accent);
    opacity: 0.04;
    filter: blur(50px);
}

.products-showcase-img {
    position: relative;
    z-index: 2;
    border: 1px solid var(--border-color);
    padding: 1rem;
    background-color: var(--bg-primary);
    max-height: 480px;
    object-fit: cover;
}

/* --- Gallery Section --- */
.gallery-section {
    background-color: var(--bg-primary);
}

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

.filter-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    color: var(--accent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    border: 1px solid var(--border-color);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: transform 0.6s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 11, 13, 0.95), rgba(10, 11, 13, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    opacity: 0;
    transition: var(--transition-medium);
}

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

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

.gallery-item-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 5px;
}

.gallery-item-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.gallery-zoom-btn {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    transition: var(--transition-medium);
    align-self: flex-start;
}

.gallery-zoom-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--accent-glow);
}

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

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

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 1rem;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote-icon {
    font-size: 2.2rem;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--accent);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.carousel-dots .dot {
    width: 25px;
    height: 2px;
    background-color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-medium);
}

.carousel-dots .dot.active {
    background-color: var(--accent);
    width: 45px;
}

/* --- Contact Section --- */
.contact-section {
    background-color: var(--bg-primary);
}

.contact-info-block {
    padding-right: 2rem;
}

.contact-info-block h3,
.contact-form-block h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    position: relative;
}

.contact-info-block h3::after,
.contact-form-block h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--accent);
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.6rem;
}

.hours-row span:first-child {
    color: var(--text-secondary);
}

.hours-row span:last-child {
    font-weight: 500;
    color: var(--accent);
}

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

.detail-item {
    display: flex;
    gap: 1.2rem;
}

.detail-item i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 3px;
}

.detail-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.detail-item p {
    font-size: 0.9rem;
}

.salon-map-container {
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    padding: 6px;
    background-color: var(--bg-card);
}

.contact-form-block {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.08);
}

.form-group .error-msg {
    color: #ff6b6b;
    font-size: 0.75rem;
    margin-top: 3px;
    display: none;
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #ff6b6b;
}

.form-group.invalid .error-msg {
    display: block;
}

@media (max-width: 991px) {
    .contact-info-block {
        padding-right: 0;
    }
    .contact-form-block {
        padding: 2rem;
    }
}

/* --- Footer --- */
.footer {
    background-color: #050607;
    border-top: 1px solid var(--border-color);
    padding-top: 6rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-brand p {
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.social-links a:hover {
    color: var(--bg-primary);
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

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

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-newsletter p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.9rem 4rem 0.9rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: var(--accent);
    border: none;
    color: var(--bg-primary);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition-medium);
}

.newsletter-form button:hover {
    background-color: var(--accent-bright);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
}

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

.footer-bottom-container p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

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

/* --- Interactive Booking Modal --- */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.booking-modal.open {
    opacity: 1;
    visibility: visible;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 6, 7, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.booking-modal-container {
    position: relative;
    z-index: 2;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 850px;
    height: 85vh;
    max-height: 700px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.booking-modal.open .booking-modal-container {
    transform: translateY(0);
}

.close-booking-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-medium);
    z-index: 10;
}

.close-booking-modal:hover {
    color: var(--accent);
}

/* Wizard Header */
.booking-wizard-header {
    padding: 2.2rem 3rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.booking-wizard-header h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.booking-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-medium);
}

.step-indicator span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: var(--transition-medium);
}

.step-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color);
    margin: 0 10px;
    margin-top: -16px;
}

.step-indicator.active {
    color: var(--accent);
}

.step-indicator.active span {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--bg-primary);
    box-shadow: 0 0 10px var(--accent-glow);
}

.step-indicator.completed {
    color: var(--text-primary);
}

.step-indicator.completed span {
    border-color: var(--accent);
    color: var(--accent);
}

/* Wizard Body */
.booking-wizard-body {
    flex-grow: 1;
    padding: 2rem 3rem;
    overflow-y: auto;
}

.booking-step-content {
    display: none;
}

.booking-step-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.booking-step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-instruction {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Step 1: Services List styling inside Modal */
.booking-services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-service-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.booking-service-item:hover {
    border-color: var(--accent);
}

.booking-service-item.selected {
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Checkbox Style overrides */
.bs-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
}

.bs-checkbox input {
    opacity: 0;
    position: absolute;
}

.bs-checkbox label {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent);
    cursor: pointer;
}

.bs-checkbox label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 4px;
    height: 9px;
    border: solid var(--bg-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: var(--transition-fast);
}

.booking-service-item.selected .bs-checkbox label {
    background-color: var(--accent);
}

.booking-service-item.selected .bs-checkbox label::after {
    opacity: 1;
}

.bs-info {
    flex-grow: 1;
}

.bs-info h4 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.bs-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.bs-duration {
    font-size: 0.75rem;
    color: var(--accent);
}

.bs-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
}

/* Step 2: Barbers styling inside Modal */
.booking-barbers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-barber-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.booking-barber-item:hover {
    border-color: var(--accent);
}

.booking-barber-item.selected {
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.bb-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--accent);
    background-color: var(--bg-primary);
}

.bb-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--accent);
}

.bb-info {
    flex-grow: 1;
}

.bb-info h4 {
    font-size: 1.05rem;
    margin-bottom: 3px;
}

.bb-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.bb-select-indicator {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.booking-barber-item.selected .bb-select-indicator {
    color: var(--accent);
}

/* Step 3: Calendar styling */
.booking-calendar-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

.calendar-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

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

.calendar-header h4 {
    font-size: 1rem;
    text-transform: uppercase;
}

.calendar-header button {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--accent);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-medium);
}

.calendar-header button:hover {
    border-color: var(--accent);
    background-color: var(--accent);
    color: var(--bg-primary);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 5px;
}

.calendar-day {
    padding: 0.6rem 0;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-medium);
}

.calendar-day:hover:not(.disabled) {
    border-color: var(--accent);
    color: var(--accent);
}

.calendar-day.active {
    background-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
}

.calendar-day.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.calendar-day.today {
    border-bottom: 2px solid var(--accent);
}

/* Time Slots */
.time-slots-wrapper {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.time-slots-wrapper h4 {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    overflow-y: auto;
    max-height: 250px;
}

.time-slot {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    text-align: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.time-slot:hover:not(.disabled) {
    border-color: var(--accent);
    color: var(--accent);
}

.time-slot.selected {
    background-color: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    font-weight: 600;
}

.time-slot.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.select-date-alert {
    grid-column: 1 / span 2;
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

/* Step 4: Details & Summary Panel */
.booking-form-summary-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
}

.booking-submit-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.booking-summary-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.8rem;
}

.booking-summary-panel h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.summary-row span {
    color: var(--text-secondary);
}

.summary-services-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-services-section span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.summary-services-section ul {
    list-style: none;
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-services-section li {
    font-size: 0.85rem;
    color: var(--text-primary);
    position: relative;
}

.summary-services-section li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: -10px;
}

.summary-services-section li.empty-list-msg::before {
    display: none;
}

.summary-services-section li.empty-list-msg {
    color: var(--text-muted);
    font-style: italic;
    padding-left: 0;
}

.summary-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 0.5rem 0;
}

.summary-total {
    font-size: 1.15rem;
}

.summary-total span:last-child {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
}

.summary-duration {
    font-size: 0.85rem;
}

.summary-duration span:last-child {
    color: var(--accent);
}

/* Step 5: Success Step styling */
.success-step {
    text-align: center;
    padding: 1.5rem 0;
}

.success-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 0 20px var(--accent-glow);
}

.success-intro {
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
}

.success-voucher-card {
    background-color: var(--bg-card);
    border: 1px dashed var(--accent);
    max-width: 450px;
    margin: 0 auto 2.5rem;
    text-align: left;
    box-shadow: var(--shadow-md);
}

.voucher-header {
    background-color: var(--bg-primary);
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.voucher-header h4 {
    font-size: 0.9rem;
    color: var(--accent);
}

.voucher-id {
    font-size: 0.8rem;
    font-family: monospace;
    color: var(--text-secondary);
}

.voucher-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.voucher-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.voucher-item h5 {
    font-size: 1rem;
    font-weight: 500;
}

.voucher-item p {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.voucher-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
    margin-top: 0.5rem;
}

.voucher-footer span {
    font-size: 0.95rem;
}

.voucher-footer strong {
    color: var(--accent);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

/* Wizard Footer */
.booking-wizard-footer {
    padding: 1.5rem 3rem 2.2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .booking-modal-container {
        height: 95vh;
        max-height: 95vh;
        width: 95%;
    }
    .booking-wizard-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    .booking-wizard-body {
        padding: 1.5rem;
    }
    .booking-wizard-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    .booking-steps-indicator label {
        display: none; /* Hide step labels on mobile */
    }
    .booking-calendar-layout,
    .booking-form-summary-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .time-slots-grid {
        max-height: 180px;
    }
}

/* --- Lightbox Modal --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1500;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(5, 6, 7, 0.95);
    backdrop-filter: blur(15px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--accent);
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: var(--text-secondary);
    padding: 15px 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
    }
}

/* --- Toast Styling --- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.toast {
    background-color: var(--bg-card);
    border-left: 4px solid var(--accent);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-md);
    min-width: 280px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    color: var(--accent);
    font-size: 1.1rem;
}

.toast-content h5 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.toast-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* --- Scroll Animation Reveals --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-top {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-bottom {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-active {
    opacity: 1;
    transform: translate(0);
}

.fade-in-up {
    animation: fadeInUpAnim 1s ease forwards;
    opacity: 0;
}

.hero-content .fade-in-up:nth-child(1) { animation-delay: 0.2s; }
.hero-content .fade-in-up:nth-child(2) { animation-delay: 0.4s; }
.hero-content .fade-in-up:nth-child(3) { animation-delay: 0.6s; }
.hero-content .fade-in-up:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUpAnim {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
