/* ============================================
   HAIR ZERO by Cinzia Risolia — Premium CSS
   Archetipo: Modern Luxury
   Mobile-First | Responsive | Performance
   ============================================ */

/* -------------------------------------------
   1. CSS VARIABLES & DESIGN SYSTEM
   ------------------------------------------- */
:root {
    /* Colors */
    --black-premium: #0a0a0a;
    --black-soft: #111111;
    --white-premium: #f4f0ec;
    --white-pure: #faf9f6;
    --gold: #C5A059;
    --gold-light: #d4b978;
    --gold-dark: #a08542;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --error: #dc2626;
    --success: #16a34a;
    --whatsapp: #25d366;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-padding: 1.5rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --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 -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-gold: 0 4px 20px rgba(197, 160, 89, 0.25);

    /* Z-index */
    --z-preloader: 9999;
    --z-cursor: 9998;
    --z-fab: 100;
    --z-nav: 90;
    --z-modal: 80;
}

/* -------------------------------------------
   2. RESET & BASE
   ------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white-premium);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: 16px; /* Prevents zoom on iOS */
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--gray-100);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

/* -------------------------------------------
   3. UTILITIES
   ------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--space-2xl) 0;
}

.section-padding-sm {
    padding: var(--space-xl) 0;
}

.section-header {
    margin-bottom: var(--space-xl);
}

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

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--black-premium);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-top: var(--space-sm);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.drop-cap {
    float: left;
    font-family: var(--font-serif);
    font-size: 4.5em;
    line-height: 0.8;
    padding-right: 0.1em;
    color: var(--gold);
    font-weight: 300;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--white-pure);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white-pure);
    font-weight: 500;
    font-size: 0.9375rem;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

/* -------------------------------------------
   4. PRELOADER
   ------------------------------------------- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-preloader);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

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

.preloader-logo {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    color: var(--white-premium);
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
    animation: preloaderFadeUp 0.8s ease forwards 0.2s;
}

.preloader-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1rem auto;
    transform: scaleX(0);
    animation: lineGrow 0.6s ease forwards 0.8s;
}

.preloader-sub {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gray-500);
    opacity: 0;
    animation: preloaderFadeUp 0.8s ease forwards 1s;
}

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

@keyframes lineGrow {
    to { transform: scaleX(1); }
}

/* -------------------------------------------
   5. CUSTOM CURSOR (Desktop only)
   ------------------------------------------- */
.custom-cursor,
.custom-cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}

.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--white-pure);
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    transition: width 0.3s, height 0.3s, border-color 0.3s, left 0.15s ease-out, top 0.15s ease-out;
}

body.hovering .custom-cursor {
    width: 0;
    height: 0;
}

body.hovering .custom-cursor-follower {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
}

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

/* -------------------------------------------
   6. FLOATING ACTION BUTTON (Mobile)
   ------------------------------------------- */
.fab-booking {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: var(--z-fab);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--gold);
    color: var(--white-pure);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold), 0 4px 15px rgba(0,0,0,0.2);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(100px);
}

.fab-booking.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.fab-booking:active {
    transform: scale(0.95);
}

@media (min-width: 1024px) {
    .fab-booking {
        display: none;
    }
}

/* -------------------------------------------
   7. NAVBAR
   ------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(244, 240, 236, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white-pure);
    letter-spacing: 0.05em;
    transition: color var(--transition-base);
}

.navbar.scrolled .logo-main {
    color: var(--black-premium);
}

.logo-sub {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gray-500);
    transition: color var(--transition-base);
}

.navbar.scrolled .logo-sub {
    color: var(--gray-600);
}

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

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-pure);
    opacity: 0.85;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--gray-800);
}

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

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

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

.nav-cta {
    display: none;
    padding: 0.625rem 1.5rem;
    background: var(--gold);
    color: var(--white-pure);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 101;
}

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

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

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

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

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

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--white-premium);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 100;
}

.nav-links.active .nav-link {
    font-size: 1.5rem;
    color: var(--black-premium);
    opacity: 1;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
    .nav-cta {
        display: inline-flex;
    }
    .nav-toggle {
        display: none;
    }
}

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

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

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

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

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
    color: var(--white-pure);
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: var(--space-md);
}

.hero-title .reveal-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: revealUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .reveal-line:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin: 0 auto var(--space-lg);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.6s;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

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

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

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

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

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

/* -------------------------------------------
   9. ABOUT SECTION
   ------------------------------------------- */
