:root {
    --color-1: rgb(7, 60, 96);
    --color-2: rgb(7, 60, 96, 0.8);
    --color-3: #666666;
    --color-4: rgb(247, 249, 252);
    --color-5: rgb(247, 249, 252, 0.6);
    --color-6: #FFFFFF;
    --radius: 12px;

    /* Art Deco Color Palette - Elegant & Sophisticated */
    --gold-1: #D4AF37;
    --gold-2: #F4D03F;
    --gold-3: #C9A961;
    --gold-4: #FFD700;
    --gold-5: #FFA500;
    --black-1: #1a1a1a;
    --black-2: #2d2d2d;
    --black-3: #404040;
    --cream-1: #f5f5dc;
    --cream-2: #fafaf0;
    --ivory-1: #fffff0;
    --silver-1: #c0c0c0;
    --silver-2: #e8e8e8;
    --navy-1: #1e3a5f;
    --navy-2: #2c4a6f;

    /* Art Deco Gradients */
    --gradient-artdeco: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    --gradient-luxury: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #404040 100%);
    --gradient-elegant: linear-gradient(135deg, #1e3a5f 0%, #2c4a6f 50%, #1a1a1a 100%);
    --gradient-gold-rich: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFA500 100%);
    --gradient-champagne: linear-gradient(135deg, #f5f5dc 0%, #fafaf0 50%, #fffff0 100%);
    --gradient-silver: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);

    /* Premium Shadows */
    --shadow-premium: 0 20px 60px rgba(26, 26, 26, 0.3);
    --shadow-gold: 0 15px 40px rgba(212, 175, 55, 0.4);
    --shadow-luxury: 0 25px 80px rgba(26, 26, 26, 0.4);
    --shadow-glow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

@font-face {
    font-family: 'Calibri';
    src: url('/public/fonts/MyFont.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    user-select: none;
    padding: 0;
    margin: 0;
    font-family: "Calibri", sans-serif;
    font-size: 18px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    padding-top: 70px;
    /* Space for fixed header */
    overflow-x: hidden;
    max-width: 100vw;
    background-color: #e0e0e0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
}

.load-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    background-color: indianred;
    color: white;
    border: none;
}

body {
    min-height: 100vh;
    padding-top: 70px;
    /* Space for fixed header */
    overflow-x: hidden;
    max-width: 100vw;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(7, 60, 96, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header .logo img {
    height: 50px;
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--color-4);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link:hover {
    color: rgba(255, 215, 0, 0.9);
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700 0%, #D4AF37 100%);
    transition: width 0.3s ease;
}

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.burger-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.burger-menu svg {
    width: 24px;
    height: 24px;
    stroke: #FFFFFF;
    transition: stroke 0.3s ease;
}

/* Hide burger menu on desktop */
@media screen and (min-width: 691px) {
    .burger-menu {
        display: none !important;
    }
}

/* Show burger menu only on mobile */
@media screen and (max-width: 690px) {
    .burger-menu {
        display: flex;
    }

    .nav {
        display: none;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-1);
}

h1,
h2 {
    font-weight: 600;
}

h2 {
    font-size: 2rem;
}

p {
    color: var(--color-3);
    hyphens: auto;
    /* автоматичне перенесення */
    -webkit-hyphens: auto;
    /* для Safari */
    -ms-hyphens: auto;
    /* для старих IE */
    word-wrap: break-word;
    /* підстраховка */
}

ul {
    list-style-type: none;
}

a svg,
button svg {
    height: 1rem;
    display: block;
}

.btn {
    cursor: pointer;
    border: none;
    background: none;
    height: 50px;
    padding: 0 30px;
    border-radius: 25px;
    background-color: var(--color-4);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(7, 60, 96, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7, 60, 96, 0.3);
    filter: brightness(1.05);
}

.btn.play {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background-color: var(--color-1);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(260deg);
    }
}

.btn.play:before {
    position: absolute;
    content: "";
    display: block;
    border: 1px dashed var(--color-1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 130%;
    width: 130%;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.btn.v1 {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-4);
}

.btn.v3 {
    background: none;
    border: 2px solid rgba(255, 255, 255, 1);
    color: var(--color-4);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn.v3:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}


.btn.v2 {
    background-color: var(--color-1);
    color: var(--color-4);
    box-shadow: 0 4px 15px rgba(7, 60, 96, 0.3);
}

.btn.v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7, 60, 96, 0.4);
    background: linear-gradient(135deg, rgb(7, 60, 96) 0%, rgb(30, 58, 138) 100%);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center
}

.popup.active {
    display: flex;
}

.popup button {
    position: absolute;
    top: 50px;
    right: 50px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10002;
}

.popup button svg {
    fill: var(--color-4);
}

.popup video {
    width: 80%;
    aspect-ratio: 16 / 9;
}

section:not(.services) {
    overflow: hidden;
}

section:not(.hero) {
    padding: 60px 15px;
}

section.hero {
    height: 100vh;
    background-image: url(/public/images/photo_2025-08-04_11-56-55.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

section.hero .text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 750px;
    gap: 320px;
}

section.hero .text-block hr {
    height: 100%;
}

section.hero .text-block div {
    display: flex;
    align-items: center;
    gap: 20px;
}

section.hero .text-block div h1 {
    color: var(--color-4);
    font-size: 2rem;
    white-space: normal;

}

section.hero .text-block div .logo img {
    height: 100px;
}

section.hero:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-2);
    z-index: -1;
}

