@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@200;300;400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #c9a96e;
    --primary-dark: #b8944f;
    --primary-light: #dfc292;
    --secondary: #1a1a2e;
    --dark: #0a0a0f;
    --darker: #050508;
    --light: #f8f5f0;
    --body: #f0ebe4;
    --text: #1a1a1a;
    --text-light: #8a8a8a;
    --text-muted: #6b6b6b;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --gold-dark: #a8884d;
    --white: #ffffff;
    --cream: #faf6f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 32px 80px rgba(0,0,0,0.16);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

::selection {
    background: var(--gold);
    color: var(--dark);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--body);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); margin-bottom: 20px; letter-spacing: 4px; }
.preloader-logo span { color: #fff; }
.loader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar::after { content: ''; display: block; width: 40%; height: 100%; background: var(--gold); animation: loaderSlide 1.2s ease-in-out infinite; border-radius: 2px; }
@keyframes loaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(10, 10, 15, 0.92) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 18px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.navbar.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 8, 0.97) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold) !important;
    letter-spacing: 3px;
    font-weight: 700;
}
.navbar-brand span { color: var(--white); font-weight: 300; }
.navbar-brand small { display: block; font-size: 0.55rem; letter-spacing: 4px; color: rgba(255,255,255,0.3); font-family: 'Inter', sans-serif; font-weight: 300; text-transform: uppercase; }
.nav-link {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 8px 20px !important;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40%;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 28px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: none !important;
    box-shadow: 0 4px 15px rgba(201,169,110,0.3);
    transition: var(--transition-bounce) !important;
}
.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(201,169,110,0.4) !important;
    color: #fff !important;
}
.nav-cta::after { display: none; }
.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon { background-image: none; position: relative; width: 28px; height: 20px; }
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    left: 0;
    transition: var(--transition);
}
.navbar-toggler-icon span { top: 9px; }
.navbar-toggler-icon::before { top: 0; }
.navbar-toggler-icon::after { top: 18px; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-bounce);
    cursor: pointer;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }
.whatsapp-float .pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.02) 0%, transparent 50%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 60px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px 6px 8px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease;
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease 0.1s both;
}
.hero h1 .gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero h1 .outline-text {
    -webkit-text-stroke: 1px rgba(201,169,110,0.4);
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.9;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-buttons { animation: fadeInUp 0.8s ease 0.3s both; }
.hero-buttons .btn {
    padding: 16px 44px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}
.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201,169,110,0.45);
}
.hero-buttons .btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: var(--white);
    margin-left: 12px;
}
.hero-buttons .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    background: rgba(201,169,110,0.05);
}
.hero-visual { position: relative; z-index: 2; animation: fadeInRight 1s ease 0.3s both; }
.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,15,0.8) 100%);
    z-index: 1;
}
.hero-image-wrap img { width: 100%; height: 600px; object-fit: cover; display: block; }
.hero-floating-card {
    position: absolute;
    background: rgba(10,10,15,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}
.hero-floating-card.card-1 { bottom: 30px; left: -20px; }
.hero-floating-card.card-2 { top: 30px; right: -20px; animation-delay: -3s; }
.hero-floating-card .icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.hero-floating-card .icon.gold { background: rgba(201,169,110,0.15); color: var(--gold); }
.hero-floating-card .icon.green { background: rgba(16,185,129,0.15); color: #10b981; }
.hero-floating-card .text small { font-size: 0.7rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.hero-floating-card .text strong { font-size: 0.95rem; color: #fff; display: block; }

/* Hero Stats Row */
.hero-stats-row {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}
.hero-stat { text-align: center; }
.hero-stat .number { font-size: 1.8rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; line-height: 1.2; }
.hero-stat .label { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ===== SECTION COMMON ===== */
.section { padding: 120px 0; position: relative; }
.section-dark { background: var(--dark); color: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-light { background: var(--body); }

.section-title {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
}
.section-subtitle {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}
.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 12px;
}
.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    font-weight: 300;
}
.section-title.light h2 { color: var(--white); }
.section-title.light p { color: rgba(255,255,255,0.55); }

/* ===== SERVICES ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,169,110,0.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    transform: scale(1.05);
}
.service-card h5 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.service-card .price-row { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.04); }
.service-card .price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; }
.service-card .duration { font-size: 0.8rem; color: var(--text-muted); }
.service-card .duration i { margin-right: 4px; }

/* ===== BARBERS ===== */
.barber-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}
.barber-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.barber-photo {
    height: 320px;
    background: linear-gradient(145deg, var(--secondary), var(--dark));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.barber-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,15,0.6) 100%);
    z-index: 1;
}
.barber-photo .barber-initials {
    font-size: 5rem;
    color: rgba(201,169,110,0.15);
    font-family: 'Playfair Display', serif;
    padding: 20px;
    z-index: 1;
    line-height: 1;
}
.barber-social {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
}
.barber-card:hover .barber-social { opacity: 1; transform: translateX(0); }
.barber-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}
.barber-social a:hover { background: var(--gold); color: var(--dark); }
.barber-info { padding: 28px; text-align: center; }
.barber-info h5 { margin-bottom: 4px; font-size: 1.15rem; }
.barber-info .title { font-size: 0.8rem; color: var(--gold); font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.barber-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.barber-info .btn-book {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.barber-info .btn-book:hover { background: var(--gold); color: var(--dark); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-image-wrap img { width: 100%; height: 500px; object-fit: cover; display: block; }
.about-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.6) 100%);
}
.about-experience {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
}
.about-experience .years { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.about-experience .text { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; max-width: 100px; }
.about-content .hero-badge { margin-bottom: 24px; }
.about-content h2 { font-size: 2.8rem; margin-bottom: 20px; letter-spacing: -0.02em; }
.about-content p { color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.9; font-weight: 300; }
.feature-list { display: grid; gap: 20px; }
.feature-item { display: flex; align-items: center; gap: 16px; }
.feature-item .check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(201,169,110,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.feature-item span { font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.testimonial-card .quote-icon {
    font-size: 2rem;
    color: rgba(201,169,110,0.15);
    margin-bottom: 16px;
    line-height: 1;
}
.stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.04); }
.testimonial-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.testimonial-author .name { font-weight: 600; font-size: 0.95rem; }
.testimonial-author .role { font-size: 0.8rem; color: var(--text-muted); }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 1;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,15,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i { font-size: 2rem; color: var(--white); }

/* ===== CONTACT ===== */
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.contact-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201,169,110,0.12), rgba(201,169,110,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin: 0 auto 16px;
}
.contact-card h6 { font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 8px; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

/* ===== MAP ===== */
.map-section { height: 400px; background: var(--dark); position: relative; overflow: hidden; }
.map-section .map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #0d0d0d);
    color: rgba(255,255,255,0.3);
    font-size: 1rem;
    flex-direction: column;
    gap: 12px;
}
.map-section .map-placeholder i { font-size: 3rem; color: rgba(201,169,110,0.2); }

