:root {
    --silver: #cfd2d6;
    --silver-light: #e5e7ea;
    --silver-dark: #9fa4a9;
    --text-main: #f2f2f2;
    --text-soft: rgba(255, 255, 255, 0.82);
    --text-smoke: #8c9196;
    --bg-main: #0b0b0c;
    --bg-block: #111214;
    --line-soft: rgba(255, 255, 255, 0.12);
    --line-silver: rgba(207, 210, 214, 0.28);
    --glass: rgba(255, 255, 255, 0.06);
}

/* ========================================
   БАЗА САЙТА
======================================== */

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   CONTAINER 1 / HEADER
   DESKTOP
======================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 28px;
    background: rgba(8, 8, 8, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-silver);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

/* Логотип */
.logo {
    display: flex;
    align-items: center;
    height: 72px;
}

.logo img {
    height: 115px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
    animation: logoAppear 0.8s ease;
}

.logo img:hover {
    transform: translateY(-1px) scale(1.02);
    opacity: 0.96;
    filter: drop-shadow(0 0 8px rgba(207, 210, 214, 0.18));
}

/* Меню */
.menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.menu a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.2px;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--silver);
    transition: width 0.3s ease;
}

.menu a:hover {
    color: var(--silver-light);
}

.menu a:hover::after {
    width: 100%;
}
/* ========================================
   HEADER / LANGUAGE SWITCHER
   DESKTOP
======================================== */

.lang-switcher {
    position: relative;
    margin-left: 10px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    transition: 0.25s ease;
}

.lang-current:hover {
    color: #ffffff;
}

.lang-arrow {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.lang-switcher:hover .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 74px;
    display: flex;
    flex-direction: column;
    padding: 8px;
    border-radius: 12px;
    background: rgba(12, 12, 13, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1200;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: 0.22s ease;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.lang-option.active {
    color: var(--silver-light);
}

/* ========================================
   CONTAINER 1 / HEADER
   TABLET
======================================== */
@media (max-width: 1024px) {
    .header {
        padding: 12px 22px;
    }

    .logo {
        height: 62px;
    }

    .logo img {
        height: 68px;
        max-width: 210px;
    }

    .menu {
        gap: 14px;
    }
    .lang-switcher {
    margin-left: 0;
    padding-left: 10px;
    }

.lang-current {
    font-size: 12px;
    }

.lang-dropdown {
    top: calc(100% + 10px);
    min-width: 70px;
    }

    .menu a {
        font-size: 13px;
    }
    
}

/* ========================================
   CONTAINER 1 / HEADER
   MOBILE
======================================== */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px 16px;
    }

    .logo {
        justify-content: center;
        width: 100%;
        height: auto;
    }

    .logo img {
        height: 56px;
        max-width: 180px;
    }

    .menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 12px;
    }
    .lang-switcher {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 6px;
    }

.lang-current {
    justify-content: center;
    font-size: 12px;
    }   

.lang-dropdown {
    right: 50%;
    transform: translateX(50%) translateY(8px);
    min-width: 82px;
    }

.lang-switcher:hover .lang-dropdown {
    transform: translateX(50%) translateY(0);
    }

    .menu a {
        font-size: 13px;
    }
}

/* ========================================
   КНОПКИ / МЕТАЛЛИЧЕСКИЙ СТИЛЬ
======================================== */

.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(
        145deg,
        #f4f6f8 0%,
        #d8dde2 30%,
        #b9bec4 65%,
        #eef1f4 100%
    );
    color: #111;
    padding: 12px 26px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -120%;
    width: 60%;
    height: 160%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: left 0.7s ease;
    z-index: 0;
}

.btn:hover::before {
    left: 140%;
}

