/* ============================================
   BLOW LAB - Premium Hair Salon Website
   Design System & Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --black: #0a0a0a;
    --black-soft: #111111;
    --white: #f9f9f9;
    --white-bone: #f4f0ec;
    --gold: #D4AF37;
    --gold-light: #E5C158;
    --gold-dark: #B8962E;
    --gray: #888888;
    --gray-light: #cccccc;
    --gray-dark: #333333;
    --success: #22c55e;
    --error: #ef4444;

    --font-display: 'Playfair Display', serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

body:hover .cursor-outline {
    opacity: 1;
}

@media (pointer: coarse) {
    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
    button, a { cursor: pointer; }
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: transform 0.8s ease-in-out, opacity 0.6s ease;
}

.preloader.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease forwards;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-dark);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--gold);
    animation: loadProgress 1.5s ease forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FAB Booking (Mobile) */
.fab-booking {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: var(--black);
    padding: 14px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: float 3s ease-in-out infinite;
}

.fab-booking:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (min-width: 1024px) {
    .fab-booking { display: none; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
}

.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gray-light);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-booking-nav {
    display: none;
    background: var(--gold);
    color: var(--black);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-booking-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .nav-menu { display: flex; }
    .btn-booking-nav { display: inline-block; }
    .nav-toggle { display: none; }
}

/* Mobile Menu Overlay */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        inset: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: opacity 0.4s, visibility 0.4s;
        opacity: 0;
        visibility: hidden;
    }
    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    .nav-menu .nav-link {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        text-transform: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border: 2px solid transparent;
    min-height: 48px;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 1.5rem 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('img/hero.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.85) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.7s; }
.hero-title .line:nth-child(2) { animation-delay: 0.9s; }
.hero-title .line:nth-child(3) { animation-delay: 1.1s; }

.hero-title .gold {
    color: var(--gold);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.3s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container.narrow {
    max-width: 800px;
}

.section {
    padding: 5rem 0;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-label.center { text-align: center; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title.center { text-align: center; }

.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.section-subtitle.center { text-align: center; }

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    max-width: 540px;
}

.about-text .section-title {
    margin-bottom: 1.5rem;
}

.drop-cap {
    float: left;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 0.75rem;
    color: var(--gold);
}

.about-text p {
    color: var(--gray-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Services */
.services-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tab-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    border: 1px solid transparent;
    transition: all 0.3s;
    min-height: 44px;
}

.tab-btn:hover {
    color: var(--white);
}

.tab-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.tab-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
}

.service-item:hover {
    background: rgba(255,255,255,0.02);
}

.service-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.service-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

.badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.2rem 0.6rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.service-meta {
    text-align: right;
    white-space: nowrap;
}

.service-time {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

@media (max-width: 480px) {
    .service-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    .service-meta { text-align: left; }
}

/* ============================================
   BOOKING SECTION - MOBILE FIRST PROFESSIONAL
   ============================================ */

.booking-section {
    background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.booking-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
    .booking-wrapper {
        padding: 2.5rem;
    }
}

/* Booking Steps Indicator */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    position: relative;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-dark);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.step-indicator.active .step-circle,
.step-indicator.completed .step-circle {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.step-indicator.completed .step-circle::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
}

.step-indicator.completed .step-circle {
    font-size: 0;
}

.step-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    text-align: center;
    white-space: nowrap;
}

.step-indicator.active .step-label {
    color: var(--gold);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-dark);
    margin: 0 0.25rem;
    margin-bottom: 1.2rem;
    transition: background 0.4s;
    max-width: 40px;
}

.step-line.completed {
    background: var(--gold);
}

@media (max-width: 480px) {
    .step-label { display: none; }
    .step-line { margin-bottom: 0; }
    .step-circle { width: 32px; height: 32px; font-size: 0.75rem; }
}

/* Booking Steps Content */
.booking-step {
    display: none;
    animation: fadeIn 0.4s;
}

.booking-step.active {
    display: block;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Service Category Buttons in Booking */
.service-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-cat-btn {
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
    min-height: 44px;
}

.service-cat-btn.active,
.service-cat-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Service Cards */
.service-cards {
    display: grid;
    gap: 0.75rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255,255,255,0.05);
}

.service-card.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.service-card .radio-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.service-card.selected .radio-circle {
    border-color: var(--gold);
    background: var(--gold);
}

.service-card.selected .radio-circle::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    color: var(--black);
}

.service-card-info {
    flex: 1;
    min-width: 0;
}

.service-card-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.service-card-info p {
    font-size: 0.8rem;
    color: var(--gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-card-price {
    text-align: right;
    flex-shrink: 0;
}

.service-card-price .price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
}

.service-card-price .duration {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Professional Cards */
.pro-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .pro-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pro-card {
    cursor: pointer;
}

.pro-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pro-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    transition: all 0.3s;
    text-align: center;
}

.pro-card:hover .pro-card-inner {
    border-color: rgba(212, 175, 55, 0.4);
}

.pro-card input:checked + .pro-card-inner {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
}

.pro-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gray);
}

