/* ============================================
   CLAUDIO PARRUCCHIERI - HAIR COLOR SPECIALIST
   Design System: Classic Luxury + Mobile-First
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #0a0a0a;
    --color-black-soft: #111111;
    --color-white: #faf9f6;
    --color-white-off: #f4f0ec;
    --color-gold: #C5A059;
    --color-gold-light: #D4AF37;
    --color-gold-dark: #A08040;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-400: #a3a3a3;
    --color-gray-600: #525252;
    --color-gray-800: #262626;
    --color-error: #dc2626;
    --color-success: #16a34a;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-gold: 0 4px 14px rgba(197, 160, 89, 0.25);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
    font-weight: 500;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--color-black);
    max-width: 600px;
}

.section-header.center .section-title {
    margin: 0 auto;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray-600);
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--transition-smooth), visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-serif);
    font-size: 72px;
    font-weight: 400;
    color: var(--color-gold);
    animation: preloaderFade 1.5s ease forwards;
}

.preloader-line {
    width: 0;
    height: 1px;
    background: var(--color-gold);
    margin: 16px auto 0;
    animation: preloaderLine 1.2s ease 0.3s forwards;
}

@keyframes preloaderFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes preloaderLine {
    0% { width: 0; }
    100% { width: 80px; }
}

/* ============================================
   CUSTOM CURSOR (Desktop only)
   ============================================ */
.custom-cursor, .custom-cursor-follower {
    display: none;
}

@media (pointer: fine) {
    .custom-cursor, .custom-cursor-follower {
        display: block;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        border-radius: 50%;
        transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    }
    
    .custom-cursor {
        width: 8px;
        height: 8px;
        background: var(--color-gold);
        transform: translate(-50%, -50%);
    }
    
    .custom-cursor-follower {
        width: 32px;
        height: 32px;
        border: 1px solid var(--color-gold);
        opacity: 0.3;
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
    }
    
    .custom-cursor.hover {
        width: 48px;
        height: 48px;
        background: transparent;
        border: 1px solid var(--color-gold);
        opacity: 0.5;
    }
    
    .custom-cursor-follower.hover {
        width: 56px;
        height: 56px;
        opacity: 0.2;
    }
    
    body:hover .custom-cursor, body:hover .custom-cursor-follower {
        opacity: 1;
    }
}

/* ============================================
   MOBILE FAB BOOKING
   ============================================ */
.fab-booking {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 14px 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s var(--transition-bounce), box-shadow 0.3s ease;
    animation: fabPulse 2s infinite;
}

.fab-booking:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(197, 160, 89, 0.25); }
    50% { box-shadow: 0 4px 24px rgba(197, 160, 89, 0.45); }
}

@media (min-width: 1024px) {
    .fab-booking {
        display: none;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-white);
    transition: color 0.4s ease;
}

.navbar.scrolled .nav-logo {
    color: var(--color-black);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--color-black);
}

.nav-cta {
    display: none;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar.scrolled .hamburger span {
    background: var(--color-black);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--transition-smooth);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--color-black);
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-link:hover {
    color: var(--color-gold);
    transform: translateX(8px);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid var(--color-gray-200);
    color: var(--color-gray-600);
    font-size: 14px;
}

.mobile-tel {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-gold);
}

@media (min-width: 1024px) {
    .nav-links, .nav-cta {
        display: flex;
    }
    .hamburger {
        display: none;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 24px;
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-title span {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.7s; }
.hero-title span:nth-child(2) { animation-delay: 0.9s; }

.hero-location {
    font-family: var(--font-serif);
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s forwards;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s 1.3s forwards;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s 1.5s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    min-height: 52px;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.3s ease, border-color 0.3s ease;
    min-height: 52px;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(0.6); opacity: 0.3; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--color-white);
}

.about-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.03);
}

.about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.about-text .section-title {
    margin-bottom: 24px;
}

.drop-cap {
    float: left;
    font-family: var(--font-serif);
    font-size: 72px;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 8px;
    color: var(--color-gold);
}

.about-paragraph {
    font-size: 16px;
    color: var(--color-gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-gray-200);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--color-gold);
    font-weight: 600;
}

.stat-label {
    font-size: 12px;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
    
    .about-img-wrapper img {
        height: 650px;
    }
}

/* ============================================
   SERVIZI SECTION
   ============================================ */
.servizi {
    background: var(--color-white-off);
}

.servizi-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.servizi-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray-600);
    background: transparent;
    border: 1px solid var(--color-gray-200);
    white-space: nowrap;
    transition: all 0.3s ease;
    min-height: 44px;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 16px;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--color-black);
}

.service-info p {
    font-size: 14px;
    color: var(--color-gray-600);
}