.cb {
    margin: auto;
    width: 100%;
    max-width: 1300px;
}

a.to-bottom {
    position: absolute;
    bottom: 50px;
}

section.about {
    position: relative;
    background-color: var(--color-4);
    overflow: hidden;
}

section.about .b2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

section.about .b2 img.design {
    position: absolute;
    height: 80%;
    bottom: -20%;
    right: -70%;
    z-index: -1;
}

section.about .image {
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    height: 100%;
    margin-right: 30px;
    background-image: url(/public/images/photo_2025-08-05_12-19-59.jpg);
    /* background-position: left center; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

section.about:before {
    content: "";
    display: block;
    z-index: 1;
    background: linear-gradient(to left, var(--color-4), var(--color-5), transparent);
    top: 0;
    left: 0;
    height: 100%;
    right: 50%;
    position: absolute;
}

section.about .cb {
    display: grid;
    gap: 60px;
    padding: 0 15px;
    grid-template-columns: repeat(2, 1fr);
}

section.about hr {
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background-color: black;
}

section.about ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.about ul h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

section.services {
    padding: 80px 15px;
}

section.services h2 {
    font-size: 3rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    line-height: 2.5rem;
    position: relative;
}

section.services h2:before {
    content: "ПОСЛУГИ";
    display: block;
    position: absolute;
    color: rgba(7, 60, 96, 0.03);
    top: 50px;
    font-size: 7rem;
    z-index: -1;
    right: 40%;
}

section.services h2 span {
    font-size: 2rem;
}

section.services.cb {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 2fr;
    position: relative;
}

section.services img.design {
    position: absolute;
    height: 220px;
    bottom: 0;
    left: 8%;
}

section.services .b2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

section.services .b2 div {
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

section.services .b2 div:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-1), var(--color-2), transparent);
}

section.services .b2 div:nth-child(3) {
    grid-column: 1 / 3;
}

section.services .b2 div h3 {
    font-size: 1.4rem;
    color: var(--color-4);
}

section.services .b2 div img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: bottom;
    z-index: -2;
}

section.services .b2 div p {
    color: var(--color-4);
    font-size: 0.9rem;
    max-width: 360px
}

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

section.points h2 {
    font-size: 3rem;
}

section.points h2:before {
    content: "НАПРЯМКИ";
    display: block;
    position: absolute;
    color: rgba(7, 60, 96, 0.03);
    font-size: 7rem;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
}

section.points .s-head {
    text-align: center;
    position: relative;
}

section.points .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    padding: 0 15px;
}

section.points .container .b2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

section.points .container .b2 .btn.l {
    align-self: center;
}

section.points .buttons {
    display: flex;
    gap: 20px;
}

section.points .buttons button {
    flex: 1;
}

section.points .b1 {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
}

section.points .list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    display: none;
}

section.points .list.active {
    display: flex;
}

section.points .map {
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: none;
}

section.points .map:first-child {
    transform: rotate(20deg)
}

section.points .map.active {
    display: block;
}

section.points .map img {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    opacity: 1;
    /*    filter: blur(30px);*/
}

section.points svg {
    position: relative;
    z-index: -1;
    height: 100%;
    width: 100%;
}

section.points svg path {
    fill: #e6e6e6;
    stroke: #fff;
}

section.points svg path.active {
    fill: var(--color-1);
}

