/* ============================================
   Mr. Taglio - Hair Salon Website
   Modern & Edgy with Luxury touches
   Mobile-First Responsive Design
   ============================================ */

/* CSS Variables */
:root {
    --color-black: #0a0a0a;
    --color-black-light: #111111;
    --color-white: #f4f0ec;
    --color-white-pure: #faf9f6;
    --color-gold: #C5A059;
    --color-gold-light: #d4b978;
    --color-gold-dark: #a08545;
    --color-gray: #666666;
    --color-gray-light: #999999;
    --color-gray-dark: #333333;
    --color-overlay: rgba(10, 10, 10, 0.85);
    --color-glass: rgba(10, 10, 10, 0.8);
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 24px rgba(197, 160, 89, 0.2);
    
    --container-max: 1200px;
    --container-padding: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: none;
    font-family: inherit;
}

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

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.custom-cursor.hover {
    width: 12px;
    height: 12px;
    background: var(--color-white);
}

.custom-cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-gold);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    body,
    a,
    button {
        cursor: auto;
    }
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
}

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

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

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin-top: 1rem;
    animation: lineExpand 1.5s ease forwards 0.5s;
}

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

@keyframes lineExpand {
    to {
        width: 200px;
    }
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s var(--transition-smooth);
}

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

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--transition-smooth);
    border: none;
}

.btn-booking:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-booking i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.btn-booking:hover i {
    transform: translateX(4px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s var(--transition-smooth);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition-smooth);
}

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

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-white);
    transition: color 0.3s;
}

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

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

.mobile-menu-social {
    display: flex;
    gap: 2rem;
}

.mobile-menu-social a {
    font-size: 1.5rem;
    color: var(--color-gray-light);
    transition: color 0.3s;
}

.mobile-menu-social a:hover {
    color: var(--color-gold);
}

/* Floating Booking Button (Mobile) */
.floating-booking-btn {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 998;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s var(--transition-smooth);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 24px rgba(197, 160, 89, 0.2);
    }
    50% {
        box-shadow: 0 4px 32px rgba(197, 160, 89, 0.4);
    }
}

.floating-booking-btn:hover {
    transform: scale(1.05);
    background: var(--color-gold-light);
}

/* 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-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80') center/cover;
    transform: scale(1.1);
    transition: transform 10s linear;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

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

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(40px);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--transition-smooth);
    border: none;
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(244, 240, 236, 0.3);
    transition: all 0.3s var(--transition-smooth);
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-3px);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

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

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

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

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--transition-smooth);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

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

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

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

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

.about-image {
    position: relative;
}

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

.about-image-wrapper img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.8s var(--transition-smooth);
}

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

.about-image-decor {
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.drop-cap {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-gold);
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    margin-top: 0.1em;
}

.about-text {
    color: var(--color-gray-light);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
}

.about-text strong {
    color: var(--color-white);
    font-weight: 600;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

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

.tab-btn {
    background: transparent;
    border: 1px solid rgba(244, 240, 236, 0.1);
    color: var(--color-gray-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--transition-smooth);
}

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

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

.tab-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(244, 240, 236, 0.05);
    transition: all 0.3s var(--transition-smooth);
}

.service-item:hover {
    background: rgba(197, 160, 89, 0.05);
    border-radius: var(--radius-md);
    border-bottom-color: transparent;
    transform: translateX(8px);
}

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

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

.service-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    color: var(--color-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

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

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

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

/* Booking Section */
.booking {
    background: var(--color-black-light);
    padding: 6rem 0;
}

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

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

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

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gray-dark);
    color: var(--color-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid transparent;
}

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

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

.step-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray);
    transition: color 0.3s;
    white-space: nowrap;
}

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

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--color-gray-dark);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 60px;
    transition: background 0.3s;
}

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

