/* ===================================
   FAST BARBER - Premium Styles v3.0
   =================================== */

:root {
    --gold: #CC9259;
    --gold-dark: #b07a45;
    --gold-light: #e0b580;
    --gold-glow: rgba(204, 146, 89, 0.4);
    --dark: #0a0a0a;
    --darker: #050505;
    --gray-900: #141414;
    --gray-800: #1e1e1e;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-400: #888;
    --gray-300: #aaa;
    --gray-200: #ccc;
    --white: #f5f5f5;
    --font-h: 'Playfair Display', Georgia, serif;
    --font-b: 'Montserrat', -apple-system, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 12px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-b);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-300);
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

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

/* ===================================
   LOADER
   =================================== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    height: 120px;
    margin: 0 auto 30px;
    animation: loaderPulse 1.5s ease infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loaderFill 2s var(--ease) forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

.loader-text {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.loader-dots::after {
    content: '';
    animation: dots 1.5s steps(3) infinite;
}

@keyframes dots {
    0% { content: ''; }
    33% { content: '.'; }
    66% { content: '..'; }
    100% { content: '...'; }
}

/* ===================================
   SCROLL PROGRESS
   =================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    z-index: 10001;
    width: 0;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* ===================================
   CUSTOM CURSOR
   =================================== */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s;
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    background: rgba(204, 146, 89, 0.08);
    border-color: var(--gold-light);
}

.custom-cursor-dot.hover { opacity: 0; }

@media (pointer: coarse) {
    body { cursor: auto; }
    .custom-cursor, .custom-cursor-dot { display: none !important; }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-b);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 60px;
    cursor: none;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before { transform: translateX(100%); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px var(--gold-glow), inset 0 0 20px rgba(255,255,255,0.1);
    transform: translateY(-3px);
    color: var(--dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-large { padding: 18px 40px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-nav {
    padding: 10px 24px;
    font-size: 0.75rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    border-color: var(--gold);
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    padding: 10px 0;
    border-bottom: 1px solid rgba(204, 146, 89, 0.1);
}

.nav-container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; }

.logo-img {
    height: 65px;
    width: auto;
    transition: all 0.4s var(--ease);
    filter: drop-shadow(0 2px 8px rgba(204,146,89,0.2));
}

.navbar.scrolled .logo-img { height: 45px; }
.footer .logo-img { height: 65px; }

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

.nav-links a {
    color: var(--gray-300);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 6px 0;
    cursor: none;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: all 0.4s var(--ease);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-links a:not(.btn):hover { color: var(--white); }
.nav-links a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker);
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    filter: saturate(0.7) contrast(1.1) sepia(0.15) brightness(0.95);
    transition: opacity 1.5s ease, transform 6s ease;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 0.25;
    transform: scale(1.05);
}

.particle-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.8) 100%);
    z-index: 1;
}

/* Floating decorative elements */
.floating-elements { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

.float-el {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: var(--gold);
    filter: blur(60px);
}

.float-1 {
    width: 400px; height: 400px;
    top: -100px; right: -100px;
    animation: floatMove1 20s ease-in-out infinite;
}

.float-2 {
    width: 300px; height: 300px;
    bottom: -50px; left: -50px;
    animation: floatMove2 25s ease-in-out infinite;
}

.float-3 {
    width: 200px; height: 200px;
    top: 40%; left: 60%;
    animation: floatMove3 18s ease-in-out infinite;
}

@keyframes floatMove1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 60px) scale(1.2); }
}

@keyframes floatMove2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -40px) scale(0.8); }
}

@keyframes floatMove3 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-40px, 30px); }
    66% { transform: translate(30px, -20px); }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-logo {
    height: 220px;
    width: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 20px 40px rgba(204,146,89,0.25));
    opacity: 0;
    animation: heroLogoIn 1.2s var(--ease) 2.2s forwards;
    transform-style: preserve-3d;
    transition: transform 0.15s ease;
}

@keyframes heroLogoIn {
    from { opacity: 0; transform: scale(0.8) rotateY(-10deg); }
    to { opacity: 1; transform: scale(1) rotateY(0); }
}

