/* ========================================
   BARBER KING BERGAMO - STYLES
   Archetipo: Modern & Edgy
   ======================================== */

:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --gold: #C5A059;
    --gold-light: #D4AF37;
    --white: #f4f0ec;
    --white-dim: #b8b2a8;
    --gray: #666666;
    --error: #e74c3c;
    --success: #2ecc71;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(197, 160, 89, 0.5);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
}

@media (pointer: coarse) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s var(--transition-smooth), opacity 0.6s ease;
}

#preloader.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: logoReveal 1s ease forwards 0.3s;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--black-lighter);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-progress {
    height: 100%;
    background: var(--gold);
    width: 0;
    animation: progressLoad 1.5s var(--transition-smooth) forwards 0.5s;
}

@keyframes logoReveal {
    to { opacity: 1; }
}

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

/* Floating Book Button (Mobile) */
.floating-book-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: none;
}

.floating-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.5);
}

@media (max-width: 768px) {
    .floating-book-btn { display: block; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

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

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.15em;
}

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

.nav-link {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

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

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

.nav-cta {
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--black-light);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: right 0.4s var(--transition-smooth);
    z-index: 999;
    border-left: 1px solid rgba(197, 160, 89, 0.1);
}

.mobile-menu.open {
    right: 0;
}

.mobile-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--gold);
}

@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 1.8s;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(40px);
}

.hero-title .line:nth-child(1) { animation: fadeUp 1s ease forwards 2s; }
.hero-title .line:nth-child(2) { animation: fadeUp 1s ease forwards 2.2s; }
.hero-title .line:nth-child(3) { animation: fadeUp 1s ease forwards 2.4s; }

.hero-title .accent {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--white-dim);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease forwards 2.6s;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease forwards 2.8s;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
}

.btn-outline {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid rgba(244, 240, 236, 0.3);
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white-dim);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease forwards 3.2s;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Sections General */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
}

/* About */
.about {
    background: var(--black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    z-index: 0;
    opacity: 0.3;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text p {
    color: var(--white-dim);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.drop-cap {
    float: left;
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 8px;
    color: var(--gold);
    font-weight: 700;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--white-dim);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }
}

/* Services */
.services {
    background: var(--black-light);
}

.services-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(244, 240, 236, 0.1);
    color: var(--white-dim);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 12px 28px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: padding-left 0.3s ease;
}

.service-item:hover {
    padding-left: 10px;
}

.service-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.service-info p {
    font-size: 0.9rem;
    color: var(--white-dim);
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.service-time {
    font-size: 0.85rem;
    color: var(--white-dim);
    background: rgba(255,255,255,0.05);
    padding: 4px 12px;
    border-radius: 20px;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    min-width: 60px;
    text-align: right;
}

@media (max-width: 600px) {
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    .service-meta {
        width: 100%;
        justify-content: space-between;
    }
}

/* ========================================
   BOOKING SECTION - CRITICAL
   ======================================== */
.booking {
    background: var(--black);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

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

.booking-subtitle {
    color: var(--white-dim);
    margin-top: 0.5rem;
    font-size: 1.05rem;
}

.booking-form-container {
    background: var(--black-light);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Progress Steps */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--black-lighter);
    border: 2px solid rgba(244, 240, 236, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white-dim);
    transition: all 0.4s ease;
}

.progress-step.active .step-circle,
.progress-step.completed .step-circle {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.step-label {
    font-size: 0.75rem;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.progress-step.active .step-label {
    color: var(--gold);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(244, 240, 236, 0.08);
    margin: 0 0.5rem;
    position: relative;
    top: -14px;
    z-index: 1;
}

@media (max-width: 600px) {
    .booking-progress {
        gap: 0.3rem;
    }
    .step-label {
        display: none;
    }
    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    .progress-line {
        top: -10px;
    }
    .booking-form-container {
        padding: 1.5rem;
    }
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

/* Step 1: Service Categories */
.service-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-cat {
    background: var(--black-lighter);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.service-cat:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-3px);
}

.service-cat.active {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
}

.cat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.service-cat span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

/* Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.service-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: var(--black-lighter);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.service-option:hover {
    border-color: rgba(197, 160, 89, 0.2);
}

.service-option.selected {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
}

.service-option .opt-name {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
}

.service-option .opt-desc {
    font-size: 0.85rem;
    color: var(--white-dim);
    margin-top: 0.2rem;
}

.service-option .opt-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.service-option .opt-time {
    font-size: 0.8rem;
    color: var(--white-dim);
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 20px;
}

.service-option .opt-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    min-width: 50px;
    text-align: right;
}

.service-option .opt-check {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(244, 240, 236, 0.2);
    border-radius: 50%;
    margin-left: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-option.selected .opt-check {
    background: var(--gold);
    border-color: var(--gold);
}

.service-option.selected .opt-check::after {
    content: '✓';
    color: var(--black);
    font-size: 0.8rem;
    font-weight: 700;
}

@media (max-width: 600px) {
    .service-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .service-cat {
        padding: 1.2rem 0.8rem;
    }
    .service-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
    .service-option .opt-meta {
        width: 100%;
        justify-content: space-between;
    }
}

/* Step 2: Professionals */
.pro-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.pro-card {
    background: var(--black-lighter);
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.pro-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-3px);
}

.pro-card.selected {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
}

.pro-img {
    height: 140px;
    background-size: cover;
    background-position: center top;
    position: relative;
}

.pro-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--black-lighter) 100%);
}

