/*
Theme Name: Oscars Barber Parlor
Theme URI: https://oscarsbarberparlor.com
Author: Oscars Team
Description: Premium barbershop WordPress theme with modern dark design, gold accents, smooth animations, and full responsiveness.
Version: 3.2.0
License: GPL v2 or later
Text Domain: oscars-barber
*/

/* ===== GOOGLE FONTS (Carlito = metric-compatible Calibri alternative) ===== */
@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&display=swap');

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C8A145;
    --gold-dark: #A0782A;
    --gold-light: #E0C478;
    --gold-pale: rgba(200, 161, 69, 0.08);
    --gold-border: rgba(200, 161, 69, 0.25);
    --black: #080808;
    --black-soft: #0E0E0E;
    --black-card: #141414;
    --black-elevated: #1A1A1A;
    --white: #FFFFFF;
    --off-white: #F5F3EF;
    --gray: #B8B8B8;
    --gray-mid: #999999;
    --gray-dark: #666666;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.45);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.55);
    --shadow-gold: 0 4px 20px rgba(200,161,69,0.15);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Carlito', 'Calibri', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--black);
    color: var(--gray);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover { color: var(--gold-light); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Section Divider */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 2px;
    margin: 0 auto 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-mid);
    font-size: 1.05rem;
    margin-bottom: 50px;
    letter-spacing: 0.02em;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: 'Carlito', 'Calibri', 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: var(--radius-full);
}
.btn:hover::before,
.btn:active::before { transform: scaleX(1); }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn:hover { color: var(--black); border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn:active { transform: scale(0.96); transition: transform 0.1s ease; }

.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary::before { background: var(--gold-dark); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(200,161,69,0.15);
}
.site-header.scrolled { padding: 10px 0; background: rgba(8,8,8,0.97); box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.logo a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    white-space: nowrap !important;
    display: inline-block !important;
    overflow: visible !important;
}
.logo a span { color: #ffffff; font-size: 0.85em; white-space: nowrap !important; display: inline !important; font-family: 'Carlito', 'Calibri', 'Segoe UI', sans-serif; font-weight: 400; }

.header-status {
    display: none; /* shown only on mobile */
}

.main-nav ul { display: flex; gap: 35px; list-style: none; align-items: center; }
.main-nav a {
    color: var(--off-white); font-weight: 500; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1.5px; position: relative; padding: 4px 0;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--gold); border-radius: 1px; transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover { color: var(--gold); }

.header-phone {
    display: flex; align-items: center; gap: 8px; color: var(--white); font-weight: 600; font-size: 0.95rem; padding: 10px 18px; border: 1px solid rgba(200,161,69,0.3); border-radius: var(--radius-full); transition: var(--transition); white-space: nowrap;
}
.header-phone:hover { border-color: var(--gold); background: rgba(200,161,69,0.06); color: var(--gold); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; -webkit-tap-highlight-color: transparent; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--gold); margin: 5px 0; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 1px; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 82%; max-width: 380px; height: 100vh; height: 100dvh; background: var(--black-card); z-index: 1001; padding: 80px 35px 40px; transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: -10px 0 40px rgba(0,0,0,0.6); overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-menu.active { right: 0; }
.mobile-menu-close {
    position: absolute; top: 25px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background: rgba(200,161,69,0.1); border: 1px solid rgba(200,161,69,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); color: var(--gold); font-size: 1.2rem; line-height: 1; -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close:hover { background: rgba(200,161,69,0.25); }
.mobile-menu ul {
    list-style: none; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.mobile-menu li { opacity: 0; transform: translateX(20px); transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.mobile-menu.active li { opacity: 1; transform: translateX(0); }
.mobile-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.active li:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu a {
    color: var(--white); font-size: 1.2rem; font-weight: 500; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 12px; padding: 8px 0;
}
.mobile-menu a .menu-icon { width: 24px; height: 24px; opacity: 0.5; fill: var(--gold); }
.mobile-menu .btn { width: 100%; text-align: center; margin-top: 8px; }

.menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.75); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative;
    background: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600&q=80') center/cover no-repeat fixed;
}
.hero::before {
    content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(0,0,0,0.92) 0%, rgba(8,8,8,0.78) 40%, rgba(0,0,0,0.92) 100%); z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }

/* Badges */
.hero-badges {
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 25px;
}
.hero-badge {
    display: inline-block; padding: 8px 20px; border-radius: var(--radius-full); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2.5px; font-weight: 600; cursor: pointer; transition: var(--transition); border: 1px solid;
}
.hero-badge.status {
    background: rgba(34,197,94,0.08); color: #4ade80; border-color: rgba(34,197,94,0.35);
}
.hero-badge.status.closed {
    background: rgba(239,68,68,0.08); color: #f87171; border-color: rgba(239,68,68,0.35);
}
/* LGBTQ capsule: thin border, own background */
.hero-badge.lgbtq {
    background: rgba(0,0,0,0.65); border: 1px solid rgba(200,161,69,0.3); color: #fff; font-weight: 700;
    /* Rainbow border animation, dimmed */
    border-image: linear-gradient(90deg, #d97777, #e09f5e, #e6d76a, #72a36c, #6b8ec9, #9b72a7) 1;
    animation: lgbtqBorder 3s linear infinite;
}
@keyframes lgbtqBorder {
    0% { border-image: linear-gradient(90deg, #d97777, #e09f5e, #e6d76a, #72a36c, #6b8ec9, #9b72a7) 1; }
    25% { border-image: linear-gradient(180deg, #d97777, #e09f5e, #e6d76a, #72a36c, #6b8ec9, #9b72a7) 1; }
    50% { border-image: linear-gradient(270deg, #d97777, #e09f5e, #e6d76a, #72a36c, #6b8ec9, #9b72a7) 1; }
    75% { border-image: linear-gradient(360deg, #d97777, #e09f5e, #e6d76a, #72a36c, #6b8ec9, #9b72a7) 1; }
    100% { border-image: linear-gradient(90deg, #d97777, #e09f5e, #e6d76a, #72a36c, #6b8ec9, #9b72a7) 1; }
}
.lgbtq-text { display: inline-block; letter-spacing: 1px; }
.lgbtq-text .L { color: #d97777; }
.lgbtq-text .G { color: #e09f5e; }
.lgbtq-text .B { color: #e6d76a; }
.lgbtq-text .T { color: #72a36c; }
.lgbtq-text .Q { color: #6b8ec9; }
.lgbtq-text .plus { color: #9b72a7; margin-left: 2px; }

/* Hero Heading */
.hero h1 {
    margin-bottom: 20px; line-height: 1.2;
    /* Animated gradient text */
    background: linear-gradient(135deg, #C8A145 0%, #FFFFFF 50%, #A0782A 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: goldShimmer 4s linear infinite;
}
@keyframes goldShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.hero h1 .main-title {
    font-size: inherit; display: block;
}
.hero h1 .sub-title {
    font-size: 0.55em; /* smaller at Oscars */
    display: block; font-weight: 600; color: var(--white); background: none; -webkit-text-fill-color: #fff; animation: none;
}
.hero p {
    font-size: 1.15rem; margin-bottom: 35px; color: var(--gray); max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; z-index: 2;
}
.hero-buttons {
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px;
}

/* Hero Image after buttons */
.hero-image-wrapper {
    max-width: 500px; width: 100%; margin: 0 auto 60px;
}
.hero-image-wrapper img {
    width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 2px solid rgba(200,161,69,0.15);
}

/* ===== COUNTER CARDS (separate from hero visually) ===== */
.counter-section {
    padding: 40px 0 0;
}
.counter-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 900px; margin: 0 auto;
}
.counter-card {
    background: var(--black-card); border: 1px solid rgba(200,161,69,0.15); border-radius: var(--radius); padding: 30px 15px; text-align: center; transition: var(--transition);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 160px;
}
.counter-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.counter-card .stat-number {
    font-family: 'Carlito', 'Calibri', 'Segoe UI', sans-serif;
    font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1.2;
}
.counter-card .stat-label {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-mid); margin-top: 8px;
}

/* ===== ABOUT ===== */
.about { background: var(--black-soft); position: relative; }
.about::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,161,69,0.3), transparent); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: center; }
.about-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 18px; color: var(--gray); line-height: 1.75; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0; }
.feature {
    display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(200,161,69,0.04); border-radius: var(--radius); border: 1px solid rgba(200,161,69,0.08); transition: var(--transition);
}
.feature:hover { background: rgba(200,161,69,0.08); border-color: rgba(200,161,69,0.2); transform: translateY(-2px); }
.feature svg { width: 22px; min-width: 22px; fill: var(--gold); opacity: 0.7; }
.feature span { font-weight: 500; color: var(--off-white); font-size: 0.9rem; }

/* ===== SERVICES ===== */
.services { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-top: 50px; }
.service-card {
    background: var(--black-card); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); border: 1px solid rgba(255,255,255,0.04);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(200,161,69,0.35); }
.service-card img { width: 100%; height: 230px; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover img { transform: scale(1.06); }
.service-card-content { padding: 25px 28px 28px; }
.service-card-content h3 { margin-bottom: 8px; font-size: 1.25rem; }
.service-card-content p { color: var(--gray-mid); margin-bottom: 18px; font-size: 0.92rem; line-height: 1.6; }
.service-link { font-weight: 600; display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: gap 0.3s ease, color 0.3s ease; }
.service-link:hover { gap: 14px; color: var(--gold-light); }

/* ===== LGBTQ+ INCLUSIVITY CARD ===== */
.lgbtq-section {
    background: var(--black-soft); padding: 80px 0;
}
.lgbtq-card {
    max-width: 500px; margin: 0 auto; background: linear-gradient(135deg, rgba(217,119,119,0.15), rgba(114,163,108,0.1), rgba(107,142,201,0.1)); border: 1px solid; border-image: linear-gradient(135deg, #d97777, #e09f5e, #e6d76a, #72a36c, #6b8ec9, #9b72a7) 1; border-radius: var(--radius-xl); padding: 50px 30px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.lgbtq-card h3 { font-size: 2rem; font-weight: 800; margin-bottom: 15px; background: linear-gradient(90deg, #d97777, #e09f5e, #e6d76a, #72a36c, #6b8ec9, #9b72a7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.lgbtq-card p { color: var(--off-white); font-size: 1.1rem; margin-bottom: 25px; }
.lgbtq-card .pride-strip { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.lgbtq-card .pride-strip span { width: 20px; height: 20px; border-radius: 50%; display: inline-block; }

/* ===== BUSINESS HOURS ===== */
.business-hours { background: var(--black-soft); }
.hours-wrapper { max-width: 700px; margin: 0 auto; background: var(--black-card); border-radius: var(--radius-xl); padding: 40px 45px; border: 1px solid rgba(200,161,69,0.15); box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.hours-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light)); }
.hours-header { text-align: center; margin-bottom: 30px; }
.hours-header h3 { color: var(--gold); margin-bottom: 5px; }
.hours-header .status-badge { display: inline-block; padding: 6px 16px; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }
.status-open { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.25); }
.status-closed { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--off-white); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; font-size: 0.82rem; }
.hours-row .time { color: var(--gray); }
.hours-row.today { background: rgba(200,161,69,0.04); margin: 0 -20px; padding: 14px 20px; border-radius: var(--radius-sm); }
.hours-row.today .day { color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--black); overflow: hidden; }
.testimonials-slider-wrapper { position: relative; max-width: 100%; overflow: hidden; margin-top: 40px; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.testimonial-slide { min-width: 320px; max-width: 380px; flex-shrink: 0; background: var(--black-card); border-radius: var(--radius-lg); padding: 35px 28px 30px; text-align: center; border: 1px solid rgba(255,255,255,0.04); transition: var(--transition); display: flex; flex-direction: column; align-items: center; }
.testimonial-slide:hover { border-color: rgba(200,161,69,0.3); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); margin-bottom: 16px; }
.testimonial-name-capsule { display: inline-block; padding: 6px 18px; background: rgba(200,161,69,0.1); border: 1px solid rgba(200,161,69,0.25); border-radius: var(--radius-full); color: var(--gold); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; margin-bottom: 10px; }
.testimonial-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { color: var(--gray); font-style: italic; font-size: 0.9rem; line-height: 1.7; flex-grow: 1; }
.testimonials-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.testimonials-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(200,161,69,0.25); border: none; cursor: pointer; transition: var(--transition); }
.testimonials-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ===== CTA ===== */
.cta { background: var(--black); padding: 80px 0; }
.cta-card { max-width: 700px; margin: 0 auto; background: var(--black-card); border-radius: var(--radius-xl); padding: 50px 40px; text-align: center; border: 1px solid rgba(200,161,69,0.2); box-shadow: var(--shadow-md); }
.cta-card h2 { color: var(--off-white); margin-bottom: 12px; }
.cta-card p { color: var(--gray-mid); margin-bottom: 28px; }

/* ===== CONTACT ===== */
.contact { background: var(--black-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.contact-info-card { background: var(--black-card); border-radius: var(--radius-xl); padding: 35px 30px; border: 1px solid rgba(200,161,69,0.12); box-shadow: var(--shadow-md); }
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.contact-item:last-child { border-bottom: none; }
.contact-item-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(200,161,69,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-item-icon svg { width: 20px; fill: var(--gold); }
.contact-item-info .contact-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-dark); margin-bottom: 3px; }
.contact-item-info a, .contact-item-info span { color: var(--off-white); font-weight: 500; font-size: 0.95rem; word-break: break-word; }
.contact-item-info a:hover { color: var(--gold); }
.instagram-handle { color: var(--gold); font-weight: 600; }
.contact-form-card { background: var(--black-card); border-radius: var(--radius-xl); padding: 35px 30px; border: 1px solid rgba(200,161,69,0.12); box-shadow: var(--shadow-md); }
.contact-form-card h3 { margin-bottom: 20px; color: var(--gold); }
.contact-form-card input, .contact-form-card textarea, .contact-form-card select {
    width: 100%; padding: 14px 18px; margin-bottom: 16px; background: var(--black-elevated); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); color: var(--white); font-family: 'Carlito', sans-serif; font-size: 0.9rem; transition: var(--transition-fast);
}
.contact-form-card input:focus, .contact-form-card textarea:focus, .contact-form-card select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,161,69,0.08); }
.contact-form-card textarea { resize: vertical; min-height: 120px; }
.contact-form-card select { color: var(--gray-mid); cursor: pointer; }
.form-success { display: none; background: rgba(34,197,94,0.08); color: #4ade80; padding: 14px 18px; border-radius: var(--radius); margin-top: 15px; border: 1px solid rgba(34,197,94,0.2); text-align: center; }

/* ===== GALLERY ===== */
.gallery-section { background: var(--black); padding-top: 60px; }
.gallery-slider-wrapper { position: relative; max-width: 100%; overflow: hidden; margin-top: 30px; }
.gallery-track { display: flex; gap: 16px; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.gallery-slide { min-width: 280px; max-width: 350px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: var(--transition); }
.gallery-slide img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s ease; border-radius: var(--radius); }
.gallery-slide:hover img { transform: scale(1.08); }
.gallery-slide:hover { box-shadow: var(--shadow-lg); }
.gallery-dots { display: flex; justify-content: center; gap: 10px; margin-top: 25px; }
.gallery-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(200,161,69,0.25); border: none; cursor: pointer; transition: var(--transition); }
.gallery-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--black-soft); padding: 60px 0 25px; border-top: 1px solid rgba(200,161,69,0.12); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 45px; margin-bottom: 35px; }
.footer-logo h3 { color: var(--gold); font-size: 1.3rem; }
.footer-logo p { color: var(--gray-mid); font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; background: rgba(200,161,69,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); border: 1px solid transparent; }
.social-link:hover { background: rgba(200,161,69,0.18); border-color: rgba(200,161,69,0.3); transform: translateY(-3px); }
.social-link svg { width: 17px; fill: var(--gold); }
.footer-grid h4 { color: var(--off-white); margin-bottom: 16px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a { color: var(--gray-mid); font-size: 0.9rem; transition: var(--transition-fast); }
.footer-grid ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-hours p { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.88rem; color: var(--gray-mid); }
.footer-hours p span:first-child { color: var(--off-white); font-weight: 500; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: var(--gray-dark); }

.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(15px); transition: all 0.35s; z-index: 99; box-shadow: 0 6px 20px rgba(200,161,69,0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(200,161,69,0.45); }
.back-to-top:active { transform: scale(0.9); }
.back-to-top svg { width: 22px; fill: var(--black); }

.music-toggle { position: fixed; bottom: 30px; left: 30px; width: 44px; height: 44px; background: rgba(20,20,20,0.8); backdrop-filter: blur(10px); border: 1px solid rgba(200,161,69,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 100; transition: var(--transition); color: var(--gold); font-size: 1.2rem; }

/* ===== PARTICLES ===== */
.particle { position: fixed; pointer-events: none; z-index: 1; background: var(--gold); border-radius: 50%; opacity: 0.15; animation: floatParticle linear infinite; }
@keyframes floatParticle { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 0.2; } 90% { opacity: 0.2; } 100% { transform: translateY(-10vh) scale(1.5); opacity: 0; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .main-nav, .header-phone { display: none; }
    .menu-toggle { display: block; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 500px; margin: 0 auto; }
    section { padding: 70px 0; }
    .testimonial-slide { min-width: 280px; max-width: 340px; }
    .gallery-slide { min-width: 240px; max-width: 300px; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero { padding: 130px 0 70px !important; background-attachment: scroll; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 14px; margin-bottom: 40px; }
    .hero-badges { flex-direction: column; align-items: center; }
    .hero-image-wrapper { max-width: 320px; }
    .counter-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .logo a { font-size: 1.1rem; }
    .header-status { display: inline-block; margin-left: 8px; }
    .header-phone { display: none; }
    .services-grid { grid-template-columns: 1fr; max-width: 450px; margin: 40px auto 0; }
    .hours-wrapper { padding: 28px 22px; }
    .testimonial-slide { min-width: 260px; max-width: 300px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
    .music-toggle { bottom: 20px; left: 20px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.6rem; }
    .counter-grid { grid-template-columns: 1fr 1fr; }
    .counter-card { min-height: 130px; padding: 20px 10px; }
    .testimonial-slide { min-width: 240px; max-width: 260px; }
}