.pro-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-info h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
}

.pro-info p {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Calendar */
.calendar-wrapper {
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    min-height: 44px;
    min-width: 44px;
}

.cal-nav:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.cal-month-year {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
    text-align: center;
}

.cal-day-header {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray);
    padding: 0.5rem 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    min-height: 44px;
    position: relative;
}

.cal-day:not(.disabled):not(.empty) {
    cursor: pointer;
    background: rgba(255,255,255,0.03);
}

.cal-day:not(.disabled):not(.empty):hover {
    background: rgba(212, 175, 55, 0.15);
}

.cal-day.disabled {
    color: var(--gray-dark);
    cursor: not-allowed;
}

.cal-day.empty {
    background: transparent;
}

.cal-day.selected {
    background: var(--gold) !important;
    color: var(--black);
    font-weight: 700;
}

.cal-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.cal-day.selected.today::after {
    background: var(--black);
}

/* Time Slots */
.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    min-height: 60px;
}

.time-hint {
    color: var(--gray);
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
    padding: 1rem;
}

.time-slot {
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s;
    min-height: 44px;
    min-width: 80px;
}

.time-slot:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.time-slot.selected {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-group.full {
        grid-column: span 2;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-light);
}

.form-group input,
.form-group textarea,
.newsletter-form input {
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.error-msg {
    font-size: 0.75rem;
    color: var(--error);
    min-height: 1rem;
}

/* Summary Card */
.summary-card {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}

.summary-label {
    color: var(--gray);
}

.summary-value {
    font-weight: 500;
    text-align: right;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.whatsapp-alt {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.whatsapp-alt a {
    color: #25d366;
    font-weight: 600;
}

/* Success Message */
.booking-success {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeIn 0.5s;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.booking-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.booking-success p {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.success-detail {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.success-detail a {
    color: var(--gold);
}

/* Team Section */
.team-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.team-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.team-info {
    padding: 1.25rem;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.team-role {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.team-info p {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.team-insta {
    font-size: 0.8rem;
    color: var(--gray);
    transition: color 0.3s;
}

.team-insta:hover {
    color: var(--gold);
}

/* Portfolio */
.portfolio-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gray);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
    min-height: 40px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.portfolio-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.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;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--white);
}

/* Testimonials */
.testimonials-wrapper {
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.testimonials-track {
    display: flex;
    gap: 1.25rem;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

@keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-wrapper:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 320px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.testimonial-card p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gray);
}

.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
}

.google-badge i {
    font-size: 1.25rem;
    color: #4285F4;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gray);
    transition: all 0.3s;
    text-align: center;
}

.product-logo:hover {
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-4px);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-align: left;
    color: var(--white);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    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 ease, padding 0.4s ease;
    padding: 0 1.25rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 0.2rem;
    width: 24px;
    text-align: center;
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}

.contact-item a {
    color: var(--gray-light);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--gold);
}

.opening-hours {
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
}

.opening-hours h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-row.closed span:last-child {
    color: var(--error);
}

.hours-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
    filter: grayscale(0.8) invert(0.9);
}

/* Footer */
.footer {
    background: var(--black-soft);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-col p,
.footer-col a {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
}

.newsletter-form button {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: var(--gray);
}

.footer-big-logo {
    font-family: var(--font-heading);
    font-size: 12vw;
    font-weight: 800;
    text-align: center;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    padding: 2rem 0 0;
    user-select: none;
    white-space: nowrap;
}

/* Utilities */
.gold { color: var(--gold); }

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}