.btn:hover {
    background: linear-gradient(
        145deg,
        #ffffff 0%,
        #e7eaee 35%,
        #cfd4d9 65%,
        #f8f9fb 100%
    );
    transform: translateY(-3px);
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.secondary-btn {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.secondary-btn::before {
    display: none;
}

.secondary-btn:hover {
    background: rgba(207, 210, 214, 0.18);
    color: #ffffff;
    transform: translateY(-2px);
}

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

/* ========================================
   ОБЩИЕ СЕКЦИИ
======================================== */

.section {
    padding: 80px 40px;
}
/* ========================================
   ANCHOR OFFSET FOR STICKY HEADER
======================================== */

#top,
#services,
#why-us,
#companies,
#fleet,
#map,
#booking {
    scroll-margin-top: 130px;
}
@media (max-width: 768px) {
    #top,
    #services,
    #why-us,
    #companies,
    #fleet,
    #map,
    #booking {
        scroll-margin-top: 155px;
    }
}

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

.section-title {
    color: #d7dbe0;
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.06);
}
.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    margin: 14px auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(207, 210, 214, 0.8),
        transparent
    );
}

/* ========================================
   CONTAINER 1 / HERO
   DESKTOP
======================================== */

.hero-slider {
    position: relative;
    min-height: 88vh;
    height: 88vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.78)),
        radial-gradient(circle at 72% 38%, rgba(207, 210, 214, 0.10), transparent 58%);
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 840px;
    padding: 20px 24px;
}

.hero-content h1,
.hero-content p,
.hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h1 {
    margin: 0 0 18px;
    font-size: 46px;
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero-content h1::after {
    content: "";
    display: block;
    width: 64px;
    height: 2px;
    margin: 14px auto 0;
    background: var(--silver);
    opacity: 0.72;
}

.hero-content p {
    max-width: 620px;
    margin: 0 auto 24px;
    font-size: 17px;
    line-height: 1.7;
    color: #f1f1f1;
}

.hero-animate h1 {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.hero-animate p {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

.hero-animate .btn {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    transition-delay: 0.4s;
}

/* Стрелки */
.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    font-size: 34px;
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    user-select: none;
    transition: 0.3s ease;
}

.hero-arrow-left {
    left: 24px;
}

.hero-arrow-right {
    right: 24px;
}

.hero-arrow:hover {
    color: var(--silver-light);
    transform: translateY(-50%) scale(1.12);
}

/* ========================================
   CONTAINER 1 / HERO
   TABLET
======================================== */
@media (max-width: 1024px) {
    .hero-slider {
        height: 78vh;
        min-height: 620px;
    }

    .hero-content {
        max-width: 720px;
        padding: 20px;
    }

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

    .hero-content p {
        font-size: 15px;
        max-width: 540px;
    }

    .hero-arrow {
        font-size: 30px;
    }

    .hero-arrow-left {
        left: 18px;
    }

    .hero-arrow-right {
        right: 18px;
    }
}

/* ========================================
   CONTAINER 1 / HERO
   MOBILE
======================================== */
@media (max-width: 768px) {
    .hero-slider {
        height: 72vh;
        min-height: 520px;
    }

    .hero-content {
        max-width: 100%;
        padding: 16px 18px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .hero-content h1::after {
        width: 46px;
        margin-top: 12px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto 18px;
    }

    .hero-arrow {
        font-size: 26px;
    }

    .hero-arrow-left {
        left: 10px;
    }

    .hero-arrow-right {
        right: 10px;
    }
}
/* ========================================
   CONTAINER 2 / SERVICES
   DESKTOP
======================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.service-card {
    position: relative;
    min-height: 360px;
    perspective: 1200px;
    cursor: pointer;
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 360px;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.service-card.flipped .service-card-inner {
    transform: rotateY(180deg);
}



.service-card-front,
.service-card-back {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
}

.service-card-front {
    background-size: cover;
    background-position: center;
    transform: rotateY(0deg);
}

.service-card-back {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.10), transparent 34%),
        linear-gradient(160deg, rgba(18, 18, 20, 0.78), rgba(28, 28, 32, 0.82)),
        rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03),
        0 14px 32px rgba(0, 0, 0, 0.34);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08)),
        linear-gradient(120deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.28));
}

.service-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 26px;
}

.service-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #ffffff;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.service-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 92%;
}

.service-hint {
    display: inline-block;
    margin-top: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-back-content {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-back-content h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    color: #ffffff;
}

.service-back-content p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
    max-width: 95%;
}

.service-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 170px;
    margin-top: auto;
    text-align: center;
}

.services-bottom-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Hint animation only for desktop */
@media (hover: hover) and (pointer: fine) {
    .service-hint {
        opacity: 0;
        transform: translateY(6px);
        transition: all 0.3s ease;
    }

    .service-card:hover .service-hint {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.25s;
    }
}

/* ========================================
   CONTAINER 2 / SERVICES
   TABLET
======================================== */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        margin-top: 32px;
    }

    .service-card,
    .service-card-inner {
        min-height: 320px;
    }

    .service-card-front,
    .service-card-back {
        border-radius: 15px;
    }

    .service-content {
        padding: 22px;
    }

    .service-content h3 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .service-content p {
        font-size: 13px;
        line-height: 1.55;
        max-width: 100%;
    }

    .service-back-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    }

    .service-back-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
    }

    .service-back-btn {
    min-width: 150px;
    }

    .services-bottom-action {
        margin-top: 30px;
    }
}

