/* ==========================================================================
   Breakroom Barbershop Custom Stylesheet
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    --color-primary: #E53935;       /* Vibrant Crimson Red */
    --color-primary-hover: #D32F2F; /* Darker Red */
    --color-bg-dark: #070707;       /* Rich Deep Black */
    --color-bg-light-dark: #0F0F0F; /* Section Dark Gray */
    --color-card-bg: #141414;       /* Card Elevation Background */
    --color-card-border: #222222;   /* Subtle Card Borders */
    --color-text-light: #FFFFFF;    /* Pure White */
    --color-text-gray: #CCCCCC;     /* Light Gray Body Text */
    --color-text-muted: #8E8E8E;    /* Muted Labels & Small Text */
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --container-width: 1200px;
    --header-height: 90px;
    --neon-glow: 0 0 15px rgba(229, 57, 53, 0.4), 0 0 30px rgba(229, 57, 53, 0.2);
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--color-bg-dark);
}

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

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

ul {
    list-style: none;
}

/* Helper Typography classes */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-weight: 700;
}

.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #252525;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Button & Link Component Library */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 8px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.btn-black {
    background-color: #000000;
    color: var(--color-text-light);
    border: 1px solid #1a1a1a;
}

.btn-black:hover {
    background-color: #111111;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #333;
    color: var(--color-text-light);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background-color: rgba(229, 57, 53, 0.05);
    transform: translateY(-2px);
}

.btn-video {
    background-color: transparent;
    color: var(--color-text-light);
    border: none;
    padding: 0;
}

.btn-video .play-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-right: 12px;
    transition: var(--transition-normal);
}

.btn-video:hover .play-icon-circle {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    box-shadow: var(--neon-glow);
}

.btn-video .video-btn-text {
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.arrow-icon {
    transition: transform var(--transition-fast);
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background-color: rgba(7, 7, 7, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

.site-header.scrolled {
    height: 80px;
    background-color: rgba(7, 7, 7, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(229, 57, 53, 0.1);
}

.header-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.scrolled .logo-img {
    height: 52px;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    position: relative;
    padding: 6px 0;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-normal), left var(--transition-normal);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
    left: 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1501;
}

.btn-book-now {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Mobile nav toggle button styling */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('./assets/hero-bg.png');
    background-color: #000;
    background-size: cover;
    background-position: center;
    padding-top: var(--header-height);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 7, 7, 0.85) 0%, rgba(7, 7, 7, 0.6) 50%, rgba(7, 7, 7, 0.3) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 24px;
    z-index: 2;
}

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

.welcome-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.welcome-tag .line {
    width: 30px;
    height: 1.5px;
    background-color: var(--color-text-muted);
}

.welcome-tag .tag-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.sub-brand {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.main-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.main-title .highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-gray);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-color: var(--color-bg-dark);
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: stretch;
}

.services-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
}

.header-line {
    width: 40px;
    height: 1.5px;
    background-color: var(--color-primary);
}

.services-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.service-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    padding: 40px 30px;
    border-radius: 4px;
    transition: var(--transition-normal);
}

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

.service-icon-box {
    color: var(--color-primary);
    margin-bottom: 24px;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon-box {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.services-right {
    height: 100%;
}

.services-right .image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.services-right .image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(7, 7, 7, 0.4) 100%);
    pointer-events: none;
}

.services-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.services-right:hover .services-img {
    transform: scale(1.03);
}

/* Why Breakroom Section */
.why-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-light-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: stretch;
}

.why-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-left {
    height: 100%;
}

.chair-image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
}

@media (min-width: 992px) {
    .chair-image-wrapper {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: calc(50vw - 40px);
        border-radius: 0;
        box-shadow: none;
    }
}

.why-img {
    width: 100%;
    height: 100%;
    flex-grow: 1;
    object-fit: cover;
}

