/* ============================================
   HAIR BOUTIQUE DEMIS - Premium Salon Website
   Archetipo: Classic & Traditional
   Palette: Bordeaux, Oro Antico, Crema
   Mobile-First Design
   ============================================ */

/* CSS Variables */
:root {
    --color-primary: #8B1E3F;
    --color-primary-dark: #6B1530;
    --color-gold: #C5A059;
    --color-gold-light: #D4AF37;
    --color-cream: #F4F0EC;
    --color-cream-dark: #E8E0D8;
    --color-dark: #1A1A1A;
    --color-dark-soft: #2D2D2D;
    --color-white: #FAF9F6;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-alt: 'Lato', sans-serif;
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 30px rgba(197, 160, 89, 0.25);
}

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

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

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

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

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

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

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

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

.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
}

.custom-cursor.hover {
    width: 60px;
    height: 60px;
    border-color: var(--color-primary);
    background: rgba(139, 30, 63, 0.05);
}

@media (min-width: 1024px) {
    .custom-cursor, .custom-cursor-dot { display: block; }
}

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

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

.preloader-logo {
    display: flex;
    gap: 0.25rem;
}

.preloader-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0;
    transform: translateY(20px);
    animation: letterReveal 0.5s forwards;
}

.preloader-letter:nth-child(1) { animation-delay: 0.1s; }
.preloader-letter:nth-child(2) { animation-delay: 0.2s; }
.preloader-letter:nth-child(3) { animation-delay: 0.3s; }
.preloader-letter:nth-child(4) { animation-delay: 0.4s; }
.preloader-letter:nth-child(5) { animation-delay: 0.5s; }

.preloader-line {
    width: 0;
    height: 2px;
    background: var(--color-gold);
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation: lineExpand 1s 0.8s forwards;
}

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

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

/* Floating Action Button (Mobile) */
.fab-booking {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    background: var(--color-primary);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fabPulse 2s infinite;
}

.fab-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139, 30, 63, 0.35);
}

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(139, 30, 63, 0.3); }
    50% { box-shadow: 0 8px 40px rgba(139, 30, 63, 0.5); }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

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

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

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

.nav-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-logo .logo-sub {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 500;
    margin-top: 2px;
}

.navbar.scrolled .logo-text {
    color: var(--color-primary);
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

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

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

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

.hamburger {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.navbar.scrolled .hamburger span {
    background: var(--color-dark);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid transparent;
    text-align: center;
    min-height: 48px;
    touch-action: manipulation;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 30, 63, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}

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

.btn-hero {
    background: var(--color-primary);
    color: white;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-fresha {
    background: #0d3a3a;
    color: white;
}

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

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--color-cream);
    z-index: 1000;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
}

.nav-links.active .nav-link {
    color: var(--color-text);
    font-size: 1.5rem;
    font-family: var(--font-display);
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
    .hamburger { display: none; }
    .navbar { padding: 1.25rem 0; }
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(139,30,63,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

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

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.title-line:nth-child(1) { animation-delay: 0.8s; }
.title-line:nth-child(2) { animation-delay: 1s; }
.title-line:nth-child(3) { animation-delay: 1.2s; }

.title-line.accent {
    color: var(--color-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 1.4s forwards;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s 1.6s forwards;
}

.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.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

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

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

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

/* Section Labels & Titles */
.section-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 5vw, 3rem);
    line-height: 1.15;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -0.5rem;
    background: var(--color-primary);
    color: white;
    padding: 1.25rem 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: 2rem;
    font-weight: 700;
    line-height: 1;
}

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

.about-content {
    padding: 1rem 0;
}

.drop-cap {
    font-family: var(--font-display);
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    color: var(--color-primary);
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.feature svg {
    color: var(--color-gold);
    margin: 0 auto;
}

.feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark);
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 45% 1fr;
        gap: 5rem;
    }
}

/* Services Section */
.services-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 2.5rem 0 2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    background: var(--color-cream);
    white-space: nowrap;
    transition: all 0.3s;
    border: 2px solid transparent;
    min-height: 44px;
}

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

.tab-btn:hover:not(.active) {
    background: var(--color-cream-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s;
}

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

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.service-info h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

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

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

.service-time {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Booking Section - CRITICAL MOBILE */
.booking {
    background: var(--color-dark);
    color: white;
}

.booking .section-label,
.booking .section-title {
    color: white;
}

.booking .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.booking-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
}

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
}

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

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.step-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
    text-align: center;
}

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

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,0.15);
    margin: 0 0.25rem;
    position: relative;
    top: -14px;
    max-width: 40px;
}

@media (max-width: 480px) {
    .step-label { display: none; }
    .progress-line { max-width: 20px; }
}