.hero-title-sr {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
}

/* Shimmer gold text */
.shimmer-text {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-style: italic;
    letter-spacing: 8px;
    background: linear-gradient(120deg, var(--gold-dark) 0%, var(--gold-light) 25%, #fff 50%, var(--gold-light) 75%, var(--gold-dark) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite, fadeSlideUp 0.8s var(--ease) 2.6s forwards;
    opacity: 0;
    margin-bottom: 24px;
}

@keyframes shimmer {
    to { background-position: -200% 0; }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 520px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease) 2.9s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease) 3.2s forwards;
}

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

/* Mouse scroll indicator */
.scroll-down {
    display: inline-block;
    margin-top: 50px;
    z-index: 2;
    opacity: 0;
    animation: fadeSlideUp 0.8s var(--ease) 3.5s forwards;
}

.mouse-scroll { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(204,146,89,0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s ease infinite;
}

@keyframes wheelScroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

.mouse-scroll span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 0.6;
}

/* ===================================
   SECTIONS
   =================================== */
.section { padding: 120px 0; position: relative; }
.section-dark { background: var(--gray-900); }

.section-header { text-align: center; margin-bottom: 70px; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 20px;
    border: 1px solid rgba(204,146,89,0.2);
    border-radius: 30px;
    background: rgba(204,146,89,0.05);
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.section-divider-left { margin: 16px 0 0; }

/* ===================================
   GLASS CARD SYSTEM
   =================================== */
.glass-card {
    background: linear-gradient(135deg, rgba(30,30,30,0.8), rgba(20,20,20,0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 146, 89, 0.08);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    transform-style: preserve-3d;
}

.glass-card:hover {
    border-color: rgba(204, 146, 89, 0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(204,146,89,0.06);
}

.glass-card-mini {
    background: rgba(30,30,30,0.5);
    border: 1px solid rgba(204, 146, 89, 0.08);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.4s var(--ease);
}

.glass-card-mini:hover {
    border-color: rgba(204, 146, 89, 0.2);
    background: rgba(40,40,40,0.5);
    transform: translateX(8px);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204,146,89,0.04) 0%, transparent 50%);
    pointer-events: none;
    transition: opacity 0.5s;
    opacity: 0;
}

.glass-card:hover .card-glow { opacity: 1; }

.card-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    border-radius: var(--radius);
}

/* ===================================
   À PROPOS
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--gray-200);
}

.about-text p { margin-bottom: 16px; }
.about-text strong { color: var(--gold); }

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-600);
}

.stat { text-align: center; flex: 1; }

.stat-number {
    display: block;
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
}

.image-reveal {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.image-reveal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 1s var(--ease);
    z-index: 2;
}

.image-reveal.revealed::after {
    transform: scaleX(0);
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.1) sepia(0.15) brightness(0.95);
    transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
}

.image-reveal:hover .about-img {
    transform: scale(1.05);
    filter: saturate(1) contrast(1.1) sepia(0.1) brightness(1);
}

/* ===================================
   SERVICES
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 50px 30px 40px;
    text-align: center;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(204,146,89,0.12), rgba(204,146,89,0.03));
    margin-bottom: 28px;
    color: var(--gold);
    border: 1px solid rgba(204,146,89,0.15);
    transition: all 0.5s var(--ease);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(204,146,89,0.2);
}

/* SVG draw animation */
.draw-svg path, .draw-svg circle, .draw-svg line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1.5s var(--ease);
}

.service-card.visible .draw-svg path,
.service-card.visible .draw-svg circle,
.service-card.visible .draw-svg line {
    stroke-dashoffset: 0;
}

