/* 
   JOHNSONS BARBER SHOP - AWWWARDS "SITE OF THE DAY" EDITION
   Theme: Modern Luxury / Masculine Elegance
*/

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

:root {
    /* --- Awwwards Palette --- */
    --color-bg: #121212;
    /* Deep Matte Charcoal */
    --color-surface: #1E1E1E;
    /* Slightly lighter for cards */
    --color-gold: #FFEB3B;
    /* Canary Yellow */
    --color-bronze: #C6F1BC;
    /* Pistachio Green */
    --color-white: #F5F5F7;
    /* Off-white for less eye strain */
    --color-text-muted: #A1A1AA;

    /* --- Gradients --- */
    --grad-gold: linear-gradient(135deg, #FFEB3B 0%, #F4D03F 100%);
    --grad-dark: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, #121212 100%);

    /* --- Dimensions --- */
    --nav-height: 80px;
    --radius-lg: 24px;
    --radius-md: 12px;
    --booking-sidebar-width: 350px;

    --booking-sidebar-width: 350px;

    /* --- Typography --- */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* --- Spacing --- */
    --spacing-lg: 8rem;
    --spacing-md: 4rem;
}

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

/* --- Container Utility --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

body {
    /* Deep Black Luxury Gradient */
    background: radial-gradient(circle at 80% 10%, #1a1a1e 0%, #000000 100%);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    line-height: 1.1;
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 60ch;
}

/* --- Links & Buttons --- */
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    /* Pill shape */
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-gold);
    color: #121212;
    box-shadow: 0 10px 20px -5px rgba(255, 235, 59, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(255, 235, 59, 0.5);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* --- Glassmorphism Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    justify-content: center;
    /* Centered Container */
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.85);
    /* Darker backdrop */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 235, 59, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

/* --- Premium Testimonials --- */
.reviews-section {
    background-color: #0a0a0d;
    /* Deep Dark Background */
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}

.review-card {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 235, 59, 0.3);
}

.stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
    /* Fallback */
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.reviewer-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
}

.reviewer-info span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verified-badge {
    color: #4cd964;
    margin-left: 5px;
    font-size: 0.8rem;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    z-index: 1001;
}

.logo span {
    color: var(--color-gold);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

/* Hide Nav Links on Mobile - Handled by Bottom Nav for better UX */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .header-inner {
        justify-content: center; /* Center logo on mobile */
    }
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    color: var(--color-white);
    transition: 0.3s;
}

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

/* --- Split Hero Layout --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    /* Removed background image - now using split visual */
    background: radial-gradient(circle at 20% 50%, #1a1a1e 0%, #000000 100%);
    overflow: hidden;
    /* Ensure image doesn't overflow section */
}

.hero-overlay {
    display: none;
}

.hero-split-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    /* Remove gap for seamless blending */
    position: relative;
    z-index: 2;
    width: 100%;
    align-items: center;
    max-width: 1600px;
    /* Allow wider spread */
}

.hero-content {
    padding-left: 5%;
    /* Align text */
    animation: fadeUp 1s ease-out;
    z-index: 10;
}

.hero-content p {
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-white);
    /* White main text */
}

.hero-content h1 span {
    display: block;
    font-style: italic;
    color: var(--color-gold);
    /* Gold accent */
}

.hero-visual {
    position: relative;
    height: 100vh;
    /* Full height match */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Removed borders/shadows for Mockup Look */
    animation: fadeIn 1.5s ease-out;
}

.hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* MASKING: Fades image from transparent (left) to opaque (right) */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
    mask-image: linear-gradient(to right, transparent 0%, black 25%);
    opacity: 0.9;
}

.hero-visual:hover .hero-img-main {
    transform: scale(1.05);
}

/* --- Section Titles --- */
.section-title h2 {
    color: #E5E5E5;
    /* Readable White/Grey */
    font-size: 3rem;
    margin: 0;
}

/* --- Horizontal Scroll Service Menu (Netflix Style) --- */
.section-title {
    padding: 0 5%;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

/* --- Footer (Desktop) --- */
footer {
    background-color: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--color-text-muted);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-gold);
    width: 20px;
}

.section-title .line {
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

/* --- Responsive Service Layout (Grid on Desktop, Swipe on Mobile) --- */
.horizontal-scroll-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Column Grid Desktop */
    gap: 2rem;
    padding: 2rem 5%;
    padding-bottom: 4rem;
}

.service-card-cinematic {
    flex: none;
    /* Reset flex */
    width: 100%;
    /* Fill Grid */
    height: 500px;
    background: #111;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push text to bottom */
}

.service-card-cinematic::before {
    /* Gradient Overlay for Text Readability */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 1;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s ease;
}

