@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --primary-dark: #1a1a1a;
    --primary-gold: #D4AF37;
    --primary-gold-dark: #B8941F;
    --accent-gold: #F4D03F;
    --accent-bronze: #CD7F32;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --background: #ffffff;
    --background-secondary: #f8f8f8;
    --surface: #ffffff;
    --border: #e5e5e5;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 102, 255, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

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

.header-info {
    flex: 1;
    text-align: center;
}

.opening-hours {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold-dark);
    margin: 0;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(205, 127, 50, 0.1) 100%);
    border-radius: 8px;
    display: inline-block;
}

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

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
}

.main-nav a:hover {
    color: var(--primary-gold);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-bronze) 100%);
    transition: width 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    display: none;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    background: var(--background-secondary);
    color: var(--primary-gold);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.language-switch {
    display: flex;
    gap: 8px;
    background: var(--background-secondary);
    padding: 4px;
    border-radius: 12px;
}

.language-switch button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 14px;
}

.language-switch button:hover {
    color: var(--primary-gold);
}

.language-switch button.active {
    background: white;
    color: var(--primary-gold);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.hero {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('../../img/1.jpg') center/cover no-repeat;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(2px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-cta {
    display: inline-flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary {
    background: var(--primary-gold);
    color: #000000;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    font-weight: 700;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
    background: var(--primary-gold-dark);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-secondary:hover {
    background: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

.services-section {
    padding: 80px 0;
    background: var(--background-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.service-category-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.service-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.service-category-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.service-item-display {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: var(--background-secondary);
    transition: all 0.2s ease;
}

.service-item-display:hover {
    background: rgba(212, 175, 55, 0.08);
}

.service-details h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.service-details p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.service-price-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-gold);
    white-space: nowrap;
}

.info-section {
    padding: 80px 0;
    background: white;
}

.reviews-section {
    padding: 80px 0;
    background: var(--bg-secondary, #f8f8f8);
}

.reviews-section #shapo-widget-61736d5f47b9be02c39d {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(205, 127, 50, 0.15));
    color: var(--primary-gold-dark);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-card {
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-bronze));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.15);
}

.info-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.info-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.booking-section {
    padding: 120px 0;
    background: var(--background-secondary);
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

#booking-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
    padding: 0 24px;
}

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

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

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-step span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    transition: color 0.3s;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-bronze));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

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

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

.progress-step.completed .step-circle::after {
    content: '✓';
    position: absolute;
    font-size: 18px;
}

.form-step {
    display: none;
    animation: slideIn 0.4s ease-out;
}

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

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

.form-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.service-category {
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.category-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
}

.category-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.category-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 13px;
}

.btn-back-category {
    background: white;
    color: var(--text-secondary);
    border: 2px solid var(--border);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.btn-back-category:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.service-category h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-item {
    border: 2px solid var(--border);
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.service-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
    transform: translateX(4px);
}

.service-item.selected {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(205, 127, 50, 0.05));
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.service-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-dark);
}

.service-price {
    font-weight: 800;
    color: var(--primary-gold);
    font-size: 20px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 14px;
}

.add-ons {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.add-on-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin: 8px 0;
    border-radius: 10px;
    transition: background 0.2s;
}

.add-on-item:hover {
    background: var(--background-secondary);
}

.add-on-item input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-gold);
}

.datetime-picker {
    margin: 32px 0;
}

.datetime-picker label {
    display: block;
    margin-bottom: 20px;
}

.datetime-picker label span {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 15px;
}

.datetime-picker input[type="date"] {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.datetime-picker input[type="date"]:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

#time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.time-slot {
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    background: white;
    font-size: 14px;
}

.time-slot:hover:not(.disabled) {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
}

.time-slot.selected {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.time-slot.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: var(--background-secondary);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
}

.form-group label span {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.step-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    justify-content: center;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    max-width: 150px;
}

.btn-primary {
    background: var(--primary-gold);
    color: #000000;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    background: var(--primary-gold-dark);
}

.btn-next {
    background: var(--primary-gold);
    color: #000000;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    background: var(--primary-gold-dark);
}

.btn-back {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-back:hover {
    background: var(--background-secondary);
    transform: translateY(-2px);
    border-color: var(--primary-gold);
}

#booking-summary {
    background: var(--background-secondary);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

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

.summary-item:last-child {
    border-bottom: none;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary-gold);
    margin-top: 16px;
    padding-top: 24px;
    border-top: 2px solid var(--primary-gold);
}

.cancellation-policy {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
    border: 2px solid var(--warning);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.cancellation-policy p {
    color: #92400e;
    font-size: 14px;
    line-height: 1.7;
}

.success-message {
    text-align: center;
    padding: 64px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    max-width: 600px;
    margin: 0 auto;
    animation: scaleIn 0.5s ease-out;
    border: 1px solid var(--border);
}

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

.success-message h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--success);
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 800;
}

.success-message h3::before {
    content: '✓';
    display: block;
    font-size: 64px;
    margin-bottom: 16px;
    color: var(--success);
}

footer {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 800;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--primary-cyan);
}

.footer-section p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .logo {
        order: 1;
        flex: 1;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo img {
        height: 36px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        order: 2;
    }

    .language-switch {
        order: 3;
    }

    .header-info {
        order: 4;
        width: 100%;
        flex: none;
        margin-top: 8px;
    }

    .opening-hours {
        font-size: 12px;
        padding: 6px 12px;
        width: 100%;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-category-card {
        padding: 24px;
    }

    .service-category-card h3 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    #time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .step-buttons {
        flex-direction: column;
    }

    #booking-form {
        padding: 32px 24px;
    }

    .progress-bar {
        gap: 8px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .progress-step span {
        font-size: 11px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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