/* Booking Form */
.booking-form {
    background: var(--color-black);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(244, 240, 236, 0.05);
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.step-subtitle {
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Service Categories in Booking */
.service-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-cat-btn {
    background: transparent;
    border: 1px solid rgba(244, 240, 236, 0.1);
    color: var(--color-gray-light);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

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

.service-cat-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

/* Service Options */
.service-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: rgba(244, 240, 236, 0.03);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
}

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

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

.service-option input {
    display: none;
}

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

.service-option-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

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

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

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

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

.service-option-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-gray-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: all 0.3s;
    color: transparent;
    font-size: 0.7rem;
}

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

/* Stylist Options */
.stylist-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stylist-card {
    cursor: pointer;
}

.stylist-card input {
    display: none;
}

.stylist-card-inner {
    background: rgba(244, 240, 236, 0.03);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.stylist-card:hover .stylist-card-inner {
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.2);
}

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

.stylist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--color-gray-dark);
    transition: border-color 0.3s;
}

.stylist-avatar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-dark);
    color: var(--color-gray);
    font-size: 1.5rem;
}

.stylist-card input:checked + .stylist-card-inner .stylist-avatar {
    border-color: var(--color-gold);
}

.stylist-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

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

.stylist-check {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: transparent;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.stylist-card input:checked + .stylist-card-inner .stylist-check {
    color: var(--color-gold);
}

/* Calendar */
.date-time-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.calendar-section {
    background: rgba(244, 240, 236, 0.03);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

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

.calendar-nav {
    background: none;
    border: none;
    color: var(--color-gray);
    font-size: 1rem;
    padding: 0.5rem;
    transition: color 0.3s;
}

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

.calendar-month {
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.95rem;
}

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

.calendar-day-header {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-gray);
    padding: 0.5rem 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--color-white);
}

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

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

.calendar-day.disabled {
    color: var(--color-gray-dark);
    cursor: not-allowed;
}

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

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

/* Time Slots */
.time-slots-section {
    background: rgba(244, 240, 236, 0.03);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.time-slots-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.time-slots-date {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

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

.time-slot {
    background: rgba(244, 240, 236, 0.05);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.2s;
}

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

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

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

.no-date-selected {
    color: var(--color-gray);
    font-size: 0.9rem;
    text-align: center;
    grid-column: 1 / -1;
    padding: 2rem 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(244, 240, 236, 0.05);
    border: 1px solid rgba(244, 240, 236, 0.1);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    color: var(--color-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(244, 240, 236, 0.08);
}

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

.error-msg {
    font-size: 0.8rem;
    color: #e74c3c;
    min-height: 1.2em;
}

/* Booking Alternatives */
.booking-alternatives {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: rgba(244, 240, 236, 0.03);
    border-radius: var(--radius-md);
}

.booking-alternatives p {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin: 0;
}

.whatsapp-btn,
.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.phone-btn {
    background: rgba(244, 240, 236, 0.1);
    color: var(--color-white);
}

.phone-btn:hover {
    background: rgba(244, 240, 236, 0.15);
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(244, 240, 236, 0.05);
}

.btn-next,
.btn-prev {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--transition-smooth);
    border: none;
}

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

.btn-next:hover:not(:disabled) {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-prev {
    background: transparent;
    color: var(--color-gray);
    border: 1px solid rgba(244, 240, 236, 0.1);
}

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

/* Confirmation */
.confirmation-content {
    text-align: center;
    padding: 2rem 0;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.confirmation-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.confirmation-details {
    background: rgba(244, 240, 236, 0.03);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(244, 240, 236, 0.05);
}

.confirmation-detail:last-child {
    border-bottom: none;
}

.confirmation-detail-label {
    font-size: 0.85rem;
    color: var(--color-gray);
}

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

.confirmation-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-confirm {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--transition-smooth);
    border: none;
}

.btn-confirm:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.confirmation-note {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 1.5rem;
}

/* Success */
.success-content {
    text-align: center;
    padding: 2rem 0;
}

.success-animation {
    margin-bottom: 2rem;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.checkmark-circle {
    stroke: var(--color-gold);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--color-gold);
    stroke-width: 2;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.success-message {
    color: var(--color-gray-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.success-details {
    background: rgba(244, 240, 236, 0.03);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.success-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.success-detail-label {
    color: var(--color-gray);
}

.success-detail-value {
    color: var(--color-white);
    font-weight: 600;
}

.success-note {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

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

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

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

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

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

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

.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.team-social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transform: translateY(20px);
    transition: transform 0.3s var(--transition-bounce);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

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

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

.team-info p {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.6;
}

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

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

.filter-btn {
    background: transparent;
    border: 1px solid rgba(244, 240, 236, 0.1);
    color: var(--color-gray-light);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

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

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

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
}

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

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.portfolio-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
}

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

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

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s var(--transition-smooth);
}

.testimonial-card {
    flex: 0 0 calc(50% - 1rem);
    background: rgba(244, 240, 236, 0.03);
    border: 1px solid rgba(244, 240, 236, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s;
}

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

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

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.95rem;
}

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

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(244, 240, 236, 0.05);
    border: 1px solid rgba(244, 240, 236, 0.1);
    color: var(--color-white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-dark);
    border: none;
    transition: all 0.3s;
    padding: 0;
}

.testimonial-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 4px;
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(244, 240, 236, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 240, 236, 0.05);
}

.google-icon {
    font-size: 2rem;
    color: #4285F4;
}

.google-rating {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-score {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1;
}

.rating-stars {
    color: var(--color-gold);
    font-size: 0.8rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--color-gray);
}

/* Products Section */
.products {
    background: var(--color-black-light);
    padding: 4rem 0;
}

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

.product-logo {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-gray);
    opacity: 0.6;
    transition: all 0.3s;
    padding: 1rem;
}

.product-logo:hover {
    opacity: 1;
    color: var(--color-white);
}

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

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

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

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

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

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

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

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

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

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

/* Contact Section */
.contact {
    background: var(--color-black-light);
}

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

.contact-info .section-title {
    margin-bottom: 2rem;
}

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

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

.contact-item i {
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-top: 0.25rem;
    width: 24px;
    text-align: center;
}

.contact-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    font-size: 0.95rem;
    color: var(--color-gray-light);
    transition: color 0.3s;
}

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

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

.contact-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(244, 240, 236, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-gray);
    transition: all 0.3s;
}

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

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

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(0.8) invert(0.9);
    border-radius: var(--radius-lg);
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

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

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(244, 240, 236, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-gray);
    transition: all 0.3s;
}

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

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

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

