/* ============================================
   CRISTINA ACCONCIATURE - PREMIUM STYLES
   Mobile-First | Classic Luxury Archetype
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #722F37;
    --color-primary-dark: #5a252c;
    --color-primary-light: #8B4513;
    --color-gold: #C5A059;
    --color-gold-light: #d4b87a;
    --color-cream: #F4F0EC;
    --color-white: #faf9f6;
    --color-black: #1a1a1a;
    --color-gray: #666;
    --color-gray-light: #e0e0e0;
    --color-success: #2d8a4e;
    --color-whatsapp: #25D366;
    
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 16px rgba(197, 160, 89, 0.25);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Typography */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 16px;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 100px;
    transition: var(--transition);
    min-height: 48px;
    min-width: 48px;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn-outline:hover {
    background: var(--color-black);
    color: white;
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background: #1faa52;
}

.btn-text {
    background: none;
    color: var(--color-gray);
    text-decoration: underline;
    padding: 8px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--color-cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    font-family: var(--font-title);
    font-size: 4rem;
    color: var(--color-primary);
    animation: fadeInUp 0.8s ease;
}

.preloader-line {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 16px auto 0;
    animation: lineGrow 1s ease forwards;
}

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

@keyframes lineGrow {
    from { width: 0; }
    to { width: 60px; }
}

/* ============================================
   CUSTOM CURSOR (Desktop)
   ============================================ */
.cursor-dot,
.cursor-outline {
    display: none;
}

@media (pointer: fine) {
    .cursor-dot {
        display: block;
        position: fixed;
        width: 6px;
        height: 6px;
        background: var(--color-primary);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s;
    }
    
    .cursor-outline {
        display: block;
        position: fixed;
        width: 32px;
        height: 32px;
        border: 1px solid var(--color-gold);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, border-color 0.3s;
    }
    
    body:hover .cursor-outline {
        width: 48px;
        height: 48px;
    }
    
    a:hover ~ .cursor-outline,
    button:hover ~ .cursor-outline {
        width: 56px;
        height: 56px;
        border-color: var(--color-primary);
        background: rgba(114, 47, 55, 0.05);
    }
}

/* ============================================
   FLOATING BOOKING BUTTON
   ============================================ */
.fab-booking {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--color-primary);
    color: white;
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: fabPulse 2s infinite;
}

.fab-booking:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px) scale(1.02);
}

.fab-booking i {
    font-size: 1.1rem;
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(114, 47, 55, 0.3); }
    50% { box-shadow: 0 4px 24px rgba(114, 47, 55, 0.5); }
}

@media (max-width: 480px) {
    .fab-booking {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .fab-booking span {
        display: none;
    }
    
    .fab-booking i {
        font-size: 1.3rem;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-slow);
}

#navbar.scrolled {
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

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

.nav-logo {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    transition: color 0.3s;
}

.nav-logo span {
    font-weight: 400;
    font-style: italic;
}

#navbar.scrolled .nav-logo {
    color: var(--color-black);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

#navbar.scrolled .nav-toggle span {
    background: var(--color-black);
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    padding: 100px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-black);
    padding: 8px 0;
    border-bottom: 1px solid var(--color-gray-light);
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--color-primary);
    color: white !important;
    padding: 14px 24px;
    border-radius: 100px;
    text-align: center;
    border: none;
    margin-top: 8px;
}

/* Desktop Nav */
@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 32px;
        box-shadow: none;
        transition: none;
    }
    
    .nav-link {
        font-size: 0.9rem;
        font-weight: 500;
        color: white;
        border: none;
        padding: 0;
        position: relative;
    }
    
    #navbar.scrolled .nav-link {
        color: var(--color-black);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-gold);
        transition: width 0.3s;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-cta {
        margin: 0;
        padding: 12px 28px;
    }
}

/* ============================================
   HERO
   ============================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

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

.hero-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .line {
    display: block;
}

.hero-title .line:last-child {
    font-style: italic;
    color: var(--color-gold-light);
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 32px;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-cta .btn {
    min-width: 200px;
}

.hero-cta .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.hero-cta .btn-outline:hover {
    background: white;
    color: var(--color-black);
    border-color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: white;
    margin: 8px auto 0;
    animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    gap: 48px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--color-primary);
    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-title);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-content p {
    color: var(--color-gray);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-dropcap::first-letter {
    font-family: var(--font-title);
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 4px;
    color: var(--color-primary);
}

.about-features {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature i {
    color: var(--color-gold);
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 64px;
    }
    
    .about-image img {
        height: 500px;
    }
}

/* ============================================
   SERVICES
   ============================================ */
.services-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    border: 2px solid var(--color-gray-light);
    background: white;
    color: var(--color-gray);
    transition: var(--transition);
    min-height: 44px;
}

.tab-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.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: 16px;
}

.service-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--color-gray-light);
    transition: var(--transition);
}

.service-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.service-info h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

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

.service-badge {
    display: inline-block;
    background: var(--color-gold);
    color: white;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 100px;
    margin-top: 8px;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--color-gray-light);
}

.service-time {
    font-size: 0.85rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-price {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .service-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
    
    .service-meta {
        border-top: none;
        padding-top: 0;
        min-width: 160px;
        justify-content: flex-end;
        gap: 16px;
    }
}

/* ============================================
   BOOKING SECTION - CRITICAL
   ============================================ */
.booking-section {
    background: var(--color-cream);
    padding-bottom: 100px;
}

.booking-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-gray-light);
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.progress-step.active .step-circle,
.progress-step.completed .step-circle {
    background: var(--color-primary);
    color: white;
}