.service-card h3 {
    font-family: var(--font-h);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(204,146,89,0.1);
    border: 1px solid rgba(204,146,89,0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ===================================
   TARIFS
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card { padding: 45px 30px; position: relative; }

.pricing-title {
    font-family: var(--font-h);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(204,146,89,0.15);
}

.pricing-icon-large {
    position: absolute;
    top: 30px;
    right: 20px;
    color: var(--gold);
    opacity: 0.15;
}

.pricing-items { display: flex; flex-direction: column; gap: 18px; }

.pricing-item { display: flex; align-items: baseline; gap: 8px; }

.pricing-service {
    font-size: 0.9rem;
    color: var(--gray-300);
    white-space: nowrap;
}

.pricing-dots {
    flex: 1;
    border-bottom: 1px dotted var(--gray-600);
    min-width: 20px;
    margin-bottom: 4px;
}

.pricing-price {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.pricing-price small {
    font-size: 0.7em;
    opacity: 0.6;
}

.pricing-badge-pill {
    display: inline-block;
    margin-top: 24px;
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    padding: 20px 30px;
    background: rgba(204,146,89,0.04);
    border-radius: var(--radius);
    border: 1px solid rgba(204,146,89,0.1);
    font-size: 0.85rem;
}

.pricing-note strong { color: var(--gold); }

/* ===================================
   SALONS
   =================================== */
.salons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.salon-card { overflow: hidden; }

.salon-map {
    width: 100%;
    height: 250px;
    background: var(--gray-800);
    position: relative;
}

.salon-map iframe { width: 100%; height: 100%; }

.salon-info { padding: 30px; }

.salon-info h3 {
    font-family: var(--font-h);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.salon-details { display: flex; flex-direction: column; gap: 16px; }

.salon-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.6;
}

.salon-details svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }

/* ===================================
   CINEMA GALLERY
   =================================== */
/* Gallery Grid - Masonry style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.1) sepia(0.15) brightness(0.95);
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204,146,89,0.0) 0%, rgba(204,146,89,0.0) 100%);
    transition: background 0.5s var(--ease);
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: saturate(1) contrast(1.1) sepia(0.1) brightness(1.05);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(135deg, rgba(204,146,89,0.15) 0%, rgba(0,0,0,0.2) 100%);
}

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* ===================================
   MARQUEE BANNER
   =================================== */
.marquee-banner {
    overflow: hidden;
    padding: 18px 0;
    background: linear-gradient(90deg, var(--darker) 0%, rgba(204,146,89,0.08) 50%, var(--darker) 100%);
    border-top: 1px solid rgba(204,146,89,0.15);
    border-bottom: 1px solid rgba(204,146,89,0.15);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    opacity: 0.5;
    white-space: nowrap;
    padding: 0 20px;
}

.marquee-reverse .marquee-track {
    animation: marqueeScrollReverse 22s linear infinite;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ===================================
   BARBER POLE (decorative)
   =================================== */
.barber-pole-left,
.barber-pole-right {
    position: absolute;
    width: 6px;
    height: 100%;
    top: 0;
    z-index: 0;
    background: repeating-linear-gradient(
        -45deg,
        #cc3333,
        #cc3333 10px,
        #fff 10px,
        #fff 20px,
        #3355cc 20px,
        #3355cc 30px,
        #fff 30px,
        #fff 40px
    );
    background-size: 40px 56px;
    animation: poleScroll 2s linear infinite;
    opacity: 0.3;
    border-radius: 3px;
}

.barber-pole-left { left: 20px; }
.barber-pole-right { right: 20px; }

@keyframes poleScroll {
    0% { background-position: 0 0; }
    100% { background-position: 0 56px; }
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    animation: testimonialSlide 15s ease-in-out infinite;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    padding: 40px 30px;
    text-align: center;
    flex-shrink: 0;
}

.testimonial-stars {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--darker);
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gold);
    opacity: 0.7;
}

@keyframes testimonialSlide {
    0%, 30% { transform: translateX(0); }
    33.33%, 63.33% { transform: translateX(calc(-33.333% - 8px)); }
    66.66%, 96.66% { transform: translateX(calc(-66.666% - 16px)); }
    100% { transform: translateX(0); }
}

/* ===================================
   BOOKING / PLANITY
   =================================== */
.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-intro p {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    line-height: 1.7;
}

.booking-cta-box {
    text-align: center;
    padding: 60px 40px;
    border: 1px solid rgba(204,146,89,0.2);
    border-radius: var(--radius);
    background: rgba(204,146,89,0.03);
    max-width: 600px;
    margin: 0 auto;
}

.booking-cta-icon {
    margin-bottom: 24px;
}

.booking-cta-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.booking-cta-desc {
    color: var(--gray-300);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.booking-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 16px 40px;
}

.booking-cta-phone {
    margin-top: 20px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.booking-cta-phone a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.booking-cta-phone a:hover {
    text-decoration: underline;
}

/* Floating Book Button */
.floating-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--darker);
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 60px;
    box-shadow: 0 8px 30px rgba(204,146,89,0.4);
    transition: all 0.3s var(--ease);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.floating-book-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-book-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(204,146,89,0.6);
}