section.points .list span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 40px;
    background-color: var(--color-4);
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    border: 1px dashed transparent;
}

section.points .list span:hover {
    border-color: var(--color-1);
}

/* Блок информации о городе */
section.points .location-info {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    overflow-y: auto;
}

section.points .location-info.active {
    display: block;
    opacity: 1;
}

/* Крестик для закрытия блока - только на десктопе */
section.points .location-close {
    position: absolute;
    top: 3px;
    right: 3px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

/* Скрываем крестик на мобильных устройствах */
@media screen and (max-width: 960px) {
    section.points .location-close {
        display: none;
    }
}

section.points .location-close:hover {
    background: #f0f0f0;
    color: #333;
}

section.points .location-close:active {
    background: #e0e0e0;
    transform: scale(0.95);
}

/* Адаптивные размеры для блока информации о городе */
@media screen and (max-width: 1919px) {
    section.points .location-info {
        padding: 25px;
    }


    section.points .location-text h3 {
        font-size: 1.6rem;
        margin: 0 0 12px 0;
    }

    section.points .location-text p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1200px) {
    section.points .location-info {
        padding: 25px;
    }

    section.points .location-text h3 {
        font-size: 1.4rem;
    }

    section.points .location-text p {
        font-size: 0.95rem;
    }
}

/* Экраны 1280x720 и подобные */
@media screen and (max-width: 1280px) and (min-width: 961px) {
    section.points .location-info {
        padding: 24px;
    }

    section.points .location-text h3 {
        font-size: 1.35rem;
        margin: 0 0 11px 0;
    }

    section.points .location-text p {
        font-size: 0.92rem;
    }
}

@media screen and (max-width: 960px) {
    section.points .location-info {
        padding: 22px;
    }

    section.points .location-text h3 {
        font-size: 1.3rem;
        margin: 0 0 10px 0;
    }

    section.points .location-text p {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 690px) {
    section.points .location-info {
        padding: 20px;
    }

    section.points .location-text h3 {
        font-size: 1.3rem;
        margin: 0 0 10px 0;
    }

    section.points .location-text p {
        font-size: 0.9rem;
    }
}

/* Мобильные в landscape режиме */
@media screen and (max-width: 1000px) and (orientation: landscape) {
    section.points .location-info {
        transform: translate(-110%, -30%);
        max-width: 45vw;
        width: 400px;
        padding: 18px;
    }

    section.points .location-text h3 {
        font-size: 1.2rem;
        margin: 0 0 8px 0;
    }

    section.points .location-text p {
        font-size: 0.85rem;
    }

    section.points .location-photo {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 480px) {
    section.points .location-info {
        padding: 15px;
    }

    section.points .location-text h3 {
        font-size: 1.2rem;
    }

    section.points .location-text p {
        font-size: 0.85rem;
    }
}

section.points .location-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

section.points .location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image:
        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

section.points .location-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-1);
    margin: 0 0 15px 0;
}

section.points .location-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

section.info {
    background-color: var(--color-4);
    position: relative;
}

section.info .image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    right: 50%;
    margin-right: 30px;
    background-image: url(/public/images/s3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

section.info:before {
    content: "";
    display: block;
    z-index: 1;
    background: linear-gradient(to left, var(--color-4), var(--color-5), transparent);
    top: 0;
    left: 0;
    height: 100%;
    right: 50%;
    position: absolute;
}

section.info h2 {
    font-size: 3rem;
    line-height: 3rem;
}

section.info .cb {
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(2, 1fr);
}

section.info .b2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.info .b2 {
    position: relative;
}

section.info .b2 img.design {
    position: absolute;
    height: 220px;
    right: -20%;
}

section.info .play {
    display: flex;
    align-items: center;
    justify-content: center;
}

section.info .play span {
    position: absolute;
    white-space: nowrap;
    font-size: 0.8rem;
    color: var(--color-1);
    font-weight: bold;
    bottom: -45px;
}

section.info .b2 .btn {
    align-self: flex-start;
    margin-top: 25px;
}

footer {
    padding: 50px 0 0 0;
    background-color: var(--color-1);
    position: relative;
}

footer:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/public/images/footer_map.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}

footer span {
    color: var(--color-4);
    display: block;
    max-width: 300px;
    text-align: center;
}

footer .cb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

footer h2 {
    color: var(--color-4);
    font-size: 3rem;
}

footer form {
    border-radius: var(--radius);
    padding: 30px;
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 900px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
    position: relative;
}

form .fw {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

form .status {
    color: var(--color-4);
    text-align: center;
    padding: 20px;
    display: none;
}

footer form:before,
footer form:after {
    content: "";
    position: absolute;
    height: 30px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    left: 50%;
    transform: translateX(-50%);
}

footer form:before {
    top: -32px;
}

footer form:after {
    bottom: -32px;
}

footer form div {
    flex: 2;
}

footer form button {
    flex: 1;
}

footer .b1 {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    position: relative;
    margin-top: 15px;
}

footer .b1:before {
    content: "";
    display: block;
    width: 2px;
    height: 30px;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.1);
}

footer .b1 div {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

footer .b1 div svg {
    display: block;
    height: 30px;
}

footer .b1 a {
    text-decoration: none;
    color: var(--color-4);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

footer .copy {
    padding: 15px;
    background-color: #0f0f0f;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

footer .copy span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.3;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    padding: 0 20px;
    color: var(--color-4);
}

input {
    outline: none;
    border: none;
    height: 50px;
    border-radius: 25px;
    padding: 0 20px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-4);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Contacts Page Styles */
.contacts-page {
    padding: 100px 15px 60px 15px;
    background: linear-gradient(135deg, #f5f5dc 0%, #fafaf0 30%, #fffff0 60%, #f5f5dc 100%);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

.contacts-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 26, 26, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contacts-page .s-head {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contacts-page .s-head h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 700;
}

.contacts-page .s-head h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold-rich);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.contacts-page .s-head p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.contact-form {
    background-color: var(--color-6);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--color-1);
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-1);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--color-6);
    color: var(--color-1);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-1);
}

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