.footer-newsletter h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.newsletter-form input {
    flex: 1;
    background: rgba(244, 240, 236, 0.05);
    border: 1px solid rgba(244, 240, 236, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--color-white);
    font-family: inherit;
    font-size: 0.9rem;
}

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

.newsletter-form button {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-gold);
    border: none;
    color: var(--color-black);
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 240, 236, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--color-gray);
    transition: color 0.3s;
}

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

.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.footer-big-logo {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 300;
    color: rgba(244, 240, 236, 0.02);
    text-align: center;
    line-height: 1;
    margin-top: 2rem;
    user-select: none;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .date-time-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
    
    body,
    a,
    button {
        cursor: auto;
    }
    
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .btn-booking {
        display: none;
    }
    
    .floating-booking-btn {
        display: inline-flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
    
    .about-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-tabs {
        gap: 0.35rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .service-meta {
        width: 100%;
        justify-content: space-between;
    }
    
    .booking-progress {
        gap: 0.25rem;
    }
    
    .step-label {
        display: none;
    }
    
    .progress-line {
        margin-bottom: 0;
        max-width: 20px;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .stylist-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-alternatives {
        flex-direction: column;
        align-items: stretch;
    }
    
    .booking-alternatives a {
        justify-content: center;
    }
    
    .step-actions {
        flex-direction: column-reverse;
    }
    
    .btn-next,
    .btn-prev {
        width: 100%;
        justify-content: center;
    }
    
    .service-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }
    
    .service-cat-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .calendar-section,
    .time-slots-section {
        padding: 1rem;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
    
    .testimonials-nav {
        gap: 1rem;
    }
    
    .google-reviews-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-map iframe {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .preloader-logo {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-badge {
        padding: 1rem;
        right: 0.5rem;
        bottom: 1rem;
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .stylist-options {
        grid-template-columns: 1fr;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .confirmation-details {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .mobile-link {
        font-size: 2rem;
    }
    
    .floating-booking-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Smooth scroll for iOS */
@supports (-webkit-touch-callout: none) {
    html {
        -webkit-overflow-scrolling: touch;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-gray-dark);
    border-radius: 4px;
}

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

/* Selection */
::selection {
    background: rgba(197, 160, 89, 0.3);
    color: var(--color-white);
}

/* Focus styles */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}