.floating-book-btn svg {
    flex-shrink: 0;
}

/* ===================================
   HORAIRES
   =================================== */
.horaires-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, rgba(204,146,89,0.04) 100%);
}

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

.horaires-info h2 {
    font-family: var(--font-h);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.horaires-table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
}

.horaires-table tr { border-bottom: 1px solid var(--gray-600); }

.horaires-table td { padding: 14px 0; font-size: 0.95rem; }
.horaires-table td:first-child { color: var(--gray-200); font-weight: 500; }
.horaires-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; }
.horaires-table .closed td:last-child { color: var(--gray-400); }

.horaires-cta {
    padding: 50px 40px;
    text-align: center;
}

.horaires-cta h3 {
    font-family: var(--font-h);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.horaires-cta p { margin-bottom: 30px; color: var(--gray-400); }

.horaires-cta .btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
}

.horaires-cta .btn:last-child { margin-bottom: 0; }

/* ===================================
   CONTACT
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 4px; }

.contact-item h4 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-item a, .contact-item p { color: var(--gray-300); font-size: 0.9rem; }

.contact-form { padding: 40px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-200);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--gray-600);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-b);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(204,146,89,0.1);
    background: rgba(204,146,89,0.03);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23CC9259' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

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

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    cursor: pointer;
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    transform: scale(0.9);
    transition: transform 0.4s var(--ease);
}

.lightbox.active .lightbox-img { transform: scale(1); }

.lightbox-caption {
    color: var(--gray-300);
    font-family: var(--font-h);
    font-size: 1.1rem;
}

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

.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--darker);
    padding: 80px 0 0;
    border-top: 1px solid rgba(204,146,89,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand p { margin-top: 16px; color: var(--gray-400); font-size: 0.9rem; }

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: all 0.3s var(--ease);
    position: relative;
    display: inline-block;
}

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

.footer-contact p { margin-bottom: 8px; }
.footer-contact a { color: var(--gray-400); font-size: 0.85rem; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding: 20px 0;
    text-align: center;
}

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

/* ===================================
   REVEAL ANIMATIONS
   =================================== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s var(--ease);
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Staggered reveals */
.reveal-up.stagger-1 { transition-delay: 0.1s; }
.reveal-up.stagger-2 { transition-delay: 0.2s; }
.reveal-up.stagger-3 { transition-delay: 0.3s; }
.reveal-up.stagger-4 { transition-delay: 0.4s; }
.reveal-up.stagger-5 { transition-delay: 0.5s; }
.reveal-up.stagger-6 { transition-delay: 0.6s; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 992px) {
    .about-grid, .horaires-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-auto-rows: 180px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: right 0.4s var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }

    .nav-links.active { right: 0; }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    .services-grid, .pricing-grid, .salons-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 20px; }
    .section { padding: 80px 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .horaires-cta { padding: 30px 20px; }
    .contact-form { padding: 25px; }
    .hero-logo { height: 150px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-wide { grid-column: span 2; }
    .testimonial-card { min-width: calc(100% - 0px); }
    .barber-pole-left, .barber-pole-right { display: none; }
    .marquee-track span { font-size: 1rem; letter-spacing: 4px; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .container { padding: 0 16px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; gap: 8px; }
    .gallery-wide { grid-column: span 1; }
    .gallery-tall { grid-row: span 1; }
}