.about {
    background: var(--white-pure);
}

.about-grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

.about-image {
    position: relative;
}

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

.image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.image-accent {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: 1rem;
    background: var(--black-premium);
    color: var(--white-pure);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.exp-text {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    margin-bottom: var(--space-md);
}

.about-text p {
    margin-bottom: var(--space-sm);
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
}

.about-text blockquote {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gray-700);
    border-left: 2px solid var(--gold);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
    line-height: 1.4;
}

.about-signature {
    margin-top: var(--space-lg);
}

.sig-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--black-premium);
}

.sig-role {
    font-size: 0.8125rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 45% 1fr;
        gap: var(--space-3xl);
    }
}

/* -------------------------------------------
   10. SERVICES SECTION
   ------------------------------------------- */
.services {
    background: var(--white-premium);
}

.services-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-lg);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex-shrink: 0;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

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

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

.service-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.service-item:first-child {
    padding-top: 0;
}

.service-info h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black-premium);
    margin-bottom: 0.25rem;
}

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

.service-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.service-time {
    font-size: 0.8125rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.service-price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-left: auto;
}

.services-note {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    background: var(--white-pure);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--gray-500);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.services-note i {
    color: var(--gold);
    margin-top: 0.125rem;
}

@media (min-width: 640px) {
    .service-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .service-meta {
        margin-left: auto;
        flex-shrink: 0;
    }
}

/* -------------------------------------------
   11. BOOKING SECTION — CRITICAL
   ------------------------------------------- */
.booking {
    background: var(--black-premium);
    color: var(--white-pure);
}

.booking .section-label {
    color: var(--gold);
}

.booking .section-title {
    color: var(--white-pure);
}

.booking .section-subtitle {
    color: var(--gray-400);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Progress */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-sm);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.step-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-800);
    color: var(--gray-500);
    font-size: 0.8125rem;
    font-weight: 600;
    border: 2px solid var(--gray-700);
    transition: all var(--transition-base);
}

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

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

.progress-step.completed .step-circle::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
}

.step-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    display: none;
    transition: color var(--transition-base);
}

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

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--gray-800);
    margin: 0 0.25rem;
    margin-bottom: 1.5rem;
    max-width: 40px;
    transition: background var(--transition-base);
}

.progress-line.completed {
    background: var(--gold);
}

@media (min-width: 640px) {
    .step-label {
        display: block;
    }
    .progress-line {
        max-width: 80px;
    }
}

/* Steps */
.booking-step {
    display: none;
    animation: stepIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.step-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-desc {
    text-align: center;
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
    font-size: 0.9375rem;
}

/* Service Categories (Booking) */
.service-categories {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: var(--space-sm);
    margin-bottom: var(--space-md);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.service-categories::-webkit-scrollbar {
    display: none;
}

.service-cat-btn {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-400);
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.service-cat-btn:hover,
.service-cat-btn.active {
    background: var(--gold);
    color: var(--white-pure);
    border-color: var(--gold);
}

/* Service Options */
.service-options {
    display: grid;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
}

.service-option {
    position: relative;
}

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

.service-option-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 1rem 1.25rem;
    background: var(--gray-800);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.service-option-label:hover {
    background: var(--gray-700);
}

.service-option input:checked + .service-option-label {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
}

.service-option-info {
    flex: 1;
}

.service-option-info h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--white-pure);
}

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

.service-option-meta {
    text-align: right;
    flex-shrink: 0;
}

.service-option-price {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gold);
}

.service-option-time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.service-option-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.service-option input:checked + .service-option-label .service-option-check {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white-pure);
}

/* Professional Cards */
.pro-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
}

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

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

.pro-card-inner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 1rem 1.25rem;
    background: var(--gray-800);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.pro-card:hover .pro-card-inner {
    background: var(--gray-700);
}

.pro-card input:checked + .pro-card-inner {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
}

.pro-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
}

.pro-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-info {
    flex: 1;
}

.pro-info h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.125rem;
    color: var(--white-pure);
}

.pro-info p {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.pro-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.625rem;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.pro-card input:checked + .pro-card-inner .pro-check {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white-pure);
}

/* Calendar */
.calendar-wrapper {
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.cal-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-700);
    color: var(--white-pure);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

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

.cal-month {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--white-pure);
}

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

