/* ==========================================================================
   DESIGN SYSTEM - STUDIO 7 BARBEARIA
   ========================================================================== */

:root {
    /* Colors */
    --color-bg: #0c0c0e;
    --color-surface: #141417;
    --color-surface-hover: #1c1c20;
    --color-primary: #f5b025; /* Gold/Amber from logo */
    --color-primary-dark: #cc8d14;
    --color-primary-light: #f7c55b;
    --color-white: #ffffff;
    --color-text: #e1e1e6;
    --color-text-muted: #8e8e9a;
    --color-border: rgba(245, 176, 37, 0.12);
    --color-border-hover: rgba(245, 176, 37, 0.3);
    --color-glow: rgba(245, 176, 37, 0.25);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #f5b025 0%, #b8860b 100%);
    --gradient-dark: linear-gradient(180deg, #141417 0%, #0c0c0e 100%);
    --gradient-card: linear-gradient(135deg, rgba(28, 28, 32, 0.9) 0%, rgba(20, 20, 23, 0.95) 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 30%, #f5b025 100%);
    --gradient-vip: linear-gradient(135deg, #1e1e1e 0%, #111111 50%, #292929 100%);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.9);
    --shadow-gold: 0 0 25px rgba(245, 176, 37, 0.3);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #08080a;
}

::-webkit-scrollbar-thumb {
    background: #202025;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

li {
    list-style: none;
}

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

/* Text Utilities */
.text-center { text-align: center; }
.gold-text { color: var(--color-primary); }
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.font-semibold { font-weight: 600; }
.text-muted { color: var(--color-text-muted); }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */

.custom-cursor {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    transition-timing-function: ease-out;
}

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
}

/* Cursor interaction class on hover */
body.hovered .custom-cursor {
    width: 50px;
    height: 50px;
    background-color: rgba(245, 176, 37, 0.1);
    border-color: var(--color-primary-light);
}

/* Hide default cursor on desktop when interactive elements are hovered */
@media (min-width: 992px) {
    a, button, select, input, label, .service-card, .gallery-item {
        cursor: none;
    }
}

/* Disable custom cursor on mobile */
@media (max-width: 991px) {
    .custom-cursor, .custom-cursor-dot {
        display: none;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(245, 176, 37, 0.2);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    border-color: var(--color-primary);
    background-color: rgba(245, 176, 37, 0.05);
    transform: translateY(-2px);
}

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

.w-full {
    width: 100%;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: rgba(12, 12, 14, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo-link {
    display: inline-block;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

#nav-logo-img {
    height: 48px;
    width: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid var(--color-primary);
    box-shadow: 0 0 10px rgba(245, 176, 37, 0.2);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.8rem;
    background: var(--gradient-gold);
    color: #000;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    z-index: 101;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

/* Responsive Navbar */
@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(12, 12, 14, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 99;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .btn-nav {
        display: none; /* Hide on header, accessible via hero/floating btn */
    }

    .mobile-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
    background-image: url('barbershop_interior.png'); /* Luxurious interior background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Dark atmospheric overlay */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(12, 12, 14, 0.75) 0%, rgba(12, 12, 14, 0.95) 80%);
    z-index: 1;
}

/* For screens where the logo as bg is too centered or visual is weird */
@media (max-width: 991px) {
    .hero-section {
        background-attachment: scroll; /* fixes lag on mobile browsers */
        background-position: center;
    }
    .hero-bg-overlay {
        background: radial-gradient(circle at center, rgba(12, 12, 14, 0.8) 0%, rgba(12, 12, 14, 0.98) 90%);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(245, 176, 37, 0.06);
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-family: var(--font-accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-white);
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border);
}

@media (max-width: 576px) {
    .hero-stats {
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
}

/* Scroll Down Mouse */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-down .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 2px;
    animation: scrollMouse 1.8s infinite;
}

.scroll-down .scroll-text {
    font-size: 0.65rem;
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
}

@keyframes scrollMouse {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

@media (max-height: 700px) {
    .scroll-down {
        display: none;
    }
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */

section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

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

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image-card {
    border-radius: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    aspect-ratio: 1;
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-img {
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(245, 176, 37, 0.1));
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-primary);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

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

.about-badge .badge-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

.feature-card {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: rgba(245, 176, 37, 0.08);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

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

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
    .about-badge {
        right: 0px;
        bottom: 0px;
    }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
    background-color: #09090b;
}

.section-header {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

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

.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(245, 176, 37, 0.04), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    transform: translateZ(30px);
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
    transform: translateZ(20px);
}

.service-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    min-height: 54px;
    transform: translateZ(15px);
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    transform: translateZ(25px);
}

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

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

/* Combo Builder */
.combo-builder-wrapper {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.combo-builder-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 176, 37, 0.03) 0%, transparent 70%);
}

.combo-builder-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .combo-builder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .combo-builder-wrapper {
        padding: 30px;
    }
}

.builder-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.builder-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.services-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Custom Checkbox Design */
.checkbox-container {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.checkbox-container:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 176, 37, 0.25);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 2px solid var(--color-text-muted);
    border-radius: 4px;
    margin-right: 16px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.label-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-white);
}

.label-price {
    margin-left: auto;
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--color-primary);
}

.checkbox-container input:checked ~ .label-title {
    color: var(--color-primary-light);
}

/* Builder Result Box */
.builder-result {
    perspective: 1000px;
}

.result-box {
    background-color: rgba(12, 12, 14, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.result-title {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-val {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-white);
}

.result-price-box {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
    background-color: rgba(245, 176, 37, 0.04);
    padding: 16px;
    border-radius: 8px;
    border: 1px dashed var(--color-border);
}

.price-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.price-value {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* ==========================================================================
   SUBSCRIPTION / CLUB SECTION
   ========================================================================== */

.subscription-section {
    overflow: hidden;
}

.subscription-section .section-bg-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 176, 37, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.subscription-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.benefits-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.subscription-card-wrapper {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

/* VIP Card Design (Holographic/Luxurious) */
.premium-club-card {
    width: 380px;
    height: 240px;
    background: var(--gradient-vip);
    border: 1.5px solid rgba(245, 176, 37, 0.4);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 176, 37, 0.1);
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    user-select: none;
}

.premium-club-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-20deg);
    animation: shineCard 6s infinite;
}

@keyframes shineCard {
    0% { left: -100%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

.premium-club-card:hover {
    transform: rotateY(15deg) rotateX(10deg);
}

.club-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.club-logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
}

.badge-vip {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    padding: 4px 10px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
}

.club-card-number {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--color-white);
    margin: 20px 0;
}

.club-card-holder, .club-card-expires {
    display: flex;
    flex-direction: column;
}

.premium-club-card .label {
    font-size: 0.55rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.premium-club-card .name, .premium-club-card .val {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.club-card-holder {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.club-card-expires {
    position: absolute;
    bottom: 30px;
    right: 80px;
}

.club-card-chip {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 25px;
    background: linear-gradient(135deg, #cc8d14 0%, #ecd078 100%);
    border-radius: 4px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .subscription-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 480px) {
    .premium-club-card {
        width: 100%;
        max-width: 340px;
        height: 215px;
        padding: 20px;
    }
    .club-card-number {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */

.gallery-section {
    background-color: #09090b;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform 0.4s, border-color 0.4s;
    background-color: var(--color-surface);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-hover);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

/* Mock image generator using CSS gradients so website looks fully loaded and custom */
.mock-style-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.mock-style-image i {
    font-size: 2.5rem;
    color: var(--color-primary);
    opacity: 0.8;
}

/* Gradient variations for styles */
.hair-1 {
    background: linear-gradient(135deg, #181920 0%, #2f2718 100%);
}

.hair-2 {
    background: linear-gradient(135deg, #181920 0%, #1e2d2a 100%);
}

.beard-1 {
    background: linear-gradient(135deg, #1f1820 0%, #291e18 100%);
}

.beard-2 {
    background: linear-gradient(135deg, #181920 0%, #111a2e 100%);
}

.details-1 {
    background: linear-gradient(135deg, #181920 0%, #271f2e 100%);
}

.details-2 {
    background: linear-gradient(135deg, #181920 0%, #292d30 100%);
}

/* Gallery overlay details */
.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    padding: 24px;
    transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-img-wrapper:hover .gallery-overlay {
    bottom: 0;
}

.cut-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
}

.cut-barber {
    font-size: 0.75rem;
    color: var(--color-primary-light);
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    background: radial-gradient(circle at 10% 20%, rgba(245, 176, 37, 0.01) 0%, transparent 60%);
}

.stars-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.rating-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stars-list {
    display: flex;
    gap: 4px;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-carousel-wrapper {
    max-width: 760px;
    margin: 50px auto 0;
    position: relative;
}

.testimonials-carousel {
    position: relative;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
    position: relative;
}

.testimonial-content {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(245, 176, 37, 0.08);
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-white);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.user-avatar.bg-gold {
    background-color: rgba(245, 176, 37, 0.1);
    color: var(--color-primary);
}

.user-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
}

.user-meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

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

.dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   CONTACT & DETAILS & MAP SECTION
   ========================================================================== */

.contact-section {
    background-color: #09090b;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.status-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    margin-bottom: 30px;
}

.status-indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}

.status-indicator-dot.open {
    background-color: #2ec4b6;
    box-shadow: 0 0 10px rgba(46, 196, 182, 0.6);
}

.status-indicator-dot.closed {
    background-color: #e63946;
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.6);
}

/* Pulsing effect */
.status-indicator-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: scale(1);
    animation: statusPulse 1.8s infinite;
}

.status-indicator-dot.open::after {
    background-color: #2ec4b6;
}

.status-indicator-dot.closed::after {
    background-color: #e63946;
}

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

.status-text {
    font-size: 0.8rem;
    font-family: var(--font-accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: rgba(245, 176, 37, 0.06);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 6px;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    width: 280px;
}

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

.contact-socials {
    display: flex;
    gap: 16px;
}

.contact-socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-socials a:hover {
    color: #000;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Map Card */
.contact-map {
    height: 100%;
}

.map-card {
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .map-card {
        height: 350px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #08080a;
}

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

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

.footer-brand .footer-logo {
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--color-primary);
    margin-bottom: 20px;
}

.brand-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}

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

.footer-links h4, .footer-actions h4 {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-bottom: 8px;
}

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

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

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
    gap: 20px;
}

.dev-tag {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-primary-dark);
}

/* ==========================================================================
   FLOATING BOOKING BUTTON
   ========================================================================== */

.floating-booking-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-gold);
    color: #000;
    border-radius: 50px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(245, 176, 37, 0.4);
    z-index: 90;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-booking-btn i {
    font-size: 1.1rem;
}

.floating-booking-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 35px rgba(245, 176, 37, 0.5);
}

@media (max-width: 576px) {
    .floating-booking-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
    }
    .floating-booking-btn span {
        display: none; /* Icon only on extra small mobile to save space */
    }
    .floating-booking-btn {
        width: 52px;
        height: 52px;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ==========================================================================
   SCROLL REVEAL EFFECTS
   ========================================================================== */

.reveal-fade,
.reveal-slide-up,
.reveal-slide-left,
.reveal-slide-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.reveal-slide-up {
    transform: translateY(40px);
}

.reveal-slide-left {
    transform: translateX(40px);
}

.reveal-slide-right {
    transform: translateX(-40px);
}

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

/* Gallery image zoom style */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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