.contact-info {
    background-color: var(--color-1);
    padding: 40px;
    border-radius: var(--radius);
    color: var(--color-4);
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--color-4);
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-methods a {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--color-4);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-methods a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-methods a svg {
    width: 24px;
    height: 24px;
}

.working-hours h3 {
    margin-bottom: 15px;
    color: var(--color-4);
}

.working-hours p {
    margin-bottom: 8px;
    color: var(--color-4);
}

/* Новые стили для обновленной страницы контактов */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-card {
    background: var(--gradient-elegant);
    padding: 30px;
    border-radius: var(--radius);
    color: var(--color-4);
    box-shadow: var(--shadow-luxury);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(212, 175, 55, 0.5);
    transition: all 0.4s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.05) 100%);
    pointer-events: none;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury), 0 0 30px rgba(212, 175, 55, 0.5);
    border-color: rgba(255, 215, 0, 0.8);
}

.contact-card h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--color-4);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.4s ease;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) translateX(5px);
    box-shadow: 0 8px 25px rgba(255, 187, 0, 0.781);
    border-color: rgba(255, 187, 0, 0.781);
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(255, 187, 0, 0.781);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-4);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--color-4);
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-4);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    max-width: 100%;
}

.contact-value:hover {
    color: rgba(255, 255, 255, 0.8);
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-all;
}

/* Секция социальных сетей */
.social-section {
    background: linear-gradient(135deg, var(--color-6) 0%, var(--cream-2) 100%);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.5);
    position: relative;
    transition: all 0.4s ease;
}

.social-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold), 0 0 30px rgba(212, 175, 55, 0.5);
    border-color: rgba(255, 215, 0, 0.8);
}