.cal-weekday {
    text-align: center;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    padding: 0.5rem 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--white-pure);
    border: none;
    background: transparent;
    padding: 0;
    min-height: 44px; /* Touch target */
}

.cal-day:hover:not(.disabled):not(.selected) {
    background: var(--gray-700);
}

.cal-day.disabled {
    color: var(--gray-600);
    cursor: not-allowed;
    text-decoration: line-through;
}

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

.cal-day.today {
    border: 1px solid var(--gold);
}

/* Time Slots */
.time-slots {
    margin-bottom: var(--space-lg);
}

.slots-title {
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--white-pure);
}

.slots-title span {
    color: var(--gold);
    font-weight: 400;
}

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

.slots-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--gray-500);
    padding: var(--space-lg);
    font-size: 0.9375rem;
}

.time-slot {
    padding: 0.625rem 0.5rem;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    background: var(--gray-800);
    color: var(--white-pure);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 44px; /* Touch target */
}

.time-slot:hover {
    background: var(--gray-700);
}

.time-slot.selected {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.15);
    color: var(--gold);
}

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

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

/* Form Grid */
.form-grid {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

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

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

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--gray-800);
    border: 2px solid var(--gray-700);
    border-radius: var(--radius-md);
    color: var(--white-pure);
    font-size: 1rem;
    transition: all var(--transition-fast);
    width: 100%;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--gray-900);
}

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

.error-msg {
    font-size: 0.75rem;
    color: var(--error);
    display: none;
}

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

.whatsapp-option {
    margin-bottom: var(--space-lg);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--gray-300);
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-fast);
    color: transparent;
    font-size: 0.625rem;
}

.checkbox-label input:checked + .checkmark {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white-pure);
}

.checkbox-label input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

/* Step Actions */
.step-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-800);
}

.btn-back {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    background: transparent;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    color: var(--white-pure);
    background: var(--gray-800);
}

.btn-next,
.btn-confirm {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    background: var(--gold);
    color: var(--white-pure);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    box-shadow: var(--shadow-gold);
}

.btn-next:hover,
.btn-confirm:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.btn-next:disabled,
.btn-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Summary */
.summary-card {
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-700);
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.summary-value {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white-pure);
    text-align: right;
}

.summary-value.price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
}

.summary-divider {
    height: 1px;
    background: var(--gray-600);
    margin: var(--space-sm) 0;
}

.summary-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(197, 160, 89, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    color: var(--gray-300);
}

.summary-note i {
    color: var(--gold);
    margin-top: 0.125rem;
}

.summary-note a {
    color: var(--gold);
    text-decoration: underline;
}

/* Success State */
.success-state {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: var(--space-md);
    animation: scaleIn 0.5s var(--transition-bounce);
}

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

.success-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: var(--space-sm);
    color: var(--white-pure);
}

.success-text {
    color: var(--gray-400);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

.success-details {
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
    text-align: left;
    font-size: 0.9375rem;
}

.success-details p {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-700);
    display: flex;
    justify-content: space-between;
}

.success-details p:last-child {
    border-bottom: none;
}

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

.success-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.5rem;
    background: var(--whatsapp);
    color: var(--white-pure);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

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

.btn-text {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.btn-text:hover {
    color: var(--white-pure);
}

@media (min-width: 640px) {
    .success-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -------------------------------------------
   12. TEAM SECTION
   ------------------------------------------- */
.team {
    background: var(--white-pure);
}

.team-grid {
    display: grid;
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
}

.team-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.team-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.7), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-pure);
    color: var(--black-premium);
    border-radius: 50%;
    font-size: 1.125rem;
    transition: all var(--transition-fast);
}

.team-social:hover {
    background: var(--gold);
    color: var(--white-pure);
    transform: translateY(-3px);
}

.team-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: var(--black-premium);
}

.team-role {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.team-info p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

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

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

/* -------------------------------------------
   13. PORTFOLIO SECTION
   ------------------------------------------- */
.portfolio {
    background: var(--white-premium);
}

.portfolio-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-500);
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

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

.portfolio-grid {
    display: grid;
    gap: 1rem;
}

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

.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.8), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.portfolio-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.portfolio-overlay h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white-pure);
}

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

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .portfolio-item:first-child {
        grid-column: span 2;
    }
    
    .portfolio-item:first-child img {
        aspect-ratio: 16/9;
    }
}