/* ========================================
   CONTAINER 2 / SERVICES
   MOBILE
======================================== */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .service-card,
    .service-card-inner {
        min-height: 280px;
    }

    .service-card-front,
    .service-card-back {
        border-radius: 14px;
    }

    .service-content {
        padding: 18px;
    }

    .service-content h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .service-content p {
        font-size: 13px;
        line-height: 1.5;
        max-width: 100%;
    }

    .service-hint {
        margin-top: 12px;
        font-size: 10px;
        padding: 5px 9px;
        opacity: 1;
        transform: none;
    }

    .service-card-back {
        padding: 18px;
    }

    .service-back-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.2;
    }

    .service-back-content p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
    max-width: 100%;
    }

    .service-back-btn {
    width: 100%;
    min-width: 100%;
    margin-top: auto;
    }

    .services-bottom-action {
        margin-top: 24px;
    }
}

/* ========================================
   CONTAINER 3 / WHY US
   MINIMAL PREMIUM
======================================== */

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 30px;
    margin-top: 50px;
    text-align: center;
}

.advantage-item {
    padding: 10px 20px;
    transition: transform 0.25s ease;
}

.advantage-item:hover {
    transform: translateY(-4px);
}

.advantage-item i {
    font-size: 34px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.advantage-item:hover i {
    color: #ffffff;
    transform: translateY(-2px);
}

.advantage-item h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.2px;
}

/* ========================================
   TABLET
======================================== */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 20px;
        margin-top: 36px;
    }

    .advantage-item i {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .advantage-item h3 {
        font-size: 17px;
    }
}

/* ========================================
   MOBILE
======================================== */
@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 28px;
    }

    .advantage-item i {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .advantage-item h3 {
        font-size: 16px;
    }
}
/* ========================================
   CONTAINER 4 / CTA BANNER
   DESKTOP
======================================== */

.cta-banner {
    position: relative;
    max-width: 1200px;
    min-height: 420px;
    margin: 80px auto;
    border-radius: 20px;
    overflow: hidden;
    background-image: url('/static/images/cta-banne.jpg');
    background-size: cover;
    background-position: center 80%;
    background-repeat: no-repeat;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.08), transparent 34%);
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.26)),
        linear-gradient(to top, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08));
}

.cta-content {
    position: relative;
    z-index: 2;
    min-height: 420px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 56px 64px;
}

.cta-left {
    max-width: 440px;
}

.cta-left h2 {
    margin: 0 0 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 46px;
    font-weight: 300;
    line-height: 1.08;
    color: #ffffff;
    letter-spacing: 0.6px;
}

.cta-left h2::after {
    content: "";
    display: block;
    width: 58px;
    height: 1px;
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.55);
}

.cta-left .btn {
    margin-top: 16px;
}

.cta-right {
    max-width: 520px;
    margin-left: auto;
    text-align: right;
}

.cta-right p {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    line-height: 1.4;
    font-weight: 500;
    color: #ffffff;
    text-align: right;
}