.overlay-logo-stamp {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    background-color: transparent;
    opacity: 0.95;
    animation: rotateSlow 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stamp-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-tagline {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.why-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.why-description {
    color: var(--color-text-gray);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 48px;
    max-width: 550px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.feature-item:hover .feature-icon {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: rgba(229, 57, 53, 0.05);
}

.feature-text h4 {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Barbers Section */
.barbers-section {
    padding: 120px 0;
    background-color: var(--color-bg-dark);
}

.barbers-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}

.barbers-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.barbers-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.view-all-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    color: var(--color-text-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 6px;
}

.view-all-link:hover {
    color: var(--color-primary);
    gap: 14px;
}

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

.barber-card {
    background-color: var(--color-card-bg);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.barber-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.barber-img-box {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #1a1a1a;
}

.barber-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1) brightness(0.9);
    transition: filter var(--transition-slow), transform var(--transition-slow);
}

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

.barber-info {
    padding: 24px;
    text-align: left;
    position: relative;
}

.barber-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.barber-role {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.barber-socials {
    display: flex;
    gap: 8px;
}

.social-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-text-gray);
    transition: var(--transition-fast);
}

.social-icon-circle:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

/* Barbers Carousel Styling */
.barbers-carousel-container {
    position: relative;
    width: 100%;
}

.barbers-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 15px 0; /* Ensures hover shadow/transform is not clipped */
}

.barbers-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
}

.barbers-track .barber-card {
    flex: 0 0 calc(33.333% - 20px);
}

@media (max-width: 992px) {
    .barbers-track .barber-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .barbers-track .barber-card {
        flex: 0 0 100%;
    }
}

/* Reviews Section */
.reviews-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-light-dark);
}

.reviews-header {
    text-align: center;
    margin-bottom: 56px;
}

.reviews-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.reviews-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.reviews-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.reviews-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    transition: transform var(--transition-normal);
}

.review-slide {
    min-width: 100%;
    padding: 0 40px;
}

.review-card-inner {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    border-radius: 4px;
    padding: 56px;
    text-align: left;
    position: relative;
}

.quote-icon-box {
    color: var(--color-primary);
    margin-bottom: 24px;
    opacity: 0.9;
}

.review-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-text-light);
    font-weight: 400;
    margin-bottom: 32px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.reviewer-name {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.star-rating {
    color: #FFC107;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.carousel-control {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    transition: var(--transition-fast);
}

.carousel-control:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: var(--neon-glow);
}

.carousel-control.prev {
    left: -28px;
}

.carousel-control.next {
    right: -28px;
}

/* CTA Booking Banner */
.cta-banner-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-primary);
    overflow: hidden;
}

.cta-watermark-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    background-image: url('assets/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.btn-cta {
    padding: 18px 36px;
}

/* Footer Section */
.site-footer {
    background-color: #050505;
    padding: 96px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 64px;
}

.brand-col .footer-logo {
    height: 72px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.footer-social-links {
    display: flex;
    gap: 16px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.footer-social-links a:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.footer-hours-list .day {
    font-weight: 500;
}

.footer-hours-list .time {
    color: var(--color-text-gray);
}

.footer-address {
    font-style: normal;
    color: var(--color-text-muted);
    font-size: 0.88rem;
}

.address-line {
    margin-bottom: 4px;
}

.phone-line {
    color: var(--color-text-light);
    font-weight: 600;
}

.email-line a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    text-align: center;
}

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

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 10002;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-aspect-ratio {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    background-color: #000;
}

.video-aspect-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 2.5rem;
    cursor: pointer;
}

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

/* ==========================================================================
   Responsive Queries
   ========================================================================== */

