/* =========================================
   LITTLE ITALY BARBERIA - STYLES
   Premium Barber Shop Website
   ========================================= */

/* 1. Variables & Reset */
:root {
    --bg: #0a0a0a;
    --bg-alt: #111111;
    --bg-light: #1a1a1a;
    --text: #f4f0ec;
    --text-muted: #a8a29e;
    --accent: #C5A059;
    --accent-hover: #D4AF37;
    --accent-dark: #8B6914;
    --glass: rgba(10, 10, 10, 0.85);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 20px 60px rgba(0,0,0,0.5);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.3);
}

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

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

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-dark {
    background: var(--bg-alt);
}

.section-accent {
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1200 50%, #0f0f0f 100%);
}

.section-label {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

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

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* 2. Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 8px;
    color: var(--accent);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

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

.preloader-bar span {
    display: block;
    width: 0%;
    height: 100%;
    background: var(--accent);
    animation: loadBar 1.2s ease forwards;
}

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

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

/* 3. Custom Cursor */
#cursor, #cursor-follower {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
}

#cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    transition: width 0.3s, height 0.3s, border 0.3s;
}

#cursor.hover {
    width: 0;
    height: 0;
}

#cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    background: rgba(197, 160, 89, 0.05);
}

@media (pointer: coarse) {
    #cursor, #cursor-follower { display: none !important; }
}

/* 4. Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 12px 0;
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
}

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

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--text);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--bg);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
    background: var(--accent-hover);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

#mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

#mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text);
}

.mobile-cta {
    margin-top: 16px;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--bg) !important;
    font-family: 'Oswald', sans-serif !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-sm);
}

/* Floating Book Button */
#float-book {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    background: var(--accent);
    color: var(--bg);
    padding: 16px 28px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    transform: translateY(100px);
    transition: transform 0.4s, background 0.3s;
    display: none;
}

#float-book.visible {
    transform: translateY(0);
}

#float-book:hover {
    background: var(--accent-hover);
}

/* 5. 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.1);
    transition: transform 8s ease;
}

#hero.loaded .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 50%, var(--bg) 100%);
    z-index: 1;
}

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

.hero-subtitle {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--bg);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: background 0.3s, transform 0.2s;
    min-height: 52px;
}

.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s !important;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border: 1px solid rgba(244,240,236,0.3);
    color: var(--text);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: border-color 0.3s, background 0.3s;
    min-height: 52px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s infinite;
}

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

/* 6. About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.about-text {
    padding-left: 20px;
}

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

.about-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 7. Services */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
    min-height: 44px;
}

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

.tab-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 24px;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.badge {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(197,160,89,0.15);
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    font-weight: 600;
}

.badge.hot {
    background: rgba(197,160,89,0.25);
    color: var(--accent-hover);
}

.service-meta {
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.service-time {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--accent);
}

/* 8. BOOKING SECTION - CRITICAL */
.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.progress-step span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    white-space: nowrap;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: var(--bg);
    transition: var(--transition);
}

.progress-step.active .step-circle,
.progress-step.done .step-circle {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(197,160,89,0.1);
}

.progress-step.done .step-circle {
    font-size: 0;
}

.progress-step.done .step-circle::after {
    content: '✓';
    font-size: 1rem;
    color: var(--accent);
}

.progress-line {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 8px;
    position: relative;
    top: -14px;
}

.booking-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

.step-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 32px;
}

/* Service Grid in Booking */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.service-card {
    cursor: pointer;
    position: relative;
}

.service-card input {
    position: absolute;
    opacity: 0;
}

.service-card .card-content {
    background: var(--bg-alt);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

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

.service-card input:checked + .card-content {
    border-color: var(--accent);
    background: rgba(197,160,89,0.08);
    box-shadow: 0 0 20px rgba(197,160,89,0.1);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Professional Grid */
.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.pro-card {
    cursor: pointer;
    position: relative;
}

.pro-card input {
    position: absolute;
    opacity: 0;
}

.pro-card .card-content {
    background: var(--bg-alt);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    transition: var(--transition);
}

.pro-card:hover .card-content {
    border-color: rgba(197,160,89,0.3);
}

.pro-card input:checked + .card-content {
    border-color: var(--accent);
    background: rgba(197,160,89,0.08);
}

.pro-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 12px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s;
}

.pro-card input:checked + .card-content .pro-avatar {
    border-color: var(--accent);
}

.pro-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 4px;
}

.pro-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Calendar & Slots */
.datetime-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.calendar-box {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
}

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

.calendar-header button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    min-height: 44px;
    min-width: 44px;
}

.calendar-header button:hover {
    background: rgba(197,160,89,0.2);
}

#cal-month {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

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

.calendar-weekdays span {
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 0;
}

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

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    min-height: 44px;
}

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

.cal-day.selected {
    background: var(--accent);
    color: var(--bg);
    font-weight: 700;
}

.cal-day.disabled {
    color: rgba(255,255,255,0.15);
    cursor: not-allowed;
}

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

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