.pro-info {
    padding: 1rem;
}

.pro-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.pro-info p {
    font-size: 0.85rem;
    color: var(--white-dim);
}

@media (max-width: 500px) {
    .pro-cards {
        grid-template-columns: 1fr;
    }
}

/* Step 3: Calendar & Time */
.datetime-picker {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cal-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(244, 240, 236, 0.1);
    background: var(--black-lighter);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.cal-nav:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.cal-month {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-header {
    text-align: center;
    font-size: 0.7rem;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    background: var(--black-lighter);
    border: 1px solid transparent;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 40px;
}

.cal-day:hover:not(.disabled):not(.empty) {
    border-color: rgba(197, 160, 89, 0.4);
}

.cal-day.selected {
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
}

.cal-day.disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.cal-day.empty {
    background: transparent;
    cursor: default;
}

.cal-day.today {
    border-color: rgba(197, 160, 89, 0.3);
}

.time-section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

.time-slot {
    padding: 0.7rem 0.4rem;
    text-align: center;
    background: var(--black-lighter);
    border: 2px solid transparent;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-slot:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

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

.time-slot.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.time-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--white-dim);
    font-size: 0.9rem;
    padding: 2rem 0;
}

@media (max-width: 700px) {
    .datetime-picker {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .time-slots {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 400px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Step 4: Form Data */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-dim);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    background: var(--black-lighter);
    border: 2px solid rgba(244, 240, 236, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

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

.form-group input.error {
    border-color: var(--error);
}

.error-msg {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Step 5: Summary */
.summary-card {
    background: var(--black-lighter);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-size: 0.9rem;
    color: var(--white-dim);
}

.summary-value {
    font-weight: 600;
    color: var(--white);
    text-align: right;
}

.booking-alternatives {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.booking-alternatives p {
    color: var(--white-dim);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-next, .btn-back, .btn-confirm {
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-height: 48px;
    min-width: 120px;
}

.btn-next {
    background: var(--gold);
    color: var(--black);
    margin-left: auto;
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-back {
    background: transparent;
    color: var(--white-dim);
    border: 1px solid rgba(244, 240, 236, 0.15);
}

.btn-back:hover {
    border-color: var(--white);
    color: var(--white);
}

.btn-confirm {
    background: var(--gold);
    color: var(--black);
    margin-left: auto;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.35);
}

/* Booking Success */
.booking-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
    animation: fadeIn 0.5s ease;
}

.booking-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.booking-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.booking-success > p {
    color: var(--white-dim);
    margin-bottom: 1.5rem;
}

.success-details {
    background: var(--black-lighter);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.success-note {
    color: var(--white-dim);
    margin-bottom: 1.5rem;
}

.success-note a {
    color: var(--gold);
    text-decoration: none;
}

/* Team */
.team {
    background: var(--black-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--black-lighter);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-img {
    height: 280px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.team-role {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--white-dim);
    margin-bottom: 1rem;
}

.team-insta {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.team-insta:hover {
    color: var(--gold);
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Portfolio */
.portfolio {
    background: var(--black);
}

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

.filter-btn {
    background: transparent;
    border: 1px solid rgba(244, 240, 236, 0.1);
    color: var(--white-dim);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

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

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

.portfolio-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Testimonials */
.testimonials {
    background: var(--black-light);
}

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

.testimonial-card {
    background: var(--black-lighter);
    border: 1px solid rgba(197, 160, 89, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.2);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--white-dim);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--white-dim);
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--black-lighter);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.badge-rating {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-info span:first-child {
    color: var(--white);
    font-weight: 500;
}

.badge-info span:last-child {
    color: var(--white-dim);
    font-size: 0.85rem;
}

.badge-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-left: auto;
}

@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
.faq {
    background: var(--black);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--white-dim);
    line-height: 1.7;
}

/* Contact */
.contact {
    background: var(--black-light);
    padding-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-bottom: 100px;
}

.contact-info > p {
    color: var(--white-dim);
    margin: 1rem 0 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 30px;
}

.contact-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.contact-item p, .contact-item a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.opening-hours {
    background: var(--black-lighter);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.opening-hours h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.hour-row span:first-child {
    color: var(--white-dim);
}

.hour-row span:last-child {
    color: var(--white);
    font-weight: 500;
}

.hour-row.closed span:last-child {
    color: var(--error);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(244, 240, 236, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.contact-map {
    height: 100%;
    min-height: 500px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-map {
        min-height: 350px;
        border-radius: 12px;
    }
    .contact-map iframe {
        min-height: 350px;
    }
    .contact-info {
        padding-bottom: 0;
    }
}

/* Footer */
.footer {
    background: var(--black);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(197, 160, 89, 0.08);
}

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

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col p {
    color: var(--white-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col li, .footer-col a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    background: var(--black-lighter);
    border: 1px solid rgba(244, 240, 236, 0.1);
    border-radius: 6px;
    padding: 10px 14px;
    color: var(--white);
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form button {
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 6px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 3rem;
}

.footer-logo-big {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: rgba(244, 240, 236, 0.03);
    text-align: center;
    line-height: 1;
    margin-bottom: 2rem;
    user-select: none;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--white-dim);
}

.footer-legal a {
    color: var(--white-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

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

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--black-lighter);
    border-radius: 4px;
}

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

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}