.booking-step {
    display: none;
    animation: fadeUp 0.4s;
}

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

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

/* Service Grid for Booking */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 2rem;
}

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

.service-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-card-inner {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

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

.service-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.service-card-inner h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.service-card-inner .service-desc {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.service-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.service-card-meta .time {
    color: rgba(255,255,255,0.5);
}

.service-card-meta .price {
    color: var(--color-gold);
    font-weight: 700;
}

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

/* Professional Cards */
.pro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-bottom: 2rem;
}

.pro-card {
    cursor: pointer;
}

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

.pro-card-inner {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s;
}

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

.pro-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    background-size: cover;
    background-position: center;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pro-card-inner h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.pro-role {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
}

.pro-badge {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: var(--color-gold);
    color: var(--color-dark);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

/* Calendar */
.datetime-picker {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calendar-wrapper {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.cal-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    min-height: 44px;
}

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

.cal-month {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
}

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

.cal-day-header {
    font-size: 0.6875rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    padding: 0.5rem 0;
    font-weight: 600;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 36px;
    touch-action: manipulation;
}

.cal-day:hover:not(.disabled):not(.selected) {
    background: rgba(255,255,255,0.1);
}

.cal-day.disabled {
    color: rgba(255,255,255,0.2);
    cursor: not-allowed;
}

.cal-day.selected {
    background: var(--color-gold);
    color: var(--color-dark);
    font-weight: 700;
}

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

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

.slots-hint {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255,255,255,0.5);
    padding: 1rem;
}

.time-slot {
    padding: 0.75rem 0.5rem;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    min-height: 44px;
    touch-action: manipulation;
}

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

.time-slot.selected {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
    font-weight: 700;
}

@media (min-width: 640px) {
    .datetime-picker {
        grid-template-columns: 1.2fr 1fr;
    }
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Form */
.form-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
    min-height: 48px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

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

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

.error-msg {
    font-size: 0.75rem;
    color: #e74c3c;
    display: none;
}

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

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

/* Summary */
.summary-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    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.08);
    font-size: 0.9375rem;
}

.summary-row span {
    color: rgba(255,255,255,0.6);
}

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

.summary-row.total {
    border-bottom: none;
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--color-gold);
}

.summary-row.total span,
.summary-row.total strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-gold);
}

.booking-alternatives {
    text-align: center;
    margin-bottom: 1.5rem;
}

.booking-alternatives p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}

.booking-alternatives .btn {
    margin: 0.25rem;
}

/* Success */
.booking-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
    animation: fadeUp 0.6s;
}

.booking-success.visible {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.booking-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.booking-success p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.success-details {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.success-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

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

/* Step Actions */
.step-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.step-actions .btn {
    flex: 1;
    min-height: 52px;
    font-size: 1rem;
}

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

.team-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s, box-shadow 0.4s;
}

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

.team-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

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

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    margin-bottom: 0.25rem;
}

.team-role {
    display: block;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-info p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.team-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
    transition: color 0.3s;
}

.team-social:hover {
    color: var(--color-gold);
}

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

/* Portfolio Section */
.portfolio-filter {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    background: var(--color-cream);
    transition: all 0.3s;
    min-height: 44px;
}

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

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139,30,63,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.portfolio-tag {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--color-dark);
    font-family: var(--font-display);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.google-reviews {
    text-align: center;
    margin-top: 2.5rem;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}

.google-badge:hover {
    box-shadow: var(--shadow-md);
}

.rating-score {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.rating-stars {
    color: var(--color-gold);
}

.rating-count {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

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

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.product-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light);
    transition: all 0.3s;
    text-align: center;
}

.product-logo:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-4px);
}

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

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

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

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

.faq-item {
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-cream);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    gap: 1rem;
    min-height: 56px;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--color-primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

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

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

/* Contact */
.contact {
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
    color: var(--color-dark);
}

.contact-item p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.contact-item a {
    color: var(--color-primary);
    font-weight: 600;
    transition: color 0.3s;
}

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

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--color-gold);
    color: var(--color-dark);
}

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

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: var(--radius-lg);
}

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

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

.footer-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.footer-logo .logo-sub {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--color-gold);
}

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

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

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

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

.footer-marquee {
    margin-top: 3rem;
    overflow: hidden;
    white-space: nowrap;
}

.footer-marquee span {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12vw;
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    animation: marquee 20s linear infinite;
    line-height: 1;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

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

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

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

/* Magnetic Button Effect (Desktop only) */
@media (min-width: 1024px) {
    .magnetic-btn {
        transition: transform 0.2s;
    }
}

/* Utility */
.hidden {
    display: none !important;
}

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

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

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

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

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

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