.service-card-cinematic:hover .card-img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.card-content {
    position: relative;
    z-index: 2;
    /* Text above gradient */
    padding: 2rem;
    color: var(--color-white);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.card-price {
    display: block;
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-content p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.select-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {

    /* Hero Changes */
    .hero-split-layout {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-btns {
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
        /* Override inline styles */
    }

    /* Service Swipe on Mobile */
    .horizontal-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-template-columns: none;
        padding: 1rem 5% 3rem;
        gap: 1.5rem;
        scrollbar-width: none;
    }
    .horizontal-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .service-card-cinematic {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 450px;
    }
}

/* --- Mobile Bottom Navigation --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 235, 59, 0.2);
    z-index: 2000;
    justify-content: space-around;
    align-items: center;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 70px;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 4px;
}

.mobile-nav-item i {
    font-size: 1.2rem;
}

.mobile-nav-item.active {
    color: var(--color-gold);
}

.mobile-nav-item.book-btn-mobile {
    background: var(--grad-gold);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
    margin-top: -35px;
    border: 4px solid #121212;
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
}

/* --- Mobile Footer Accordion --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-col h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col h4::after {
        content: '+';
        font-size: 1.2rem;
        color: var(--color-gold);
        transition: 0.3s;
    }

    .footer-col.active h4::after {
        content: '-';
        transform: rotate(180deg);
    }

    /* Hide links by default on mobile */
    .footer-links,
    .footer-contact {
        display: none;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .footer-col.active .footer-links,
    .footer-col.active .footer-contact {
        display: block;
        animation: fadeIn 0.3s;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 900px) {

    /* Hero Changes */
    .hero-split-layout {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-btns {
        justify-content: center;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
        /* Override inline styles */
    }

    /* Service Swipe on Mobile */
    .horizontal-scroll-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-template-columns: none;
        padding-right: 5%;
        /* Restore padding for scroll */
    }

    .service-card-cinematic {
        flex: 0 0 300px;
        /* Fixed width for swipe */
        scroll-snap-align: start;
    }
}

/* --- Mobile Footer Accordion --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-col h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-col h4::after {
        content: '+';
        font-size: 1.2rem;
        color: var(--color-gold);
        transition: 0.3s;
    }

    .footer-col.active h4::after {
        content: '-';
        transform: rotate(180deg);
    }

    /* Hide links by default on mobile */
    .footer-links,
    .footer-contact {
        display: none;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .footer-col.active .footer-links,
    .footer-col.active .footer-contact {
        display: block;
        animation: fadeIn 0.3s;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Services Page Specifics --- */
.page-header {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 4rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #2a2a30 0%, #121212 100%);
}

.page-header p {
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin: 0 auto 1rem;
}

.menu-section {
    padding: var(--spacing-md) 0;
}

.service-category-section {
    margin-bottom: var(--spacing-lg);
}

/* --- About Page --- */
.about-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at center, #2a2a30 0%, #000000 100%);
    margin-bottom: var(--spacing-lg);
}

.about-hero p {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin: 0 auto 1rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.modern-story-section {
    padding-bottom: var(--spacing-lg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: rgba(30, 30, 30, 0.5);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Contact Page --- */
.contact-info {
    padding: var(--spacing-md) 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.faq-section {
    padding: var(--spacing-lg) 0;
}

/* --- Portfolio Page --- */
.gallery-section {
    padding: var(--spacing-md) 0;
}

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

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--color-gold);
    color: #121212;
    border-color: var(--color-gold);
}

.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    z-index: 10;
}

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

.overlay-content h4 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

@media (max-width: 900px) {

    .story-grid,
    .split-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- MODERN LUXURY RELAUNCH (About Page) --- */

/* Hero */
.about-hero-luxury {
    height: 70vh;
    min-height: 500px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    /* Darker overlay for text pop */
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease-out;
}

.eyebrow {
    display: block;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* --- Lightbox Styles --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

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

.gold-line-center {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 1.5rem auto 0;
}

/* Story Section */
.story-section-luxury {
    padding: var(--spacing-lg) 0;
    background: #121212;
}

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

.story-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.gold-text {
    color: var(--color-gold);
}

.highlight-text {
    border-left: 3px solid var(--color-gold);
    padding-left: 1.5rem;
    font-size: 1.3rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 2rem;
}

/* Visual Grid - 1 Big, 2 Small stacked */
.story-visuals {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 500px;
}

.visual-item-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
}

.visual-item-small {
    height: 100%;
}

.story-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    /* Slight soft edge */
    filter: grayscale(30%);
    /* Cinematic look */
    transition: 0.5s;
}

.story-visuals img:hover {
    filter: grayscale(0%);
}

/* Location Luxury */
.location-luxury {
    background: #0a0a0a;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.location-split {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
}

.map-frame {
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
    /* Custom Dark Map Theme */
}

.location-info h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-block:last-of-type {
    border-bottom: none;
}

.info-block i {
    font-size: 1.5rem;
    color: var(--color-gold);
    padding-top: 5px;
}

.info-block h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    width: 250px;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

/* Responsive Redesign */
@media (max-width: 900px) {

    .story-grid-luxury,
    .location-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-visuals {
        height: 300px;
        /* Shorter on mobile */
    }

    .about-hero-luxury {
        height: 50vh;
    }
}

/* --- Contact Form --- */
.contact-form-section {
    padding: var(--spacing-md) 0;
    background: #0a0a0a;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* --- FAQ High-Fidelity Design --- */
.faq-section {
    background-color: #000000 !important;
    position: relative;
    padding: var(--spacing-lg) 0;
}

.faq-item {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.5rem 0;
}

.faq-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.faq-header i {
    color: var(--color-gold);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.7;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease, padding 0.4s ease;
    opacity: 0;
    padding-bottom: 0;
}

.faq-answer p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Active State */
.faq-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.15);
}

/* --- Section Headers (Centered) --- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.section-header h3 {
    font-size: 1.2rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
}

.faq-item.active .faq-header i {
    transform: rotate(45deg);
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.6);
}

.faq-item.active .faq-header h4 {
    color: var(--color-white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 1.5rem;
}

/* --- Hiding FAQ List --- */
.faq-list-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease-in-out;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list-container.open {
    max-height: 2000px;
    opacity: 1;
    padding-top: 2rem;
}

/* --- Booking System High-Fidelity --- */
.booking-page-container {
    background-color: #000000;
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 4rem;
}

.booking-focus-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Progress Steps */
.progress-steps-horizontal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-steps-horizontal::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.step-node {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
}

.step-circle {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}

.step-node.active .step-circle {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.3);
}

.step-node span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.step-node.active span {
    color: var(--color-white);
}

/* Step Container */
.booking-step {
    animation: fadeUp 0.5s ease-out;
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.step-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: #999;
    font-size: 1.1rem;
    margin: 0 auto;
    text-align: center;
    max-width: 600px;
}

/* Service Grid */
.booking-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.booking-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.booking-card:hover {
    border-color: rgba(255, 235, 59, 0.5);
    transform: translateY(-2px);
    background: rgba(30, 30, 30, 0.8);
}

.booking-card.selected {
    border-color: var(--color-gold);
    background: rgba(255, 235, 59, 0.05);
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.1);
}

.booking-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

/* Barber Grid */
.barber-selection-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.barber-avatar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
}

.barber-avatar-card:hover,
.barber-avatar-card.selected {
    opacity: 1;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.barber-avatar-card.selected .avatar-circle {
    border-color: var(--color-gold);
    filter: grayscale(0%);
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.2);
}

.barber-avatar-card h3 {
    font-size: 1rem;
    font-weight: 500;
}

/* Date & Time */
.custom-date-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color-scheme: dark;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.time-slot {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

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

.time-slot.selected {
    background: var(--color-gold);
    color: #000;
    font-weight: 600;
}

.time-slot.disabled {
    opacity: 0.3;
    pointer-events: none;
    text-decoration: line-through;
}

/* Floating Inputs */
.floating-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.floating-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: white;
    font-size: 1.1rem;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.floating-input:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

.floating-label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--color-text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--color-gold);
}