/* -------------------------------------------
   14. TESTIMONIALS
   ------------------------------------------- */
.testimonials {
    background: var(--white-pure);
}

.testimonials-slider {
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.testimonial-track {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: var(--white-premium);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--black-premium);
}

.author-verified {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.author-verified i {
    color: #4285F4;
}

.testimonials-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--white-premium);
    border-radius: var(--radius-full);
    max-width: fit-content;
    margin: 0 auto;
    flex-wrap: wrap;
}

.badge-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-pure);
    border-radius: 50%;
    font-size: 1.25rem;
    color: #4285F4;
    box-shadow: var(--shadow-sm);
}

.badge-score {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black-premium);
    line-height: 1;
}

.badge-reviews {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.badge-link {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: color var(--transition-fast);
}

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

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 0.75rem);
    }
}

/* -------------------------------------------
   15. PRODUCTS
   ------------------------------------------- */
.products {
    background: var(--white-premium);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    align-items: center;
    justify-items: center;
    opacity: 0.6;
}

.product-logo {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.05em;
    text-align: center;
}

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

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

/* -------------------------------------------
   16. FAQ
   ------------------------------------------- */
.faq {
    background: var(--white-pure);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black-premium);
    text-align: left;
    transition: color var(--transition-fast);
}

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

.faq-question i {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: var(--space-md);
}

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

/* -------------------------------------------
   17. CONTACT
   ------------------------------------------- */
.contact {
    background: var(--white-premium);
}

.contact-grid {
    display: grid;
    gap: var(--space-xl);
}

.contact-info p {
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    line-height: 1.7;
}

.contact-details {
    display: grid;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-pure);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-item h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9375rem;
    color: var(--gray-700);
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-item a {
    color: var(--black-premium);
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.contact-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-pure);
    border-radius: 50%;
    color: var(--gray-600);
    font-size: 1.125rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--white-pure);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 400px;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 45% 1fr;
        gap: var(--space-3xl);
    }
}

/* -------------------------------------------
   18. FOOTER
   ------------------------------------------- */
.footer {
    background: var(--black-premium);
    color: var(--white-pure);
}

.footer-top {
    padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    gap: var(--space-xl);
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.footer-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-hours h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: var(--space-md);
}

.footer-links li,
.footer-hours li {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 0.625rem;
    transition: color var(--transition-fast);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.legal-links {
    display: flex;
    gap: var(--space-md);
}

.legal-links a:hover {
    color: var(--gray-400);
}

.footer-big-logo {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px var(--gray-800);
    text-align: center;
    line-height: 1;
    margin-top: var(--space-xl);
    user-select: none;
    opacity: 0.5;
}

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

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

/* -------------------------------------------
   19. ANIMATIONS & SCROLL REVEALS
   ------------------------------------------- */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Smooth section reveals */
.section-header,
.about-grid,
.team-card,
.portfolio-item,
.testimonial-card,
.faq-item,
.contact-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.revealed,
.about-grid.revealed,
.team-card.revealed,
.portfolio-item.revealed,
.testimonial-card.revealed,
.faq-item.revealed,
.contact-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.team-card:nth-child(1) { transition-delay: 0s; }
.team-card:nth-child(2) { transition-delay: 0.1s; }
.team-card:nth-child(3) { transition-delay: 0.2s; }
.team-card:nth-child(4) { transition-delay: 0.3s; }

.portfolio-item:nth-child(1) { transition-delay: 0s; }
.portfolio-item:nth-child(2) { transition-delay: 0.1s; }
.portfolio-item:nth-child(3) { transition-delay: 0.2s; }
.portfolio-item:nth-child(4) { transition-delay: 0.3s; }
.portfolio-item:nth-child(5) { transition-delay: 0.4s; }
.portfolio-item:nth-child(6) { transition-delay: 0.5s; }

/* -------------------------------------------
   20. RESPONSIVE ADJUSTMENTS
   ------------------------------------------- */
@media (min-width: 768px) {
    :root {
        --container-padding: 2rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --container-padding: 2.5rem;
    }
}

/* 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;
    }
}

/* Print styles */
@media print {
    .navbar,
    .fab-booking,
    .custom-cursor,
    .custom-cursor-follower,
    .hero-scroll,
    .preloader {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-bg {
        display: none;
    }
    
    .hero-content {
        color: var(--black-premium);
        position: static;
    }
}