@media (max-width: 1200px) {
    .main-title {
        font-size: 4rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 991px) {
    :root {
        --header-height: 80px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-img {
        height: 400px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-img {
        height: 400px;
    }
    
    .barbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-banner-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    /* Mobile Menu Drawer Toggle */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #0b0b0b;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        padding: 120px 40px;
        transition: right var(--transition-normal);
        z-index: 1500;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 32px;
    }
    
    .nav-item {
        font-size: 1rem;
    }
    
    /* Toggle Icon Animation states */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .main-title {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .services-list-grid {
        grid-template-columns: 1fr;
    }
    
    .barbers-grid {
        grid-template-columns: 1fr;
    }
    
    .why-title, .barbers-title, .reviews-title {
        font-size: 2.2rem;
    }
    
    .why-features-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-carousel-container {
        padding: 0 10px;
    }
    
    .review-slide {
        padding: 0;
    }
    
    .review-card-inner {
        padding: 32px 24px;
    }
    
    .review-text {
        font-size: 1.1rem;
    }
    
    .carousel-control {
        display: none; /* Swipe/Touch or bullets on mobile */
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile Spacing & Layout Optimizations */
    .services-section, 
    .why-section, 
    .barbers-section, 
    .reviews-section {
        padding: 60px 0 !important;
    }
    
    .cta-section {
        padding: 60px 0 !important;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    /* Full-width buttons for easier mobile tapping */
    .hero-actions-row .btn, 
    .cta-button-side .btn,
    .why-right .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    /* Ensure ambient glow doesn't cause horizontal overflow or dominate small screens */
    .cta-section::before, 
    .hero-content::before, 
    .why-section::after {
        opacity: 0.3;
        width: 100%;
    }
    
    /* Tighter image heights so they don't consume the whole viewport */
    .services-img, .why-img {
        height: 300px;
    }
    
    .barbers-header-row {
        margin-bottom: 30px;
    }
}

/* --- PREMIUM INTERACTIVE STYLING EFFECTS --- */

/* 1. Barber Pole Reflection Sweep (Logo Effect) */
.logo-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 15%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0.05) 85%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: reflection-sweep 14s infinite ease-in-out;
    pointer-events: none;
}
@keyframes reflection-sweep {
    0%, 85% { left: -150%; }
    95%, 100% { left: 150%; }
}

/* 2. Spotlight Cursor Effect */
.cursor-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(217, 31, 38, 0.1) 0%,
        rgba(217, 31, 38, 0.03) 45%,
        rgba(0, 0, 0, 0) 75%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    will-change: transform;
    transform: translate3d(-300px, -300px, 0);
}
@media (max-width: 991px) {
    .cursor-spotlight {
        display: none;
    }
}

/* 3. Animated Red CTA Gradient & Glowing Ambient Lighting */
.btn-primary, .btn-cta, #btn-hero-book {
    background: linear-gradient(135deg, #e53935, #D91F26, #b71c1c, #D91F26);
    background-size: 300% 300%;
    animation: cta-gradient-move 7s ease infinite;
    box-shadow: 0 4px 20px rgba(217, 31, 38, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.btn-primary:hover, .btn-cta:hover, #btn-hero-book:hover {
    box-shadow: 0 6px 30px rgba(217, 31, 38, 0.45);
    transform: translateY(-2px);
}
@keyframes cta-gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ambient Glow Lighting */
.site-header {
    box-shadow: 0 4px 30px rgba(217, 31, 38, 0.05);
}
.header-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(217, 31, 38, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}
.cta-section {
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(217, 31, 38, 0.08) 0%, rgba(7, 7, 7, 0) 70%), var(--color-bg-light-dark) !important;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 31, 38, 0.06) 0%, rgba(0,0,0,0) 80%);
    pointer-events: none;
    filter: blur(40px);
}
.hero-content {
    position: relative;
}
.hero-content::before {
    content: '';
    position: absolute;
    top: 40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 31, 38, 0.06) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(50px);
}
.why-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 31, 38, 0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}

/* Barbers Modal Popup */
.barbers-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.barbers-modal.active {
    display: flex;
}
.barbers-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(10px);
}
.barbers-modal-content {
    position: relative;
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 1000px;
    max-height: 85vh;
    border-radius: 12px;
    padding: 40px;
    overflow-y: auto;
    z-index: 2;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}
.barbers-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
.barbers-modal-close:hover {
    color: var(--color-primary);
}
.barbers-modal-header {
    text-align: center;
    margin-bottom: 40px;
}
.barbers-modal-subtitle {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}
.barbers-modal-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
}
.barbers-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
@media (max-width: 767px) {
    .barbers-modal-content {
        padding: 30px 20px;
        max-height: 90vh;
    }
    .barbers-modal-title {
        font-size: 1.5rem;
    }
}