/* --- Rewards Portal (New) --- */
.portal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.login-box {
    max-width: 500px;
    margin: 4rem auto;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.dashboard-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    height: 100%;
}

.stat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 235, 59, 0.1);
}

.stat-number {
    font-size: 4rem;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rewards-scroller {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar */
.rewards-scroller::-webkit-scrollbar {
    width: 6px;
}

.rewards-scroller::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.rewards-scroller::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.reward-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-left: 3px solid var(--color-gold);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.reward-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-cancel {
    background: transparent;
    border: 1px solid #ff4444;
    color: #ff4444;
    padding: 8px 15px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-cancel:hover {
    background: rgba(255, 68, 68, 0.1);
}

/* --- Checkerboard Accent Details --- */
.header {
    border-bottom: none !important;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%), 
        linear-gradient(-45deg, #000 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #000 75%), 
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
    background-color: #fff;
    z-index: 1002;
}

footer {
    position: relative;
    border-top: none !important;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%), 
        linear-gradient(-45deg, #000 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #000 75%), 
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 10px 10px;
    background-position: 0 0, 0 5px, 5px -5px, -5px 0px;
    background-color: #fff;
    z-index: 2;
}

.section-title .line {
    height: 6px !important;
    background: #fff !important;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%), 
        linear-gradient(-45deg, #000 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #000 75%), 
        linear-gradient(-45deg, transparent 75%, #000 75%) !important;
    background-size: 8px 8px !important;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px !important;
    opacity: 0.7;
    border: none;
}