.cta-signature {
    display: block;
    width: 100%;
    margin-top: 64px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.76);
    text-align: right;
    letter-spacing: 0.5px;
}

/* ========================================
   CONTAINER 4 / CTA BANNER
   TABLET
======================================== */
@media (max-width: 1024px) {
    .cta-banner {
        margin: 60px 24px;
        min-height: 360px;
        border-radius: 18px;
    }

    .cta-content {
        min-height: 360px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 26px;
        padding: 40px 30px;
    }

    .cta-left,
    .cta-right {
        max-width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .cta-left h2 {
        font-size: 38px;
    }

    .cta-right p {
        font-size: 22px;
        text-align: left;
    }

    .cta-signature {
        margin-top: 24px;
        font-size: 24px;
        text-align: left;
    }
}

/* ========================================
   CONTAINER 4 / CTA BANNER
   MOBILE
======================================== */
@media (max-width: 768px) {
    .cta-banner {
        margin: 44px 16px;
        min-height: 300px;
        border-radius: 16px;
    }

    .cta-content {
        min-height: 300px;
        padding: 24px 18px;
        gap: 18px;
    }

    .cta-left h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .cta-left h2::after {
        width: 44px;
        margin-top: 10px;
    }

    .cta-right {
        margin-left: 0;
        text-align: left;
    }

    .cta-right p {
        font-size: 17px;
        line-height: 1.32;
        text-align: left;
    }

    .cta-signature {
        margin-top: 20px;
        font-size: 21px;
        text-align: left;
    }
}/* ========================================
   FLEET PREVIEW GRID
======================================== */

.fleet-subtitle {
    text-align: center;
    max-width: 720px;
    margin: -20px auto 40px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.fleet-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-preview-card {
    position: relative;
    border: none;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fleet-preview-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.42),
        0 0 18px rgba(207, 210, 214, 0.08);
}
.fleet-preview-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.fleet-preview-card:hover img {
    transform: scale(1.03);
}

.fleet-preview-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.08));
    pointer-events: none;
}

.fleet-card-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: #ffffff;
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    text-align: left;
}

/* ========================================
   FLEET MODAL
======================================== */

.fleet-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.fleet-modal.active {
    display: block;
}

.fleet-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
}

.fleet-modal-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 40px auto;
    padding: 28px;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.fleet-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.fleet-modal-title {
    margin: 0 0 22px;
    color: var(--silver);
    font-size: 32px;
    text-align: center;
}

.fleet-modal-main-wrap {
    position: relative;
    margin-bottom: 18px;
}

.fleet-modal-main-image-box {
    border-radius: 14px;
    overflow: hidden;
    background: #111;
}

#fleetModalMainImage {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.fleet-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s ease;
}

.fleet-modal-arrow:hover {
    background: rgba(207, 210, 214, 0.95);
    color: #111;
}

.fleet-modal-prev {
    left: 14px;
}

.fleet-modal-next {
    right: 14px;
}

.fleet-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.fleet-modal-thumb {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    opacity: 0.75;
    transition: all 0.25s ease;
}

.fleet-modal-thumb:hover,
.fleet-modal-thumb.active {
    opacity: 1;
    border-color: var(--silver);
}

.fleet-modal-thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

/* ========================================
   CONTACT + FORM НА ФОНЕ
======================================== */

.contact-booking-section {
    position: relative;
    margin: 0;
    padding: 100px 0;
    background-image: url('/static/images/contac-bg.jpg');
    background-size: cover;
    background-position: center;        
}

.contact-booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, rgba(207, 210, 214, 0.07), transparent 40%);
    pointer-events: none;
}

.contact-booking-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.45)),
        linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
}

.contact-booking-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 40px;
    align-items: start;
}

.contact-info {
    padding-top: 10px;
}

.contact-info h2 {
    margin: 0 0 24px;
    font-size: 42px;
    color: var(--silver);
    font-weight: 500;
}

.contact-text {
    max-width: 360px;
    font-size: 17px;
    line-height: 1.7;
    color: #f1f1f1;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    font-size: 16px;
    color: #f1f1f1;
}

.contact-item span:last-child {
    line-height: 1.5;
}