.badge {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 10px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}

.service-meta {
    text-align: right;
    flex-shrink: 0;
}

.service-time {
    display: block;
    font-size: 12px;
    color: var(--color-gray-400);
    margin-bottom: 4px;
}

.service-price {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--color-gold);
    font-weight: 600;
}

@media (max-width: 480px) {
    .service-item {
        flex-direction: column;
    }
    .service-meta {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .service-time {
        margin-bottom: 0;
    }
}

/* ============================================
   PRENOTAZIONE SECTION - CRITICAL
   ============================================ */
.prenotazione {
    background: var(--color-black);
    color: var(--color-white);
    position: relative;
}

.prenotazione .section-label {
    color: var(--color-gold);
}

.prenotazione .section-title {
    color: var(--color-white);
}

.prenotazione .section-subtitle {
    color: var(--color-gray-400);
}

.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-black-soft);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Progress Bar */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 8px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--color-gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.progress-step.active .step-number {
    background: var(--color-gold);
    color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.2);
}

.progress-step.completed .step-number {
    background: var(--color-success);
    color: var(--color-white);
}

.step-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray-600);
    transition: color 0.3s ease;
    display: none;
}

.progress-step.active .step-label {
    color: var(--color-gold);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 4px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--color-gold);
    transition: width 0.4s ease;
}

.progress-line.completed::after {
    width: 100%;
}

@media (min-width: 640px) {
    .step-label {
        display: block;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Booking Steps */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: stepIn 0.4s ease;
}

@keyframes stepIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--color-white);
}

.step-desc {
    font-size: 15px;
    color: var(--color-gray-400);
    margin-bottom: 28px;
}

/* Service Category Filter */
.service-category-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.service-category-filter::-webkit-scrollbar {
    display: none;
}

.cat-filter {
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-gray-400);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    transition: all 0.3s ease;
    min-height: 44px;
}

.cat-filter.active, .cat-filter:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

/* Booking Service Grid */
.booking-service-grid {
    display: grid;
    gap: 12px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
    -webkit-overflow-scrolling: touch;
}

.booking-service-grid::-webkit-scrollbar {
    width: 4px;
}

.booking-service-grid::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

.bk-service-card {
    background: rgba(255,255,255,0.04);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 72px;
}

.bk-service-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.bk-service-card.selected {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px var(--color-gold);
}

.bk-service-card .service-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-white);
    margin-bottom: 4px;
}

.bk-service-card .service-desc {
    font-size: 13px;
    color: var(--color-gray-400);
}

.bk-service-card .service-meta-right {
    text-align: right;
    flex-shrink: 0;
}

.bk-service-card .service-price-sm {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--color-gold);
    font-weight: 600;
}

.bk-service-card .service-time-sm {
    font-size: 12px;
    color: var(--color-gray-500);
}

/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.staff-card {
    background: rgba(255,255,255,0.04);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.staff-card:hover {
    background: rgba(255,255,255,0.08);
}

.staff-card.selected {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px var(--color-gold);
}

.staff-card .staff-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
}

.staff-card .staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--color-white);
}

.staff-card p {
    font-size: 12px;
    color: var(--color-gray-500);
}

@media (min-width: 640px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .staff-card .staff-img {
        width: 88px;
        height: 88px;
    }
}

/* Calendar */
.date-time-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.calendar-wrapper {
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--color-white);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.cal-nav:hover {
    background: var(--color-gold);
}

.cal-month {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-white);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day-header {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-gray-500);
    padding: 8px 0;
    text-transform: uppercase;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-height: 40px;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: rgba(255,255,255,0.1);
}

.cal-day.selected {
    background: var(--color-gold);
    color: var(--color-white);
    font-weight: 600;
}

.cal-day.disabled {
    color: var(--color-gray-700);
    cursor: not-allowed;
}

.cal-day.empty {
    cursor: default;
}

.cal-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
}

.cal-day.selected.today::after {
    background: var(--color-white);
}

/* Time Slots */
.time-slots {
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.time-instruction {
    color: var(--color-gray-500);
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
}

.time-slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.time-slot {
    padding: 12px 8px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.06);
    border: 2px solid transparent;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-slot:hover {
    background: rgba(255,255,255,0.1);
}

.time-slot.selected {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (min-width: 640px) {
    .date-time-wrapper {
        flex-direction: row;
    }
    .calendar-wrapper {
        flex: 1.2;
    }
    .time-slots {
        flex: 1;
    }
    .time-slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    color: var(--color-white);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, background 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    min-height: 48px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-gray-600);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.08);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--color-error);
}

.field-error {
    font-size: 12px;
    color: var(--color-error);
    display: none;
}

