* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(ellipse at 30% 40%, #0e131c 0%, #07090e 100%);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ====== Стеклянные карточки ====== */
.glass-card {
    background: rgba(20, 23, 31, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Шапка */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(11, 12, 16, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 3px;
    color: #4fe3d1;
    text-transform: uppercase;
}

.header-addresses {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 20px;
}

.header-addresses span {
    font-size: 11px;
    color: #a0a5b5;
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: #a0a5b5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4fe3d1;
}

/* Главный экран */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: transparent;
}

.hero::before {
    display: none;
}

.badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #4fe3d1;
    border: 1px solid rgba(79, 227, 209, 0.35);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 35px;
    background: rgba(79, 227, 209, 0.05);
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: clamp(44px, 8.5vw, 90px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 35px;
    text-shadow: 0 0 30px rgba(79, 227, 209, 0.3);
}

.hero-subtitle {
    font-size: 16px;
    color: #a0a5b5;
    max-width: 580px;
    line-height: 1.6;
    margin-bottom: 45px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Секции */
.section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    color: #4fe3d1;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

/* О нас */
.section-about .container {
    padding: 50px 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.about-text-highlight {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
}

.about-text-secondary {
    font-size: 15px;
    line-height: 1.7;
    color: #a0a5b5;
}

/* Направления */
.section-directions {
    background: transparent;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);   /* ровная сетка 2x2 */
    gap: 24px;
    margin-top: 20px;
    align-items: stretch;
}

.direction-card {
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.direction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(79, 227, 209, 0.15);
}

.direction-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.direction-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.direction-desc {
    font-size: 14px;
    color: #a0a5b5;
    line-height: 1.6;
    flex: 1;
}

/* Секция соцсетей */
.section-social {
    background: transparent;
    padding: 100px 0;
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.social-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-description {
    font-size: 18px;
    color: #a0a5b5;
    line-height: 1.8;
}

.social-btn {
    align-self: flex-start;
    padding: 16px 32px;
    font-size: 16px;
}

.social-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.social-image-card {
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.social-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(79, 227, 209, 0.2);
}

.image-placeholder {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    background: linear-gradient(45deg, rgba(79, 227, 209, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.placeholder-text {
    color: #626875;
    font-size: 14px;
    font-weight: 500;
    z-index: 1;
}

.image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Секция цен */
.section-pricing {
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
    align-items: stretch;
}

.pricing-card {
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(79, 227, 209, 0.15);
}

.pricing-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 32px;
    font-weight: 800;
    color: #4fe3d1;
    margin-bottom: 15px;
}

.pricing-desc {
    font-size: 14px;
    color: #a0a5b5;
    line-height: 1.6;
}

/* Запись */
.section-booking {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.booking-card {
    width: 100%;
    max-width: 920px;
    padding: 50px 60px;
    text-align: center;
}

.booking-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    color: #4fe3d1;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.booking-subtitle {
    font-size: 15px;
    color: #8c92a3;
    margin-bottom: 40px;
    font-weight: 400;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.input-group {
    flex: 1;
    position: relative;
}

.booking-form input,
.booking-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 24px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.booking-form select {
    color: #626875;
}

.booking-form select option {
    background: #1a1d26;
    color: #ffffff;
}

.booking-form input::placeholder {
    color: #626875;
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: rgba(79, 227, 209, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(79, 227, 209, 0.15);
}

/* Стрелка для select */
.select-wrapper::after {
    content: '';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-top-color: #626875;
    pointer-events: none;
}

.btn-submit {
    background: rgba(79, 227, 209, 0.9);
    backdrop-filter: blur(5px);
    color: #0b0c10;
    border: none;
    border-radius: 50px;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(79, 227, 209, 0.25);
}

.btn-submit:hover {
    background: #3bcbc2;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(79, 227, 209, 0.4);
}

/* Галерея */
.section-gallery {
    background: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 240px;
    gap: 20px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    background: rgba(26, 29, 36, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: all 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.gallery-item:hover img {
    opacity: 1;
}

.item-wide { grid-column: span 2; }
.item-tall { grid-row: span 2; }

/* Кнопки */
.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.btn-outline {
    color: #4fe3d1;
    border: 1px solid rgba(79, 227, 209, 0.5);
    padding: 10px 24px;
    backdrop-filter: blur(5px);
    background: rgba(79, 227, 209, 0.05);
}

.btn-outline:hover {
    background: rgba(79, 227, 209, 0.2);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(79, 227, 209, 0.3);
}

.btn-primary {
    background: rgba(79, 227, 209, 0.9);
    backdrop-filter: blur(10px);
    color: #0b0c10;
    padding: 16px 36px;
    box-shadow: 0 10px 20px rgba(79, 227, 209, 0.2);
}

.btn-primary:hover {
    background: #3bcbc2;
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(79, 227, 209, 0.35);
}

.btn-text {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
    border-radius: 0;
}

.btn-text:hover {
    border-bottom-color: #4fe3d1;
    color: #4fe3d1;
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(79, 227, 209, 0.5);
}

/* Футер */
.footer {
    background: rgba(7, 8, 10, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 70px 0 30px 0;
    margin-top: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 3px;
    color: #4fe3d1;
    margin-bottom: 15px;
}

.footer-desc {
    color: #727885;
    font-size: 14px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-link {
    display: block;
    color: #a0a5b5;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4fe3d1;
}

.footer-text {
    color: #a0a5b5;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.legal-link {
    font-size: 13px;
    line-height: 1.4;
    color: #727885;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #515661;
}

/* Адаптив */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .social-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .social-images {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    .nav, .header-addresses {
        display: none;
    }
    .booking-card {
        padding: 30px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .btn-primary, .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .item-wide, .item-tall {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .social-images {
        grid-template-columns: 1fr;
    }
    .image-placeholder {
        height: 250px;
    }
    .social-btn {
        width: 100%;
        text-align: center;
    }
    .directions-grid {
        grid-template-columns: 1fr;  /* на мобильных один столбец */
    }
}