.contact-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(207, 210, 214, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver);
    flex-shrink: 0;
}

.contact-form-box {
    background: rgba(10, 10, 10, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    max-width: 430px;
    margin-left: auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.form-intro {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.45;
    color: #f3f3f3;
}

.contact-booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-booking-form .form-group {
    margin-bottom: 12px;
}

.contact-booking-form input,
.contact-booking-form textarea,
.contact-booking-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}

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

.contact-booking-form input::placeholder,
.contact-booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.contact-booking-form input:focus,
.contact-booking-form textarea:focus,
.contact-booking-form select:focus {
    border-color: rgba(207, 210, 214, 0.8);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(207, 210, 214, 0.25);
}

.contact-booking-form input[type="date"] {
    color-scheme: dark;
}

/* ========================================
   ЧЕКБОКС
======================================== */

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #f1f1f1;
}

.form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--silver);
}

.form-consent label {
    cursor: pointer;
}

/* ========================================
   СОСТОЯНИЕ ПОСЛЕ УСПЕХА
======================================== */

.hidden-box {
    display: none;
}

.form-success-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeSuccess 0.6s ease;
}

.form-success-message {
    padding: 16px 18px;
    border-radius: 10px;
    background: rgba(207, 210, 214, 0.10);
    border: 1px solid rgba(207, 210, 214, 0.25);
    color: var(--silver-light);
    font-size: 14px;
    line-height: 1.6;
    backdrop-filter: blur(6px);
}