.field-error.show {
    display: block;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Summary Card */
.summary-card {
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 28px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.summary-row.total {
    border-bottom: none;
    padding-top: 16px;
    margin-top: 8px;
}

.summary-row.total .summary-label,
.summary-row.total .summary-value {
    font-weight: 600;
    color: var(--color-gold);
    font-size: 16px;
}

.summary-label {
    color: var(--color-gray-400);
    font-size: 14px;
}

.summary-value {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    text-align: right;
}

.summary-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 8px 0;
}

/* Booking Actions */
.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-confirm {
    width: 100%;
    padding: 16px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 52px;
}

.btn-confirm:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: #25D366;
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 52px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

/* Success Content */
.success-content {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(22, 163, 74, 0.1);
    color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPop 0.5s var(--transition-bounce);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-content h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--color-white);
}

.success-content p {
    color: var(--color-gray-400);
    margin-bottom: 24px;
}

.success-details {
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

/* Step Navigation */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.btn-back {
    padding: 14px 24px;
    color: var(--color-gray-400);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    min-height: 48px;
}

.btn-back:hover {
    color: var(--color-white);
}

.btn-next {
    padding: 14px 32px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: auto;
    min-height: 48px;
    min-width: 120px;
}

.btn-next:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.booking-error {
    color: var(--color-error);
    font-size: 14px;
    margin-top: 12px;
    display: none;
    text-align: center;
    padding: 8px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-sm);
}

.booking-error.show {
    display: block;
}

@media (min-width: 640px) {
    .booking-wrapper {
        padding: 48px 40px;
    }
    .booking-actions {
        flex-direction: row;
    }
    .btn-confirm, .btn-whatsapp {
        flex: 1;
    }
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    background: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.team-img {
    height: 240px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.team-info p {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.team-book {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.team-book:hover {
    color: var(--color-gold-dark);
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .team-img {
        height: 280px;
    }
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    background: var(--color-white-off);
}

.portfolio-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.portfolio-filters::-webkit-scrollbar {
    display: none;
}

.pf-filter {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gray-600);
    background: transparent;
    border: 1px solid var(--color-gray-200);
    white-space: nowrap;
    transition: all 0.3s ease;
    min-height: 44px;
}

.pf-filter.active, .pf-filter:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .portfolio-item:nth-child(1) {
        grid-row: span 2;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--color-white);
}

.testimonials-badge {
    text-align: center;
    margin-bottom: 48px;
    padding: 24px;
    background: var(--color-white-off);
    border-radius: var(--radius-lg);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.badge-stars {
    font-size: 24px;
    color: var(--color-gold);
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.badge-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.badge-link {
    font-size: 13px;
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--color-white-off);
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-gray-800);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--color-black);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-gray-400);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    background: var(--color-black);
    color: var(--color-white);
}

.products .section-label {
    color: var(--color-gold);
}

.products .section-title {
    color: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
}

.product-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-gray-400);
    opacity: 0.6;
    transition: opacity 0.3s ease, color 0.3s ease;
    text-align: center;
}

.product-logo:hover {
    opacity: 1;
    color: var(--color-white);
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px var(--color-gold);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    text-align: left;
    gap: 16px;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-gold);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ============================================
   CONTATTI SECTION
   ============================================ */
.contatti {
    background: var(--color-white-off);
}

.contatti-grid {
    display: grid;
    gap: 48px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-gold);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--color-black);
}

.info-text p, .info-text a {
    font-size: 15px;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.info-text a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

.contatti-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    box-shadow: var(--shadow-lg);
}

.contatti-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

@media (min-width: 1024px) {
    .contatti-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: start;
    }
    .contatti-map iframe {
        min-height: 500px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-white);
}

.footer-col p {
    font-size: 14px;
    color: var(--color-gray-400);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li {
    font-size: 14px;
    color: var(--color-gray-400);
}

.footer-col ul li a {
    color: var(--color-gray-400);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 40px;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: clamp(60px, 12vw, 160px);
    color: rgba(255,255,255,0.04);
    line-height: 1;
    margin-bottom: 20px;
    user-select: none;
}

.footer-copy {
    font-size: 13px;
    color: var(--color-gray-600);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 480px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .booking-wrapper {
        padding: 24px 16px;
        border-radius: var(--radius-lg);
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-desc {
        font-size: 14px;
    }
    
    .time-slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Touch optimization */
@media (hover: none) {
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
    
    .service-item:hover,
    .team-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .navbar, .fab-booking, .preloader, .mobile-menu, .hero-scroll {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-bg {
        display: none;
    }
    
    .hero-content {
        color: var(--color-black);
    }
}
