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

:root {
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --primary-light: #E0F2FE;
    --accent: #10B981;
    --accent-dark: #059669;
    --dark: #0F172A;
    --gray: #64748B;
    --gray-light: #CBD5E1;
    --bg: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--bg);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

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

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-full {
    width: 100%;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 650px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    animation: slide 50s infinite ease-in-out;
}

.hero-slider img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

@keyframes slide {
    0%, 8% { transform: translateX(0); }
    10%, 18% { transform: translateX(-100%); }
    20%, 28% { transform: translateX(-200%); }
    30%, 38% { transform: translateX(-300%); }
    40%, 48% { transform: translateX(-400%); }
    50%, 58% { transform: translateX(-500%); }
    60%, 68% { transform: translateX(-600%); }
    70%, 78% { transform: translateX(-700%); }
    80%, 88% { transform: translateX(-800%); }
    90%, 98% { transform: translateX(-900%); }
    100% { transform: translateX(0); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.5), rgba(16, 185, 129, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
    padding: 0 20px;
}

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

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-content p {
    font-size: 28px;
    margin-bottom: 48px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 16px;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    background: white;
    color: var(--primary);
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-hero-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.aqua-section {
    padding: 120px 0;
    background: var(--bg);
}

.aqua-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 60px;
}

.aqua-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 32px;
    border-radius: 20px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 16px;
}

.small {
    font-size: 14px;
    margin-top: 8px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.price-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
    text-align: center;
}

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