.social-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.social-section h3 {
    margin-bottom: 25px;
    color: var(--color-1);
    text-align: center;
    font-size: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    width: 100%;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #00a8e8 100%);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.social-link.viber {
    background: linear-gradient(135deg, #7b519d 0%, #9b6ec4 100%);
    box-shadow: 0 4px 15px rgba(123, 81, 157, 0.3);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 30%, #fcb045 70%, #fca345 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}



/* Стили для страницы контактов */
.contacts-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
}

.contacts-page .cb {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    overflow-x: hidden;
}

.contacts-page .s-head {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contacts-page .s-head h1,
.contacts-page .s-head p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .contacts-page {
        padding: 60px 10px 40px 10px;
    }

    .contacts-page .s-head h1 {
        font-size: 2.5rem;
    }

    .contacts-page .s-head p {
        font-size: 1rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card,
    .social-section {
        padding: 25px;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .contacts-page {
        padding: 50px 0 30px 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
        margin: 0;
    }

    .contacts-page .cb {
        padding: 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        margin: 0;
    }

    .contacts-page .s-head {
        padding: 0 10px;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .contacts-page .s-head h1 {
        font-size: 1.6rem;
    }

    .contacts-page .s-head p {
        font-size: 0.8rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 0 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .contact-card,
    .social-section {
        padding: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .contact-card h3,
    .social-section h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .contact-item {
        padding: 12px;
        margin-bottom: 12px;
        gap: 12px;
        min-height: 55px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .contact-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-label {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }

    .contact-value {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .social-link {
        padding: 8px 12px;
        font-size: 0.85rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Дополнительные стили для очень маленьких экранов */
@media (max-width: 360px) {
    .contacts-page {
        padding: 40px 0 25px 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
        margin: 0;
    }

    .contacts-page .cb {
        padding: 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        margin: 0;
    }

    .contacts-page .s-head {
        padding: 0 5px;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .contacts-page .s-head h1 {
        font-size: 1.4rem;
        line-height: 1.1;
    }

    .contacts-page .s-head p {
        font-size: 0.75rem;
    }

    .contacts-grid {
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        padding: 0 5px;
        margin-left: 0;
        margin-right: 0;
        gap: 8px;
    }

    .contact-card,
    .social-section {
        padding: 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .contact-card h3,
    .social-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .contact-item {
        padding: 10px;
        margin-bottom: 10px;
        gap: 10px;
        min-height: 50px;
        width: 100%;
    }
}

/* Fleet Section Styles */
.fleet-section {
    padding: 80px 0;
    /* background: #ffffff; */
    position: relative;
    overflow: hidden;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: */
    /*     radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%), */
    /*     radial-gradient(circle at 85% 80%, rgba(26, 26, 26, 0.03) 0%, transparent 50%); */
    pointer-events: none;
}

.fleet-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
}

.section-header-image {
    height: 4em;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold-rich);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-3);
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width: 1024px) {
    .section-header p {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
    }
}

.fleet-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.car-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.car-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--color-6) 0%, #f8fafc 100%);
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 80px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.2);
    overflow: hidden;
    position: relative;
}

.car-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.car-icon:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold-1);
}

.car-icon:hover::before {
    opacity: 1;
}

.car-icon.active {
    border-color: var(--gold-1);
    background: var(--gradient-gold-rich);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.car-icon.active::before {
    opacity: 1;
}

.car-icon .icon-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
}

.car-icon .icon-placeholder {
    width: 80px;
    height: 80px;
    background-color: var(--color-4);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.car-icon-placeholder {
    font-size: 2rem;
}

.car-name {
    display: none;
}

.car-info {
    position: relative;
    min-height: 400px;
}

.car-details {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.car-details.active {
    display: flex;
    gap: 40px;
    align-items: center;
}

.car-image {
    flex: 1;
    max-width: 500px;
}

.car-image .main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.car-image .image-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--color-4);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.car-image-placeholder {
    font-size: 4rem;
    color: var(--color-3);
}

.car-description {
    flex: 1;
    padding: 20px;
}

.car-description h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.car-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-3);
}

/* Gallery Styles */
.car-gallery-wrapper {
    flex: 1;
    max-width: 600px;
}

.car-gallery-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.gallery-main-image img,
.gallery-main-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.gallery-navigation .nav-arrow-left {
    order: 1;
    margin-right: auto;
}

.gallery-navigation .nav-arrow-right {
    order: 2;
    margin-left: auto;
}

.gallery-navigation .nav-arrow {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-navigation .nav-arrow:hover {
    background: var(--gold-1);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scroll-snap-type: x mandatory;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: var(--color-4);
    border-radius: 3px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--gold-1);
    border-radius: 3px;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    scroll-snap-align: start;
}

.thumbnail-item img,
.thumbnail-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumbnail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.thumbnail-item.active {
    border-color: var(--gold-1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.thumbnail-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--gold-1);
    border-radius: 5px;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--gold-1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: var(--gold-1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.car-card {
    display: flex;
    flex-direction: column;
    background: var(--color-6);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.car-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.car-card:hover::before {
    opacity: 1;
}

.car-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.car-card:hover .car-card-image img {
    transform: scale(1.1);
}

.car-card-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.car-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.car-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-3);
    margin: 0;
}

.car-details-single {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.car-details-single .car-gallery-wrapper {
    flex: 1;
    max-width: 600px;
}

.car-details-single .car-description {
    flex: 1;
    padding: 20px;
}

.no-cars {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--color-6);
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.no-cars p {
    font-size: 1.2rem;
    color: var(--color-3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 960px) {
    .fleet-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header-image {
        height: 4em;
    }

    .section-header p {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .car-details.active {
        flex-direction: column;
        gap: 30px;
    }

    .car-image,
    .car-gallery-wrapper {
        max-width: 100%;
    }

    .cars-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .car-details-single {
        flex-direction: column;
        gap: 30px;
    }

    .car-details-single .car-gallery-wrapper {
        max-width: 100%;
    }

    .car-description {
        text-align: center;
    }
}

@media screen and (max-width: 690px) {
    .fleet-section {
        padding: 40px 0;
    }

    .fleet-section .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header-image {
        height: 2em;
    }

    .section-header-content {
        gap: 8px;
    }

    .section-header p {
        font-size: 1rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .car-icons {
        gap: 15px;
    }

    .car-icon {
        min-width: 60px;
        padding: 0;
    }

    .car-icon .icon-image,
    .car-icon .icon-placeholder {
        width: 60px;
        height: 60px;
    }

    .car-image .main-image,
    .car-image .image-placeholder {
        height: 250px;
    }

    .car-description h3 {
        font-size: 1.5rem;
    }

    .car-description p {
        font-size: 1rem;
    }

    .cars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .car-card-content {
        padding: 20px;
    }

    .car-card-content h3 {
        font-size: 1.3rem;
    }

    .car-details-single {
        flex-direction: column;
        gap: 25px;
    }

    .gallery-main-image {
        aspect-ratio: 4 / 3;
    }

    .thumbnail-item {
        width: 60px;
        height: 45px;
    }

    .gallery-navigation .nav-arrow {
        width: 36px;
        height: 36px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-close {
        top: -40px;
        font-size: 2.5rem;
    }
}


/* Prices Page Styles */
.prices-section {
    padding: 15px 0 60px 0;
    min-height: calc(100vh - 70px);
    position: relative;
    overflow: hidden;
}

.prices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 25%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 75%, rgba(26, 26, 26, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 196, 0, 0.945);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 196, 0, 0.5);
}

.section-title-image {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.prices-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
}

.prices-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
}

.prices-photo img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(7, 60, 96, 0.3);
}

.prices-content {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-text {
    text-align: center;
    margin: 0 auto 20px;
    padding: 20px;
    max-width: 1400px;
}

.pricing-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-3);
    margin: 0;
}

.pricing-description {
    background: #0C3F5F;
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(7, 60, 96, 0.3);
    border: 2px solid rgba(255, 196, 0, 0.945);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #FFFFFF;
}

.pricing-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.pricing-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(7, 60, 96, 0.4), 0 0 30px rgba(255, 196, 0, 0.3);
    border-color: rgba(255, 196, 0, 1);
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.discounts-section {
    padding: 30px 0;
    color: var(--color-3);
}

.discounts-title {
    font-size: 2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.discounts-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 196, 0, 0.945);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 196, 0, 0.5);
}

.discounts-intro {
    margin-bottom: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discounts-intro p {
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--color-3);
    margin: 0;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.discounts-intro p:last-child {
    margin-bottom: 0;
}

.discounts-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.discount-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0 20px 20px;
}

.discount-icon {
    width: 60px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
}

.discount-content {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--color-3);
    flex: 1;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .prices-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title-image {
        width: 50px;
        margin-bottom: -5px;
    }

    .pricing-text {
        margin-top: -5px;
        margin-bottom: 15px;
        padding: 0;
    }

    .prices-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .prices-photo {
        order: 2;
    }

    .prices-photo img {
        max-height: 400px;
        object-fit: cover;
    }

    .prices-content {
        order: 1;
        min-height: auto;
    }

    .pricing-text p {
        font-size: 0.85rem;
        line-height: 1.4;
        padding: 0 10px;
    }

    .discounts-section {
        padding: 20px 0;
    }

    .discount-icon {
        width: 30px;
        height: auto;
    }

    .discount-content {
        font-size: 0.85rem;
        line-height: 1.4;
        white-space: normal;
    }

    .discount-item {
        gap: 10px;
        padding: 8px 0;
    }

    .discounts-title {
        font-size: 1.5rem;
    }

    .discounts-intro p {
        font-size: 1rem;
        line-height: 1.4;
        white-space: normal;
    }

    .prices-content {
        padding: 0 15px;
    }
}