/* ===== INSTAGRAM STRIP ===== */
.insta-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.insta-strip a {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--dark), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.insta-strip a:hover { color: var(--gold); background: linear-gradient(135deg, var(--secondary), var(--dark)); }
.insta-strip a .insta-icon { z-index: 1; }

/* ===== NEWSLETTER ===== */
.newsletter {
    background: linear-gradient(135deg, var(--dark), var(--secondary));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.newsletter-content { position: relative; z-index: 1; text-align: center; }
.newsletter-content h3 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
.newsletter-content p { color: rgba(255,255,255,0.5); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
    padding: 14px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,0.3); }

/* ===== FOOTER ===== */
.footer {
    background: var(--darker);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,0.3), transparent);
}
.footer h5 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold); letter-spacing: 3px; }
.footer-brand span { color: var(--white); }
.footer p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.4); }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: var(--dark); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ===== BOOKING PAGE ===== */
.booking-page {
    min-height: 100vh;
    background: var(--dark);
    padding: 140px 0 80px;
    position: relative;
}
.booking-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}
.booking-page h1 {
    color: var(--white);
    text-align: center;
    margin-bottom: 16px;
    font-size: 2.8rem;
}
.booking-page .subtitle {
    text-align: center;
    color: rgba(255,255,255,0.4);
    margin-bottom: 48px;
    font-size: 0.95rem;
}
.booking-form {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.step-indicators { display: flex; justify-content: center; margin-bottom: 48px; gap: 0; align-items: center; }
.step-indicator {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--body);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}
.step-indicator.active { border-color: var(--gold); background: var(--gold); color: var(--dark); box-shadow: 0 0 0 4px rgba(201,169,110,0.15); }
.step-indicator.completed { background: var(--gold); color: var(--dark); }
.step-line {
    width: 80px;
    height: 2px;
    background: var(--body);
    transition: var(--transition);
}
.step-line.completed { background: var(--gold); }
.time-slot {
    display: inline-block;
    padding: 10px 22px;
    margin: 4px;
    border: 2px solid var(--body);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}
.time-slot:hover { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.time-slot.selected { border-color: var(--gold); background: var(--gold); color: var(--dark); font-weight: 600; }
.time-slot.disabled { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.service-item {
    padding: 20px 24px;
    border: 2px solid var(--body);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-item:hover { border-color: var(--gold); }
.service-item.selected { border-color: var(--gold); background: rgba(201,169,110,0.04); box-shadow: 0 0 0 3px rgba(201,169,110,0.08); }
.service-item .radio-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.service-item.selected .radio-dot { border-color: var(--gold); }
.service-item.selected .radio-dot::after { content: ''; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); }
.barber-select-card {
    padding: 20px;
    border: 2px solid var(--body);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
}
.barber-select-card:hover { border-color: var(--gold); }
.barber-select-card.selected { border-color: var(--gold); background: rgba(201,169,110,0.04); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .insta-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 3rem; }
    .section-title h2 { font-size: 2rem; }
    .hero-floating-card.card-1 { left: 10px; }
    .hero-floating-card.card-2 { right: 10px; }
    .booking-form { padding: 32px; }
}
@media (max-width: 767px) {
    .hero h1 { font-size: 2.2rem; }
    .navbar-brand { font-size: 1.6rem; }
    .navbar-brand small { font-size: 0.5rem; }
    .section { padding: 64px 0; }
    .hero-stats-row { grid-template-columns: repeat(3, 1fr); padding: 16px; gap: 12px; }
    .hero-stat .number { font-size: 1.4rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .insta-strip { grid-template-columns: repeat(3, 1fr); }
    .booking-form { padding: 24px; }
    .newsletter-form { flex-direction: column; }
    .step-line { width: 40px; }
    .hero-image-wrap img { height: 400px; }
    .about-content h2 { font-size: 2rem; }
    .about-image-wrap img { height: 350px; }
}

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