.form-return-note {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

/* ========================================
   FOOTER ВНУТРИ ПОСЛЕДНЕГО БЛОКА
======================================== */

.footer-inside {
    position: relative;
    z-index: 3;
    margin-top: 70px;
    padding: 35px 40px 10px;
    border-top: 1px solid rgba(207, 210, 214, 0.28);
    background: transparent;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.footer-col h3 {
    margin: 0 0 16px;
    color: #d7dbe0;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.footer-col p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.7;
    transition: color 0.25s ease;
}

.footer-col p:hover {
    color: #ffffff;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

/* ========================================
   АНИМАЦИИ
======================================== */

@keyframes logoAppear {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* ========================================
   ADAPTIVE / ПЛАНШЕТ
======================================== */

@media (max-width: 992px) {
    .service-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner {
        margin: 0 20px 60px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        min-height: 360px;
        padding: 40px 30px;
    }

    .cta-left h2 {
        font-size: 42px;
    }

    .cta-right p {
        font-size: 22px;
        text-align: left;
    }

    .fleet-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-preview-card img {
        height: 300px;
    }

    .fleet-modal-content {
        margin: 24px;
    }

    #fleetModalMainImage {
        height: 420px;
    }

    .fleet-modal-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-booking-section {
        margin: 0;
        padding: 80px 0;
    }

    .contact-booking-content {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 30px;
    }

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

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

/* ========================================
   ADAPTIVE / ТЕЛЕФОН
======================================== */

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .menu {
        text-align: center;
    }

    .menu a {
        display: inline-block;
        margin: 8px 10px;
    }

    .hero-slider {
        height: 76vh;
    }

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

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

    .section {
        padding: 60px 20px;
    }

    .service-grid,
    .advantages-grid,
    .fleet-preview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 300px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .cta-banner {
        min-height: 320px;
        margin: 0 20px 50px;
    }

    .cta-content {
        min-height: 320px;
        padding: 30px 22px;
        gap: 24px;
    }

    .cta-left h2 {
        font-size: 32px;
    }

    .cta-right p {
        font-size: 18px;
    }

    .advantage-item i {
        font-size: 38px;
    }

    .advantage-item h3 {
        font-size: 17px;
    }

    .fleet-subtitle {
        margin: -15px auto 30px;
        font-size: 14px;
        padding: 0 10px;
    }

    .fleet-preview-card img {
        height: 260px;
    }

    .fleet-card-label {
        font-size: 20px;
    }

    .fleet-modal-content {
        margin: 14px;
        padding: 18px;
    }

    .fleet-modal-title {
        font-size: 24px;
    }

    #fleetModalMainImage {
        height: 260px;
    }

    .fleet-modal-arrow {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .fleet-modal-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-modal-thumb img {
        height: 76px;
    }

    .contact-booking-section {
        min-height: auto;
        margin: 0;
        padding: 60px 0;
    }

    .contact-booking-content {
        min-height: auto;
        padding: 30px 20px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

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

    .footer-inside {
        margin-top: 50px;
        padding: 25px 20px 15px;
    }

    .footer-grid {
        gap: 25px;
        text-align: center;
    }

    .footer-col h3 {
        font-size: 18px;
    }

    .footer-col p {
        font-size: 14px;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 16px;
    }
}
/* ========================================
   ДОПОЛНИТЕЛЬНАЯ ШЛИФОВКА ПОД TABLET + MOBILE
======================================== */

/* ---------- TABLET ---------- */
@media (max-width: 992px) {
    .header {
        padding: 12px 24px;
    }

    .logo {
        height: 52px;
    }

    .logo img {
        height: 46px;
        max-width: 210px;
    }

    .menu a {
        font-size: 13px;
        margin-left: 14px;
    }

    .hero-slider {
        height: 78vh;
    }

    .hero-content {
        max-width: 680px;
        padding: 20px 24px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 15px;
        max-width: 560px;
    }

    .hero-arrow {
        font-size: 34px;
    }

    .section {
        padding: 70px 24px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .service-grid {
        gap: 22px;
    }

    .service-card {
        min-height: 300px;
    }

    .service-content {
        padding: 22px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .service-content p {
        font-size: 13px;
    }

    .advantages-grid {
        gap: 36px 24px;
    }

    .advantage-item {
        padding: 6px 10px;
    }

    .advantage-item i {
        font-size: 38px;
        margin-bottom: 14px;
    }

    .advantage-item h3 {
        font-size: 16px;
    }

    .cta-banner {
        margin: 0 24px 60px;
        min-height: 350px;
    }

    .cta-content {
        padding: 40px 28px;
        gap: 24px;
    }

    .cta-left,
    .cta-right {
        max-width: 100%;
    }

    .cta-left h2 {
        font-size: 38px;
    }

    .cta-right p {
        font-size: 21px;
        line-height: 1.25;
    }

    .fleet-preview-grid {
        gap: 18px;
    }

    .fleet-preview-card img {
        height: 280px;
    }

    .fleet-card-label {
        font-size: 20px;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .fleet-modal-content {
        margin: 20px;
        padding: 22px;
    }

    #fleetModalMainImage {
        height: 400px;
    }

    .fleet-modal-thumb img {
        height: 82px;
    }

    .contact-booking-content {
        gap: 30px;
        padding: 0 24px;
    }

    .contact-info h2 {
        font-size: 36px;
    }

    .contact-text {
        max-width: 100%;
        font-size: 16px;
    }

    .contact-item {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .contact-form-box {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }

    .footer-inside {
        margin-top: 50px;
        padding: 28px 24px 10px;
    }

    .footer-grid {
        gap: 28px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
    .header {
        padding: 14px 16px 16px;
        gap: 12px;
    }

    .logo {
        justify-content: center;
        width: 100%;
        height: auto;
    }

    .logo img {
        height: 42px;
        max-width: 180px;
    }

    .menu {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 12px;
    }

    .menu a {
        margin-left: 0;
        font-size: 13px;
        padding: 2px 0;
    }

    .hero-slider {
        height: 72vh;
        min-height: 520px;
    }

    .hero-content {
        max-width: 100%;
        padding: 16px 18px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.12;
        margin-bottom: 14px;
    }

    .hero-content h1::after {
        width: 46px;
        margin-top: 12px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto 18px;
    }

    .btn {
        padding: 11px 20px;
        font-size: 12px;
        letter-spacing: 0.8px;
        border-radius: 7px;
    }

    .hero-arrow {
        font-size: 28px;
    }

    .hero-arrow-left {
        left: 8px !important;
    }

    .hero-arrow-right {
        right: 8px !important;
    }

    .section {
        padding: 56px 16px;
    }

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

    .service-grid {
        gap: 16px;
    }

    .service-card {
        min-height: 260px;
        border-radius: 14px;
    }

    .service-content {
        padding: 18px;
    }

    .service-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .service-content p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
        max-width: 100%;
    }

    .advantages-grid {
        gap: 26px;
        margin-top: 30px;
    }

    .advantage-item i {
        font-size: 34px;
        margin-bottom: 12px;
    }

    .advantage-item h3 {
        font-size: 15px;
        line-height: 1.35;
    }

    .cta-banner {
        margin: 0 16px 40px;
        min-height: 300px;
        border-radius: 14px;
    }

    .cta-content {
        min-height: 300px;
        padding: 24px 18px;
        gap: 18px;
    }

    .cta-left h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .cta-left h2::after {
        width: 44px;
        margin-top: 10px;
    }

    .cta-right p {
        font-size: 17px;
        line-height: 1.25;
    }

    .fleet-subtitle {
        font-size: 13px;
        line-height: 1.6;
        margin: -12px auto 24px;
        padding: 0 8px;
    }

    .fleet-preview-grid {
        gap: 14px;
    }

    .fleet-preview-card {
        border-radius: 14px;
    }

    .fleet-preview-card img {
        height: 220px;
    }

    .fleet-card-label {
        font-size: 18px;
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .fleet-modal {
        padding: 0;
    }

    .fleet-modal-content {
        margin: 10px;
        padding: 16px;
        border-radius: 14px;
    }

    .fleet-modal-title {
        font-size: 22px;
        margin-bottom: 16px;
        padding-right: 28px;
    }

    .fleet-modal-close {
        top: 10px;
        right: 12px;
        font-size: 30px;
    }

    #fleetModalMainImage {
        height: 240px;
    }

    .fleet-modal-arrow {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .fleet-modal-prev {
        left: 8px;
    }

    .fleet-modal-next {
        right: 8px;
    }

    .fleet-modal-thumbs {
        gap: 8px;
    }

    .fleet-modal-thumb img {
        height: 68px;
    }

    .contact-booking-section {
        padding: 50px 0;
    }

    .contact-booking-content {
        padding: 0 16px;
        gap: 22px;
    }

    .contact-info h2 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .contact-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .contact-item {
        gap: 12px;
        margin-bottom: 16px;
        font-size: 14px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .contact-form-box {
        padding: 16px;
        border-radius: 12px;
    }

    .form-intro {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .contact-booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-booking-form .form-group {
        margin-bottom: 10px;
    }

    .contact-booking-form input,
    .contact-booking-form textarea,
    .contact-booking-form select {
        padding: 11px 12px;
        font-size: 13px;
        border-radius: 7px;
    }

    .contact-booking-form textarea {
        min-height: 92px;
    }

    .form-consent {
        font-size: 13px;
        gap: 8px;
        margin: 8px 0 14px;
    }

    .form-consent input[type="checkbox"] {
        width: 15px;
        height: 15px;
    }

    .form-success-message {
        font-size: 13px;
        padding: 14px;
        line-height: 1.5;
    }

    .form-return-note {
        font-size: 12px;
    }

    .footer-inside {
        margin-top: 40px;
        padding: 20px 16px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        text-align: center;
    }

    .footer-col h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .footer-col p {
        font-size: 13px;
        line-height: 1.55;
        margin: 5px 0;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 14px;
        font-size: 12px;
    }
}

/* ========================================
   SOFT METALLIC TEXT (PREMIUM)
======================================== */

.hero-content h1,
.section-title,
.contact-info h2,
.footer-col h3,
.fleet-modal-title {
    background: linear-gradient(
        180deg,
        #f4f6f8 0%,
        #d8dde2 35%,
        #a9afb6 55%,
        #eef1f4 75%,
        #9aa0a7 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    text-shadow:
        0 1px 0 rgba(255,255,255,0.05),
        0 0 6px rgba(255,255,255,0.03);
}
/* ========================================
   FLOATING CONTACT BAR / PREMIUM SILVER
======================================== */

.floating-contact-wrap {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 2500;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 10px;
}

/* Кнопка-свертка */
.floating-contact-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 10, 10, 0.55);
    color: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
}

.floating-contact-toggle:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(207, 210, 214, 0.35);
    color: #ffffff;
}

/* Развернутая панель */
.floating-contact-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.50);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transform-origin: bottom right;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.floating-contact-bar.hidden {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    visibility: hidden;
    pointer-events: none;
}

.floating-contact-btn,
.floating-contact-close {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.14),
        rgba(255, 255, 255, 0.05)
    );
    color: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 19px;
    transition: all 0.28s ease;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.floating-contact-btn:hover,
.floating-contact-close:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(207, 210, 214, 0.35);
    color: #ffffff;
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.34),
        0 0 14px rgba(207, 210, 214, 0.08);
}

/* Tooltip */
.floating-contact-btn::after {
    content: attr(data-label);
    position: absolute;
    right: 60px;
    background: rgba(15, 15, 15, 0.92);
    color: #ffffff;
    font-size: 11px;
    padding: 5px 9px;
    border-radius: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.22s ease;
    pointer-events: none;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.08);
}

.floating-contact-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.floating-contact-close i,
.floating-contact-toggle i,
.floating-contact-btn i {
    position: relative;
    z-index: 1;
}

/* Планшет и телефон */
@media (max-width: 768px) {
    .floating-contact-wrap {
        right: 10px;
        bottom: 12px;
        gap: 8px;
    }

    .floating-contact-toggle {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .floating-contact-bar {
        gap: 8px;
        padding: 8px 7px;
        border-radius: 16px;
    }

    .floating-contact-btn,
    .floating-contact-close {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .floating-contact-btn::after {
        display: none;
    }
}
/* ===== FOOTER ===== */

.footer-inside {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.footer-col p {
    margin: 6px 0;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}

.footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
/* ===== FOOTER MOBILE ===== */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* ========================================
   PREMIUM MAP SECTION
======================================== */

.map-premium-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.map-premium-info {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.map-premium-info h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.map-premium-info p {
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-premium-list div {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
    color: var(--text-soft);
}

.map-premium-list div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--silver);
    border-radius: 50%;
}

.map-premium-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-premium-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(207, 210, 214, 0.25);
    pointer-events: none;
}

.map-premium-box iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
    filter: grayscale(100%) brightness(0.85);
    transition: filter 0.5s ease, transform 0.5s ease;
}

/* Hover эффект */
.map-premium-box:hover iframe {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.02);
}

.map-premium-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

/* Tablet */
@media (max-width: 992px) {
    .map-premium-wrap {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .map-premium-box iframe {
        height: 320px;
    }

    .map-premium-info {
        padding: 20px;
    }
}
/* ========================================
   REVEAL ANIMATION ON SCROLL
======================================== */

.reveal-up {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.15s;
}

/* На телефоне чуть мягче */
@media (max-width: 768px) {
    .reveal-up {
        transform: translateY(22px);
        transition:
            opacity 0.7s ease,
            transform 0.7s ease;
    }
}

/* ========================================
   COOKIE BANNER
======================================== */

.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(40px);
    background: rgba(12, 12, 13, 0.75);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    padding: 16px 22px;
    z-index: 5000;
    opacity: 0;
    transition: all 0.4s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-soft);
}

.cookie-content .btn {
    margin: 0;
    padding: 8px 18px;
    font-size: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
/* ========================================
   PRIVACY PAGE
======================================== */

.privacy-top-nav {
    max-width: 900px;
    margin: 40px auto 10px;
    padding: 0 20px;
}
.container h3 {
    margin-top: 28px;
    font-weight: 500;
}

.container p {
    line-height: 1.7;
    opacity: 0.9;
}
/* ========================================
   CONTAINER 6 / CONTACT LINKS
======================================== */

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-link:hover {
    opacity: 0.82;
    transform: translateX(2px);
}

.contact-link span:last-child {
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 1024px) {
    .contact-link {
        gap: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-link {
        gap: 12px;
    }
}