/* ============================================
   PARADISE NAIL STUDIO - WEB BOOKING
   ============================================ */

:root {
    --primary: #C9A84C;
    --primary-dark: #A8883A;
    --primary-light: #E8D48A;
    --secondary: #0A0A0A;
    --background: #FAF8F2;
    --surface: #FFFFFF;
    --text: #1A1A1A;
    --text-light: #6B6055;
    --border: #E5DDD0;
    --success: #4CAF50;
    --error: #F44336;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

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

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-sub {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 2px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.lang-switch {
    display: flex;
    gap: 5px;
}

.lang-btn {
    padding: 6px 12px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    color: var(--primary);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #171207 50%, #211A08 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
}

.hero-content {
    text-align: center;
    padding: 60px 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(201, 168, 76, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 2px solid var(--border);
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

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

.btn-arrow {
    transition: transform 0.3s;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary);
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    background: var(--surface);
}

/* Slideshow */
.services-slideshow {
    position: relative;
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.angebot-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #FF6B35, #E91E63);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.service-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.5;
}

.service-duration-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #F5F5F5;
    color: #666;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
}

.angebot-box {
    background: linear-gradient(135deg, #FFF3E0, #FFF8E1);
    border-left: 3px solid #FF9800;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #E65100;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.4;
}

.service-book-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    width: 100%;
}

.service-book-btn:hover {
    background: var(--secondary);
}

.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slide-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--background);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text);
}

.slide-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slide-dots {
    display: flex;
    gap: 8px;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slide-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .service-card {
        flex: 0 0 calc(100% - 0px);
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .service-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* ============================================
   BOOKING
   ============================================ */

.booking {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1507 100%);
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

/* Steps */
.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

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

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--secondary);
    color: var(--surface);
}

.step.completed .step-number {
    background: var(--primary);
    color: var(--secondary);
}

.step span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.step.active span {
    color: var(--text);
    font-weight: 500;
}

/* Booking Steps */
.booking-step {
    min-height: 300px;
}

.booking-step.hidden {
    display: none;
}

.booking-step h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

/* Salon Select */
.salon-select {
    display: grid;
    gap: 15px;
}

.salon-city-group {
    margin-bottom: 10px;
}

.salon-city-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.salon-option {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 8px;
}

.salon-option:hover {
    border-color: var(--primary);
}

.salon-option.selected {
    border-color: var(--secondary);
    background: #F8F8F8;
}

.salon-option input {
    display: none;
}

.salon-option-icon {
    font-size: 1.8rem;
    margin-right: 15px;
}

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

.salon-option-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.salon-option-address {
    font-size: 0.85rem;
    color: var(--text-light);
}

.salon-option-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
    opacity: 0.8;
}

/* Service Select */
.service-select {
    display: grid;
    gap: 15px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.service-option:hover {
    border-color: var(--primary);
}

.service-option.selected {
    border-color: var(--primary);
    background: rgba(201, 168, 76, 0.06);
}

.service-option input {
    display: none;
}

.service-option-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-right: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}

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

.service-option-icon {
    font-size: 2rem;
    margin-right: 15px;
}

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

.service-option-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.service-option-details {
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-option-price {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Date & Time Picker */
.datetime-picker {
    display: grid;
    gap: 30px;
}

.date-picker label,
.time-picker label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.date-picker input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.date-picker input:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.time-slot {
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--primary);
}

.time-slot.selected {
    background: var(--secondary);
    color: var(--surface);
    border-color: var(--secondary);
}

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

/* Customer Form */
.customer-form {
    display: grid;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

/* ============================================
   QR SALON BANNER
   ============================================ */
.qr-salon-banner {
    max-width: 700px;
    margin: 0 auto 24px auto;
}
.qr-salon-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1507 100%);
    border: 2px solid var(--primary);
    border-radius: 14px;
    padding: 18px 24px;
}
.qr-salon-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}
.qr-salon-banner-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.qr-salon-banner-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}
.qr-salon-banner-address {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
}

/* ============================================
   AUTH NAV
   ============================================ */
.auth-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.btn-auth-login {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-auth-login:hover { background: var(--primary); color: var(--secondary); }

.btn-auth-mybooking {
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    padding: 4px 8px;
}
.btn-auth-mybooking:hover { text-decoration: underline; }

.btn-auth-avatar {
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 180px;
    z-index: 999;
    overflow: hidden;
}
.user-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
}
.user-dropdown button:hover { background: #f5f5f5; }

/* ============================================
   AUTH MODAL
   ============================================ */
.auth-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 420px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.auth-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
}
.auth-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}
.auth-tab {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    margin-bottom: -2px;
    transition: all 0.2s;
}
.auth-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* My Bookings item */
.my-booking-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}
.my-booking-item .booking-code-badge {
    font-family: monospace;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 2px;
}
.my-booking-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}
.status-pending  { background: #FFF3E0; color: #E65100; }
.status-confirmed { background: #E8F5E9; color: #2E7D32; }
.status-cancelled { background: #FFEBEE; color: #C62828; }

/* Consent Box */
.consent-box {
    margin-top: 20px;
    padding: 20px;
    background: #FFFDF5;
    border: 1px solid #E5DDD0;
    border-radius: var(--radius);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 14px;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    display: none;
}

.consent-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 5px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: #fff;
}

.consent-label input[type="checkbox"]:checked + .consent-check {
    background: var(--primary);
    border-color: var(--primary);
}

.consent-label input[type="checkbox"]:checked + .consent-check::after {
    content: '✓';
    font-size: 13px;
    color: var(--secondary);
    font-weight: 700;
}

.consent-text {
    font-size: 0.88rem;
    color: var(--text-light);
}

.consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

.consent-required-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 4px;
}

/* Booking Summary */
.booking-summary {
    background: var(--background);
    border-radius: var(--radius);
    padding: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.summary-label {
    color: var(--text-light);
}

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

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Waiting/Pending State */
.waiting-notice {
    background: linear-gradient(135deg, #FFF8E1, #FFECB3);
    border: 2px solid #FFB74D;
    border-radius: var(--radius);
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.waiting-notice .icon {
    font-size: 2rem;
    animation: pulse-warning 1.5s ease infinite;
}

@keyframes pulse-warning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.success-message h3 {
    color: var(--success);
    margin-bottom: 15px;
}

.booking-code {
    background: var(--background);
    padding: 20px;
    border-radius: var(--radius);
    margin: 25px 0;
}

.booking-code strong {
    display: block;
    font-size: 1.5rem;
    margin-top: 10px;
    color: var(--secondary);
    letter-spacing: 3px;
}

/* Booking Nav */
.booking-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    background: var(--surface);
}

.contact-top {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.location-city-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light, #C9A84C);
}

.location-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.location-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.location-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text);
}

.location-address {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 8px;
}

.location-phone {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.location-phone:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--secondary);
    color: var(--surface);
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-company {
    text-align: right;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   LOADING
   ============================================ */

.loading {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(201, 168, 76, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0A0A0A;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(201, 168, 76, 0.2);
    }
    
    .nav.open {
        display: flex;
    }
    
    .nav .lang-switch {
        justify-content: center;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .steps {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .steps::before {
        display: none;
    }
    
    .step {
        width: 30%;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-company {
        text-align: center;
    }
    
    .booking-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .booking-nav .btn {
        width: 100%;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.hidden {
    display: none !important;
}

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