.progress-step.completed .step-circle::after {
    content: '\2713';
    font-family: inherit;
}

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

.step-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray);
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: var(--color-primary);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--color-gray-light);
    margin: 0 4px;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.progress-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--color-primary);
    transition: width 0.4s;
}

.progress-line.completed::after {
    width: 100%;
}

@media (max-width: 480px) {
    .step-label {
        display: none;
    }
    
    .booking-progress {
        justify-content: center;
        gap: 8px;
    }
    
    .progress-line {
        max-width: 40px;
    }
}

/* Booking Steps */
.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.step-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.step-desc {
    color: var(--color-gray);
    margin-bottom: 24px;
}

/* Service Cards in Booking */
.service-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.category-btn {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 2px solid var(--color-gray-light);
    background: white;
    color: var(--color-gray);
    white-space: nowrap;
    min-height: 44px;
    transition: var(--transition);
}

.category-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 4px;
}

.booking-service-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: white;
    min-height: 72px;
}

.booking-service-card:hover {
    border-color: var(--color-gold);
}

.booking-service-card.selected {
    border-color: var(--color-primary);
    background: rgba(114, 47, 55, 0.03);
    box-shadow: var(--shadow-sm);
}

.booking-service-card .bs-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 2px;
}

.booking-service-card .bs-meta {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.booking-service-card .bs-price {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.booking-service-card .bs-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-gray-light);
    border-radius: 50%;
    margin-left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.booking-service-card.selected .bs-check {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.staff-card {
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.staff-card:hover {
    border-color: var(--color-gold);
}

.staff-card.selected {
    border-color: var(--color-primary);
    background: rgba(114, 47, 55, 0.03);
    box-shadow: var(--shadow-sm);
}

.staff-card img,
.staff-card .staff-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
}

.staff-card h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.staff-card p {
    font-size: 0.75rem;
    color: var(--color-gray);
}

@media (min-width: 768px) {
    .staff-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Calendar */
.calendar-wrapper {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

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

.calendar-header h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
}

.cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gray-light);
    transition: var(--transition);
    min-height: 44px;
    min-width: 44px;
}

.cal-nav:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

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

.cal-day-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray);
    padding: 8px 0;
}

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

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--color-primary);
    color: white;
}

.cal-day.selected {
    background: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.cal-day.disabled {
    color: var(--color-gray-light);
    cursor: not-allowed;
    background: transparent;
}

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

.cal-day.today {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Time Slots */
.time-slots h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.slot-btn {
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-gray-light);
    background: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    min-height: 48px;
}

.slot-btn:hover:not(:disabled) {
    border-color: var(--color-gold);
}

.slot-btn.selected {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

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

.slots-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-gray);
    padding: 20px;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: 16px;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-black);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.08);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #c0392b;
}

.error-msg {
    font-size: 0.8rem;
    color: #c0392b;
    display: none;
}

.form-group input.error + .error-msg {
    display: block;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Booking Navigation */
.booking-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-gray-light);
    gap: 12px;
}

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

.booking-nav .btn-prev {
    background: transparent;
    color: var(--color-gray);
    border: 2px solid var(--color-gray-light);
}

/* Summary */
.summary-card {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

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

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

.summary-row strong {
    font-weight: 600;
    text-align: right;
}

.summary-divider {
    height: 1px;
    background: var(--color-gray-light);
    margin: 8px 0;
}

.summary-row.total {
    font-size: 1.1rem;
}

.summary-row.total strong {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--color-primary);
}

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

.success-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 16px;
}

.success-box h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.success-box p {
    color: var(--color-gray);
    margin-bottom: 24px;
}

.success-details {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
    font-size: 0.95rem;
}

.success-details p {
    margin-bottom: 8px;
    color: var(--color-black);
}

.success-details strong {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .booking-container {
        padding: 48px;
    }
    
    .service-cards {
        max-height: 350px;
    }
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-gray-light);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

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

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

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

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

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

.team-insta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-black);
    transition: var(--transition);
}

.team-insta:hover {
    background: var(--color-primary);
    color: white;
}

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

@media (min-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    border: 2px solid var(--color-gray-light);
    background: white;
    color: var(--color-gray);
    transition: var(--transition);
    min-height: 44px;
}

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

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    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-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-item:nth-child(3) {
        grid-row: span 2;
    }
}

@media (min-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--color-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

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

.testimonial-author strong {
    display: block;
    font-size: 1rem;
}

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

.reviews-badge {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.badge-score {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

.badge-stars {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.badge-count {
    font-size: 0.9rem;
    color: var(--color-gray);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-badge {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.product-logo {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.product-logo:hover {
    box-shadow: var(--shadow-md);
}

.product-logo span {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-gray);
    text-align: center;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--color-cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-gray-light);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    gap: 16px;
    min-height: 60px;
}

.faq-question i {
    color: var(--color-gold);
    font-size: 0.9rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    gap: 48px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info > p {
    color: var(--color-gray);
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
    font-size: 0.95rem;
    color: var(--color-gray);
}

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

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 350px;
    background: var(--color-cream);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    filter: grayscale(0.2);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-black);
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

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

.footer-col h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-col ul li,
.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 0.9rem;
    min-height: 44px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-gold);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--color-gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

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

.footer-logo-big {
    font-family: var(--font-title);
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 600;
    text-align: center;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    padding-bottom: 20px;
    user-select: none;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: white;
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Smooth anchor offset for fixed nav */
html {
    scroll-padding-top: 80px;
}