.slots-box {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
}

.slots-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.slots-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 8px;
}

.slot-btn {
    padding: 12px 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text);
    transition: var(--transition);
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-btn:hover:not(.disabled) {
    border-color: var(--accent);
    background: rgba(197,160,89,0.1);
}

.slot-btn.selected {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    font-weight: 600;
}

.slot-btn.disabled {
    opacity: 0.25;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-field label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-field input,
.form-field textarea {
    padding: 16px;
    background: var(--bg-alt);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    width: 100%;
    resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

/* Summary Box */
.summary-box {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.06);
}

.summary-box h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.summary-row span {
    color: var(--text-muted);
}

.summary-row.total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 1.2rem;
}

.summary-row.total strong {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-next, .btn-prev, .btn-confirm, .btn-restart {
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    min-height: 52px;
    min-width: 120px;
}

.btn-next, .btn-confirm {
    background: var(--accent);
    color: var(--bg);
    margin-left: auto;
}

.btn-next:hover:not(:disabled), .btn-confirm:hover {
    background: var(--accent-hover);
}

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

.btn-prev {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-muted);
}

.btn-prev:hover {
    border-color: var(--text);
    color: var(--text);
}

.btn-confirm {
    width: 100%;
    margin-left: 0;
    font-size: 1rem;
    padding: 18px;
}

/* Success Box */
.success-box {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-box h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.success-box > p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 24px;
}

.success-details {
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.06);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    transition: opacity 0.3s;
    min-height: 52px;
}

.btn-whatsapp:hover {
    opacity: 0.9;
}

.btn-restart {
    display: block;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-muted);
}

.btn-restart:hover {
    color: var(--text);
    border-color: var(--text);
}

/* 9. Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197,160,89,0.2);
    box-shadow: var(--shadow);
}

.team-photo {
    height: 320px;
    overflow: hidden;
}

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

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

.team-info {
    padding: 28px;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

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

.team-book {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.team-book:hover {
    opacity: 0.8;
}

/* 10. Portfolio */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
    min-height: 44px;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

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

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

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

.portfolio-item.tall {
    grid-row: span 2;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.portfolio-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

/* 11. Testimonials */
.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-alt);
    border-radius: var(--radius);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
}

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

.testimonial-card > p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

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

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonials-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text);
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-nav button:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.google-badge {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.g-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.g-score {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent);
}

.g-stars {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.google-badge p {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.google-badge a {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}

/* 12. Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
}

.product-logo {
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: var(--transition);
}

.product-logo:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.product-logo span {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* 13. FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s;
}

.faq-question::after {
    content: '+';
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

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

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

/* 14. Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-details {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-icon {
    font-size: 1.3rem;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.contact-row strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-row a {
    color: var(--accent);
    transition: opacity 0.3s;
}

.contact-row a:hover {
    opacity: 0.8;
}

.hours-block {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
    border: 1px solid rgba(255,255,255,0.06);
}

.hours-block h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.95rem;
}

.hour-row .closed {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.social-links a {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

.contact-map {
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.8) contrast(1.1);
}

/* 15. Footer */
#footer {
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p, .footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 6rem);
    color: rgba(255,255,255,0.04);
    line-height: 1;
    margin-bottom: 20px;
    user-select: none;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 400px; }
    .about-text { padding-left: 0; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { height: 350px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .nav-links, .nav-cta { display: none; }
    .menu-toggle { display: flex; }
    #float-book { display: block; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; max-width: 320px; }
    
    .about-stats { gap: 24px; }
    .stat-num { font-size: 2rem; }
    
    .services-tabs { gap: 8px; }
    .tab-btn { padding: 10px 16px; font-size: 0.75rem; }
    
    .service-item { flex-direction: column; gap: 12px; }
    .service-meta { text-align: left; display: flex; gap: 12px; align-items: center; }
    .service-price { font-size: 1.3rem; }
    
    .booking-wrapper { padding: 24px 16px; }
    .booking-progress { margin-bottom: 32px; }
    .progress-step span { display: none; }
    .progress-line { width: 24px; top: 0; }
    
    .datetime-wrapper { grid-template-columns: 1fr; }
    
    .form-grid { grid-template-columns: 1fr; }
    
    .team-grid { grid-template-columns: 1fr; }
    .team-photo { height: 380px; }
    
    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .portfolio-item.tall { grid-row: span 1; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    
    .testimonial-card { padding: 28px 20px; }
    .testimonial-card > p { font-size: 1.05rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    
    .step-actions { flex-direction: column; }
    .btn-next, .btn-prev { width: 100%; margin-left: 0; }
}

@media (max-width: 480px) {
    .service-grid { grid-template-columns: 1fr; }
    .pro-grid { grid-template-columns: repeat(2, 1fr); }
    .calendar-header button { min-height: 44px; min-width: 44px; }
    .cal-day { min-height: 44px; font-size: 0.85rem; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
