/* Reset and Base Styles - Animation Strictly Disabled */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: none !important;
    animation: none !important;
}

:root {
    --color-bg-deep: #FFF8E7;       /* Цвет белого песка */
    --color-bg-medium: #E0F7FA;     /* Светло-бирюзовый */
    --color-primary: #0077B6;       /* Насыщенный океанский синий */
    --color-primary-light: #00B4D8; /* Цвет морской волны */
    --color-turquoise: #00B4D8;     /* Бирюзовый акцент */
    --color-turquoise-hover: #0077B6;
    --color-sand: #FFD166;          /* Солнечный желтый */
    --color-accent-orange: #FF6B6B;  /* Коралловый акцент */
    --color-accent-orange-hover: #E05252;
    --color-white: #FFFFFF;
    --color-text-main: #03045E;     /* Темно-синий текст */
    --color-text-muted: #4A3B2A;    /* Глубокий песочно-коричневый для мягкости */
    --font-heading: 'Anybody', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

html {
    font-size: 16px;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-main);
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Containers & Grid layouts */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.max-width-md {
    max-width: 800px;
}

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

.bg-dark-deep {
    background-color: var(--color-bg-deep);
}

.bg-dark-medium {
    background-color: var(--color-bg-medium);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.8rem;
    letter-spacing: -0.01em;
    color: var(--color-text-main);
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* Color classes */
.text-turquoise { color: var(--color-primary); }
.text-orange { color: var(--color-accent-orange); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.08em;
    padding: 16px 36px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
}

.btn-cta {
    background-color: var(--color-accent-orange);
    color: var(--color-white);
}

.btn-cta:hover {
    background-color: var(--color-accent-orange-hover);
}

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

.btn-turquoise:hover {
    background-color: var(--color-turquoise-hover);
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline:hover {
    background-color: #FFFFFF;
    color: var(--color-text-main);
}

.btn-lg {
    padding: 20px 44px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

.orange-glow:hover {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

/* 1. Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 248, 231, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 119, 182, 0.15);
}

.navbar-scrolled {
    background: #FFF8E7;
    box-shadow: 0 4px 20px rgba(3, 4, 94, 0.08);
}

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

.navbar-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

.navbar-menu {
    display: flex;
    gap: 32px;
}

.navbar-link {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    color: var(--color-text-muted);
}

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar-phone {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text-main);
}

.navbar-phone:hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-deep);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-text-main);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-main);
}

.mobile-phone {
    font-size: 18px;
    font-weight: 700;
    margin-top: 16px;
    color: var(--color-text-main);
}

.mobile-cta {
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .navbar-menu, .navbar-phone {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

/* Sticky booking trigger for mobile */
.sticky-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(224, 247, 250, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 119, 182, 0.2);
    transform: translateY(100%);
}

.sticky-booking-bar.visible {
    transform: translateY(0);
}

.sticky-container {
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-text {
    font-weight: 700;
    font-size: 14px;
    color: var(--color-text-main);
}

/* 2. Hero Section - Banner Darkening & White Text & Updated Image */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 24px;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-fallback-img {
    width: 100%;
    height: 100%;
    background-image: url('/staticfiles/7-image-22-07-26-10-01-7-%D0%BA%D0%BE%D0%BF.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Добавлено глубокое затемнение баннерного изображения */
    background: linear-gradient(180deg, rgba(3, 4, 94, 0.82) 0%, rgba(3, 4, 94, 0.94) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 209, 102, 0.25);
    border: 1px solid #FFD166;
    color: #FFD166;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

/* Белый заголовок на затемненном баннере */
.hero-title {
    font-size: 5rem;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 900;
    text-shadow: 0 2px 14px rgba(3, 4, 94, 0.85);
}

/* Текст "своей мечты" в баннере сделан светлее */
.text-gradient {
    background: linear-gradient(135deg, #FFF5D6 0%, #FFB3B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

/* Белый контрастный текст подзаголовка над затемненным баннером */
.hero-subtitle {
    font-size: 1.25rem;
    color: #FFFFFF;
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 8px rgba(3, 4, 94, 0.9);
}

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

.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #FFFFFF;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Static State for Animated Elements */
.animate-fade-in,
.animate-slide-up,
.animate-slide-up-delay,
.animate-slide-up-delay-2,
.animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

/* 3. Section About with Vertical Video on the Left & Bento Grid on the Right */
.about-wrapper {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    align-items: stretch;
}

.about-video-block {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    background-color: var(--color-text-main);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 180, 216, 0.3);
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 9 / 16;
}

.video-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(3, 4, 94, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-play-icon {
    font-size: 28px;
    color: var(--color-sand);
}

.video-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.06);
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bento-icon span {
    font-size: 28px;
}

.card-primary .bento-icon {
    background: #E0F7FA;
    color: var(--color-primary);
}

.card-turquoise .bento-icon {
    background: #FFF3D6;
    color: var(--color-accent-orange);
}

.card-sand .bento-icon {
    background: #FFF8E7;
    color: var(--color-text-muted);
}

.bento-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-text-main);
}

.bento-info p {
    color: var(--color-text-muted);
    font-size: 14px;
}

.card-highlight {
    grid-column: span 3;
    background: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bento-highlight-content {
    max-width: 600px;
}

.highlight-stat {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    color: var(--color-sand);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.bento-highlight-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.bento-highlight-content p {
    color: #E0F7FA;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    .about-video-block {
        min-height: 420px;
        max-width: 360px;
        margin: 0 auto;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-highlight {
        grid-column: span 1;
    }
}

/* 4. Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 180, 216, 0.2);
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.06);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-accent-orange);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.service-content p {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    min-height: 72px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 15px;
}

.service-link span {
    margin-left: 8px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* 5. Locations Comparison */
.locations-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 550px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.location-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 248, 231, 0.95) 0%, rgba(255, 248, 231, 0.65) 60%, rgba(255, 248, 231, 0.25) 100%);
    z-index: 1;
}

.location-body {
    position: relative;
    z-index: 2;
    width: 100%;
}

.location-badge {
    display: inline-block;
    color: var(--color-accent-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.location-body h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--color-text-main);
}

.location-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    margin-bottom: 24px;
}

.location-features {
    list-style: none;
    margin-bottom: 32px;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--color-text-main);
}

.location-features li span {
    color: var(--color-primary);
    font-size: 20px;
}

.location-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-from {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    color: var(--color-text-main);
}

@media (max-width: 1024px) {
    .locations-wrapper {
        grid-template-columns: 1fr;
    }
    .location-box {
        height: 500px;
        padding: 30px;
    }
    .location-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .location-footer .btn {
        width: 100%;
    }
}

/* 6. Gallery Masonry */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(360deg, rgba(3, 4, 94, 0.9) 0%, rgba(3, 4, 94, 0) 100%);
    opacity: 1;
}

.gallery-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.gallery-info p {
    font-size: 12px;
    color: var(--color-sand);
}

.item-wide {
    grid-column: span 2;
}

.item-tall {
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .item-tall {
        grid-row: span 1;
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(3, 4, 94, 0.95);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #E0F7FA;
    padding: 15px 0;
    font-size: 18px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 35px;
    color: #FFF8E7;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* 8. FAQ Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(0, 180, 216, 0.2);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    color: var(--color-text-main);
    text-align: left;
}

.accordion-icon {
    color: var(--color-primary);
}

.accordion-content {
    display: none;
    overflow: hidden;
}

.accordion-content p {
    padding: 0 24px 24px;
    color: var(--color-text-muted);
    font-size: 15px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    display: block;
}

/* 9. Final Form Section */
.form-wrapper {
    background: linear-gradient(135deg, #E0F7FA 0%, #FFF8E7 100%);
    border-radius: 40px;
    padding: 80px;
    border: 1px solid rgba(0, 180, 216, 0.3);
    box-shadow: 0 12px 40px rgba(0, 119, 182, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.form-badge {
    display: inline-block;
    color: var(--color-accent-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.form-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-text-main);
}

.form-desc {
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    margin-right: -12px;
    border: 2px solid var(--color-bg-deep);
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #FFFFFF;
}

.avatar.bg-turquoise {
    background-color: var(--color-primary-light);
}

.avatar.bg-orange {
    background-color: var(--color-accent-orange);
}

.avatar.bg-primary {
    background-color: var(--color-primary);
}

.proof-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-main);
}

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

.form-group {
    position: relative;
}

.form-input, .form-select {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 119, 182, 0.3);
    border-radius: 12px;
    padding: 18px 24px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}

.form-input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.form-input:focus, .form-select:focus {
    background: #FFFFFF;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.2);
}

.form-select option {
    background-color: #FFF8E7;
    color: var(--color-text-main);
}

.form-privacy {
    font-size: 11px;
    color: var(--color-text-muted);
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .form-wrapper {
        padding: 40px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-title {
        font-size: 2.2rem;
    }
}

/* 10. Footer */
.footer {
    background-color: var(--color-text-main);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0 40px;
    color: #FFF8E7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col {
    padding-right: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    display: block;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-desc {
    color: #E0F7FA;
    font-size: 14px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-sand);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #E0F7FA;
}

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

.social-icons {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.social-btn:hover {
    background-color: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
    color: var(--color-white);
}

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

.copyright {
    font-size: 12px;
    color: #E0F7FA;
}

.confidential-link {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .brand-col {
        padding-right: 0;
    }
}

/* Cookie Banner (Mandatory) */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--color-text-main);
    border: 1px solid var(--color-primary-light);
    border-radius: 16px;
    padding: 20px 24px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    font-size: 14px;
    color: #FFF8E7;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--color-sand);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 16px;
    }
    .cookie-container {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-container .btn {
        width: 100%;
    }
}

/* Image Background Mappings */
#it0bhv { background-image: url('https://yakovlev.task.v056.ru/staticfiles/images/stitch_1784707138_7.bin'); }
#ihtw3j { background-image: url('https://yakovlev.task.v056.ru/staticfiles/images/stitch_1784707139_8.bin'); }
#i3bz1e { background-image: url('https://yakovlev.task.v056.ru/staticfiles/images/stitch_1784707141_9.bin'); }
#idt4qc { background-image: url('https://yakovlev.task.v056.ru/staticfiles/images/stitch_1784707139_8.bin'); }
#iwqb5h { background-image: url('https://yakovlev.task.v056.ru/staticfiles/images/stitch_1784707132_1.bin'); }
#iu9ti {
    background-image: url('/staticfiles/7-image-22-07-26-10-01-7-%D0%BA%D0%BE%D0%BF.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}