.price-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-badge {
    background: var(--gray-light);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.price-badge.popular {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.price-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.price-per-session {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin: 24px 0;
    text-align: left;
}

.price-features li {
    padding: 12px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    margin-right: 12px;
}

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

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
}

.section-header-with-note {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-with-note .section-title {
    margin-bottom: 8px;
}

.schedule-note {
    font-size: 15px;
    font-weight: 400;
    color: var(--gray);
    margin: 0;
    font-style: italic;
}

.schedule-additional-note {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: var(--gray);
    margin-top: 30px;
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 60px;
}

.schedule-interactive {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: var(--gray);
    border: 2px solid var(--border);
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.schedule-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.schedule-day {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    transition: var(--transition);
    min-width: 300px;
}

.schedule-day:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.schedule-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.schedule-day-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.schedule-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.schedule-time {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    min-width: 120px;
    white-space: nowrap;
}

.schedule-activity {
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.4;
}

.services-section {
    padding: 120px 0;
    background: white;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    max-width: 411px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 551px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-secondary);
    cursor: pointer;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 24px 16px;
    color: var(--dark);
    line-height: 1.3;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    padding: 0 24px;
    font-size: 16px;
    flex: 1;
    text-align: left;
}

.aqua-service-card {
    min-height: 720px;
}

.aqua-service-card .service-image {
    height: 450px;
}

.aqua-service-card p {
    padding: 0 24px 24px;
    min-height: 180px;
}

.service-card-footer {
    padding: 24px;
    margin-top: auto;
}

.btn-book-service {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-book-service:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-vk {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    background: #0077FF;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-align: center;
    text-decoration: none;
}

.btn-vk:hover {
    background: #0066DD;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cabinet-video {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto 60px;
}

.cabinet-video video {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
}

.smart-pedicure-info {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px;
    background: linear-gradient(135deg, #F5F9FC 0%, #E8F4F8 100%);
    border-radius: 24px;
    border-left: 6px solid var(--accent);
    box-shadow: var(--shadow);
}

.smart-pedicure-info h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.smart-pedicure-info p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

.service-phone-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 12px 20px;
    margin: 20px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.service-phone-info {
    padding: 0 24px 12px;
    text-align: center;
    font-size: 16px;
    color: var(--gray);
}

.service-phone-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.service-phone-info a:hover {
    text-decoration: underline;
}

.sauna-pricing-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 50px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
}

.sauna-pricing-section h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 12px;
}

.sauna-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.pricing-row {
    display: flex;
    border-bottom: 2px solid var(--border);
    align-items: stretch;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, #E0F2FE 100%);
}

.pricing-label {
    flex: 0 0 280px;
    padding: 24px;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border-right: 2px solid var(--border);
}

.pricing-slots {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.pricing-slot {
    flex: 1;
    padding: 24px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.pricing-slot:last-child {
    border-right: none;
}

.pricing-slot.wide {
    text-align: center;
}

.time-slot {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.price-slot {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

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

.info-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-icon {
    font-size: 40px;
}

.info-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.sauna-booking-cta {
    text-align: center;
}

.btn-sauna-booking {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-sauna-booking:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.copy-hint {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    font-style: italic;
}

.copy-notification {
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    transition: top 0.3s ease-out;
    max-width: 90%;
}

.copy-notification.show {
    top: 20px;
}

.copy-notification-content {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
}

.copy-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-section {
    padding: 120px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
}

.contact-info h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--dark);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    min-width: 48px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-item p,
.contact-item a {
    font-size: 16px;
    color: var(--gray);
    text-decoration: none;
    line-height: 1.6;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.btn-callback {
    background: var(--accent);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    width: 100%;
}

.btn-callback:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 500px;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer p {
    color: var(--gray-light);
    font-size: 15px;
}

.footer-requisites {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-size: 14px;
}

.footer-requisites p {
    margin: 8px 0;
    color: var(--gray-light);
}

.footer-requisites strong {
    color: white;
}

.copyright {
    margin-top: 16px;
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.modal-content {
    background: white;
    padding: 48px;
    border-radius: 24px;
    max-width: 540px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease-out;
    box-shadow: var(--shadow-xl);
}

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

.modal-close {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 32px;
    color: var(--gray);
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.modal-close:hover {
    background: var(--bg-secondary);
    color: var(--dark);
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--dark);
}

.success-modal {
    text-align: center;
    padding: 60px 48px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
    animation: scaleIn 0.5s ease-out;
}

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

.modal-image-content {
    max-width: 95vw;
    max-height: 95vh;
    position: relative;
}

.modal-image-content img {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 12px;
}

.modal-image-content .modal-close {
    position: absolute;
    right: -40px;
    top: 0;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input,
form select,
form textarea {
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 48px;
    }

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

@media (max-width: 768px) {
    .header {
        position: relative;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .logo {
        order: 1;
        text-align: center;
    }
    
    .header-content .btn-primary {
        display: none;
    }

    .nav {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        padding: 0;
    }
    
    .nav a {
        background: white;
        padding: 10px 20px;
        border-radius: 20px;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        text-decoration: none;
        color: var(--dark);
        font-size: 14px;
    }
    
    .nav a:hover {
        background: var(--bg-secondary);
        box-shadow: var(--shadow);
    }
    
    .nav a::after {
        display: none;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero,
    .btn-hero-outline {
        width: 100%;
    }

    .aqua-section,
    .schedule-section,
    .services-section,
    .cabinet-section,
    .contact-section {
        padding: 80px 0;
    }

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

    .aqua-content h2 {
        font-size: 36px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: scale(1);
    }

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

    .schedule-calendar {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 32px 24px;
    }

    .modal-content h2 {
        font-size: 24px;
    }
    
    .smart-pedicure-info {
        padding: 30px 24px;
        margin: 40px 20px 0;
    }
    
    .smart-pedicure-info h3 {
        font-size: 26px;
    }
    
    .smart-pedicure-info p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .sauna-pricing-section {
        padding: 30px 20px;
        margin: 60px 20px;
    }
    
    .sauna-pricing-section h3 {
        font-size: 26px;
    }
    
    .pricing-table {
        overflow-x: auto;
    }
    
    .pricing-row {
        flex-direction: column;
    }
    
    .pricing-label {
        flex: none;
        border-right: none;
        border-bottom: 2px solid var(--border);
    }
    
    .pricing-slots {
        flex-direction: column;
    }
    
    .pricing-slot {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 16px;
    }
    
    .pricing-slot:last-child {
        border-bottom: none;
    }
    
    .sauna-info-cards {
        grid-template-columns: 1fr;
    }
    
    .btn-sauna-booking {
        font-size: 16px;
        padding: 16px 24px;
    }
    
    .copy-notification {
        top: -200px;
        max-width: 85%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .copy-notification.show {
        top: 10px;
    }
    
    .copy-notification-content {
        font-size: 13px;
        padding: 12px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .copy-notification-content span:last-child {
        line-height: 1.4;
    }
}
