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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

.logo {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #050505;
    color: #fff;
    overflow-x: hidden;
}

.header {
    width: 100%;
    height: 86px;
    padding: 0 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
}

.logo-name {
    font-family: 'Oswald', sans-serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav a {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav a:hover {
    color: #b72a48;
}

.header-btn {
    padding: 14px 30px;
    background: #7a1029;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(122, 16, 41, 0.55);
    transition: 0.3s;
}

.header-btn:hover {
    background: #9b1b3a;
    transform: translateY(-2px);
}

.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #7a1029,
        transparent
    );
    box-shadow: 0 0 18px rgba(122, 16, 41, 0.7);
    position: relative;
    z-index: 10;
}

.hero {
    min-height: 100vh;
    padding: 80px 120px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(122, 16, 41, 0.32), transparent 16%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.84) 38%, rgba(45, 0, 16, 0.72) 100%),
        radial-gradient(circle at 76% 52%, rgba(122, 16, 41, 0.58), transparent 43%),
        #050505;
}

.hero::before {
    content: "";
    position: absolute;
    right: -10px;
    top: 70px;
    width: 68%;
    height: 88%;
    background: url("images/car.png") no-repeat right center;
    background-size: contain;
    opacity: 1;
    filter:
        brightness(1)
        contrast(1.15)
        drop-shadow(0 0 70px rgba(122, 16, 41, 0.7));
    pointer-events: none;
    z-index: 2;
    animation: carSlideIn 1.2s ease-out forwards;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;

    background: linear-gradient(
        to bottom,
        rgba(5, 5, 5, 0),
        #050505
    );

    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: wineGlow 5s ease-in-out infinite alternate;
}

@keyframes carSlideIn {
    0% {
        transform: translateX(180px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes wineGlow {
    0% {
        transform: translate(0px, 0px) scale(1);
        opacity: 0.85;
    }

    50% {
        transform: translate(-40px, 20px) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translate(-70px, 40px) scale(1.15);
        opacity: 0.9;
    }
}

.hero-content {
    width: 720px;
    position: relative;
    z-index: 4;
    margin-left: 1px;
}

.hero-label {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-size: 17px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 26px;
    opacity: 0.85;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 128px;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.gradient-title {
    background: linear-gradient(
        120deg,
        #ffffff 0%,
        #ffffff 25%,
        #a31438 45%,
        #ffffff 60%,
        #7a1029 80%,
        #ffffff 100%
    );
    background-size: 250% 250%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow:
        0 0 18px rgba(255, 255, 255, 0.18),
        0 0 42px rgba(122, 16, 41, 0.65);
    animation: shineGradient 4s ease-in-out infinite;
}

@keyframes shineGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-description {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.primary-btn,
.secondary-btn {
    text-decoration: none;
    padding: 17px 34px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.primary-btn {
    background: #7a1029;
    color: #fff;
    border: 1px solid #7a1029;
    box-shadow: 0 0 30px rgba(122, 16, 41, 0.6);
}

.primary-btn:hover {
    background: #9b1b3a;
    transform: translateY(-2px);
}

.secondary-btn {
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.secondary-btn:hover {
    border-color: #7a1029;
    color: #f7eee9;
}

.footer {
    padding: 42px 80px;
    background: #030303;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer p {
    color: #cfcfcf;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .header {
        height: auto;
        padding: 18px 24px;
        flex-direction: column;
        gap: 18px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .nav a {
        font-size: 15px;
    }

    .hero {
        padding: 190px 28px 70px;
        text-align: center;
        justify-content: center;
    }

    .hero::before {
        right: 0;
        top: 330px;
        width: 100%;
        height: 45%;
        opacity: 0.45;
        background-position: center;
    }

    .hero-content {
        width: 100%;
        margin-left: 0;
    }

    .hero-label {
        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 74px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer {
        flex-direction: column;
        text-align: center;
        gap: 22px;
        padding: 36px 24px;
    }
}

.about {
    padding: 140px 120px;
    background: #050505;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    left: -100px;
    top: 80px;
    width: 400px;
    height: 400px;

    background: radial-gradient(circle, rgba(122, 16, 41, 0.35), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.section-label {
    font-family: 'Oswald', sans-serif;
    color: #b72a48;
    font-size: 17px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.about-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-card {
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    transition: 0.35s;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(122, 16, 41, 0.7);
    box-shadow: 0 0 35px rgba(122, 16, 41, 0.25);
}

.about-card span {
    font-family: 'Oswald', sans-serif;
    color: #7a1029;
    font-size: 22px;
    font-weight: 700;
}

.about-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin: 10px 0;
}

.about-card p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .about {
        padding: 80px 28px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content h2 {
        font-size: 38px;
    }

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

.services {
    padding: 140px 120px;
    background:
        radial-gradient(circle at 85% 15%, rgba(122, 16, 41, 0.28), transparent 28%),
        #050505;
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7a1029, transparent);
    box-shadow: 0 0 18px rgba(122, 16, 41, 0.7);
}

.services-head {
    max-width: 760px;
    margin-bottom: 60px;
}

.services-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.services-head p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
}

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

.service-card {
    min-height: 390px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: 0.45s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.25)),
        radial-gradient(circle at 85% 85%, rgba(122, 16, 41, 0.4), transparent 45%);
    z-index: 1;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(122, 16, 41, 0);
    box-shadow: inset 0 0 0 rgba(122, 16, 41, 0);
    transition: 0.4s;
    z-index: 2;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.01);
}

.service-card:hover::after {
    border-color: rgba(122, 16, 41, 0.85);
    box-shadow:
        inset 0 0 35px rgba(122, 16, 41, 0.18),
        0 0 35px rgba(122, 16, 41, 0.22);
}

.service-content {
    position: relative;
    z-index: 3;
    min-height: 390px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.service-title span {
    color: #b72a48;
    font-size: 26px;
    text-shadow: 0 0 14px rgba(122, 16, 41, 0.8);
}

.service-title h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    text-transform: uppercase;
}

.service-content p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.6;
}

.service-hover {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(18px);
    transition: 0.45s ease;
}

.service-card:hover .service-hover {
    max-height: 180px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 22px;
}

.tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tags span {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(122, 16, 41, 0.65);
    background: rgba(122, 16, 41, 0.18);
    color: #f7eee9;
    font-size: 13px;
}

.service-hover button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.service-hover button::after {
    content: " →";
    color: #b72a48;
}

.service-hover button:hover {
    color: #b72a48;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 620px;
    padding: 42px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 85% 15%, rgba(122, 16, 41, 0.28), transparent 35%),
        #0b0b0b;
    border: 1px solid rgba(122, 16, 41, 0.6);
    box-shadow: 0 0 55px rgba(122, 16, 41, 0.28);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}

.modal-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    font-size: 17px;
}

.modal-price {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    font-size: 30px;
    margin: 28px 0;
}

@media (max-width: 900px) {
    .services {
        padding: 80px 28px;
    }

    .services-head h2 {
        font-size: 38px;
    }

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

    .service-card,
    .service-content {
        min-height: 360px;
    }
}

.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 20px;
}

.service-modal.active {
    display: flex;
}

.service-modal-content {
    width: 100%;
    max-width: 680px;
    padding: 46px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 10%, rgba(122, 16, 41, 0.35), transparent 35%),
        #080808;
    border: 1px solid rgba(122, 16, 41, 0.65);
    box-shadow: 0 0 60px rgba(122, 16, 41, 0.35);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
}

.service-modal-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-modal-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.7;
}

.service-modal-content ul {
    margin: 26px 0;
    padding-left: 20px;
}

.service-modal-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.modal-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
}

#modalPrice {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    color: #ffffff;
}

.reviews {
    padding: 140px 120px;
    background:
        radial-gradient(circle at 15% 20%, rgba(122, 16, 41, 0.25), transparent 25%),
        #050505;
    position: relative;
}

.reviews::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7a1029, transparent);
    box-shadow: 0 0 18px rgba(122, 16, 41, 0.7);
}

.reviews-head {
    max-width: 760px;
    margin-bottom: 60px;
}

.reviews-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.reviews-head p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: center;
}

.review-card {
    min-height: 310px;
    padding: 34px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 85% 15%, rgba(122, 16, 41, 0.18), transparent 40%),
        rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
    transition: 0.4s;
    opacity: 0.68;
    transform: scale(0.95);
}

.review-card.active,
.review-card:hover {
    opacity: 1;
    transform: scale(1.04);
    border-color: rgba(122, 16, 41, 0.75);
    box-shadow: 0 0 45px rgba(122, 16, 41, 0.28);
}

.stars {
    color: #b72a48;
    font-size: 22px;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.review-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.review-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.review-card span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}

.reviews-carousel {
    display: flex;
    align-items: center;
    gap: 22px;
}

.review-arrow {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    border: 1px solid rgba(122, 16, 41, 0.7);
    background: rgba(122, 16, 41, 0.18);
    color: #ffffff;
    font-size: 38px;
    cursor: pointer;
    transition: 0.3s;
}

.review-arrow:hover {
    background: #7a1029;
    box-shadow: 0 0 25px rgba(122, 16, 41, 0.55);
}

.reviews-slider {
    overflow: hidden;
}

.review-card {
    display: none;
}

.review-card.visible {
    display: block;
}

@media (max-width: 1000px) {
    .reviews-carousel {
        gap: 12px;
    }

    .review-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 30px;
    }
}

@media (max-width: 1000px) {
    .reviews {
        padding: 80px 28px;
    }

    .reviews-head h2 {
        font-size: 38px;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }

    .review-card {
        opacity: 1;
        transform: none;
    }

    .review-card.active,
    .review-card:hover {
        transform: translateY(-5px);
    }
}

.booking {
    padding: 140px 120px;
    background:
        radial-gradient(circle at 85% 20%, rgba(122, 16, 41, 0.28), transparent 30%),
        #050505;
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.booking::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7a1029, transparent);
    box-shadow: 0 0 18px rgba(122, 16, 41, 0.7);
}

.booking-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.booking-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
}

.booking-image {
    margin-top: 34px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(122, 16, 41, 0.45);
    box-shadow: 0 0 35px rgba(122, 16, 41, 0.18);
}

.booking-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

.booking-form {
    padding: 38px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 10%, rgba(122, 16, 41, 0.22), transparent 38%),
        rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 45px rgba(122, 16, 41, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.42);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.booking-form input,
.booking-form select {
    height: 58px;
    padding: 0 18px;
}

.booking-form textarea {
    min-height: 130px;
    padding: 18px;
    resize: none;
    margin-bottom: 22px;
}

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

.booking-form select {
    appearance: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);

    background:
        linear-gradient(45deg, transparent 50%, #ffffff 50%),
        linear-gradient(135deg, #ffffff 50%, transparent 50%),
        rgba(0, 0, 0, 0.42);

    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%,
        0 0;

    background-size:
        6px 6px,
        6px 6px,
        100% 100%;

    background-repeat: no-repeat;
}

.booking-form select option {
    background: #080808;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #7a1029;
    box-shadow: 0 0 18px rgba(122, 16, 41, 0.35);
}

.booking-form .primary-btn {
    border: none;
    text-decoration: none;
    display: inline-block;
}

.header-btn,
.primary-btn {
    text-decoration: none;
}

.form-message {
    margin-top: 18px;
    color: #ffffff;
    font-size: 15px;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .booking {
        padding: 80px 28px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .booking-content h2 {
        font-size: 38px;
    }

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

    .booking-image img {
        height: 220px;
    }
}

.before-after {
    padding: 140px 120px;
    background:
        radial-gradient(circle at 15% 15%, rgba(122, 16, 41, 0.24), transparent 30%),
        #050505;
    position: relative;
}

.before-after::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7a1029, transparent);
    box-shadow: 0 0 18px rgba(122, 16, 41, 0.7);
}

.before-after-head {
    max-width: 760px;
    margin-bottom: 60px;
}

.before-after-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.before-after-head p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
}

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

.compare-card {
    padding: 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 80% 15%, rgba(122, 16, 41, 0.2), transparent 40%),
        rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: 0.35s;
}

.compare-card:hover {
    transform: translateY(-8px);
    border-color: rgba(122, 16, 41, 0.7);
    box-shadow: 0 0 40px rgba(122, 16, 41, 0.25);
}

.compare-box {
    position: relative;
    width: 100%;
    height: 310px;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

.compare-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
}

.after-img {
    width: 100%;
    height: 100%;
}

.compare-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
}

.compare-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 0 18px rgba(122, 16, 41, 0.9);
    z-index: 4;
    transform: translateX(-50%);
}

.compare-line::before {
    content: "↔";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #7a1029;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    font-size: 20px;
    box-shadow: 0 0 25px rgba(122, 16, 41, 0.8);
}

.compare-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    margin-top: 20px;
}

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

    .compare-box {
        height: 420px;
    }
}

@media (max-width: 700px) {
    .before-after {
        padding: 80px 28px;
    }

    .before-after-head h2 {
        font-size: 38px;
    }

    .compare-box {
        height: 280px;
    }
}

.contacts {
    padding: 140px 120px 40px;
    background:
        radial-gradient(circle at 15% 20%, rgba(122, 16, 41, 0.22), transparent 28%),
        #050505;
    position: relative;
}

.contacts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7a1029, transparent);
    box-shadow: 0 0 18px rgba(122, 16, 41, 0.7);
}

.contacts-head {
    max-width: 780px;
    margin-bottom: 60px;
}

.contacts-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contacts-head p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.7;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: stretch;
}

.contacts-info {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 90% 15%, rgba(122, 16, 41, 0.18), transparent 38%),
        rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: 0.35s;
}

.contact-card:hover {
    transform: translateX(8px);
    border-color: rgba(122, 16, 41, 0.65);
    box-shadow: 0 0 35px rgba(122, 16, 41, 0.18);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(122, 16, 41, 0.28);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 22px rgba(122, 16, 41, 0.25);
}

.contact-card span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.contact-card p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.45;
}

.contacts-map {
    min-height: 430px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(122, 16, 41, 0.45);
    box-shadow: 0 0 45px rgba(122, 16, 41, 0.16);
    filter: grayscale(1) contrast(1.08) brightness(0.72);
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contacts-bottom {
    margin-top: 60px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .contacts {
        padding: 80px 28px 34px;
    }

    .contacts-head h2 {
        font-size: 38px;
    }

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

    .contacts-map {
        min-height: 320px;
    }

    .contact-card:hover {
        transform: translateY(-4px);
    }
}

.form-message {
    margin-top: 18px;
    color: #ffffff;
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.5;
}

.booking-form textarea {
    display: block;
    width: 100%;
}

input[type="date"] {
    color-scheme: dark;
}

.form-message {
    margin-top: 18px;
    color: #ff4d6d;
    font-size: 15px;
    line-height: 1.5;
}

.logo,
.logo:link,
.logo:visited,
.logo:hover,
.logo:active,
.logo-name,
.logo-name:link,
.logo-name:visited,
.logo-name:hover,
.logo-name:active {
    text-decoration: none !important;
    color: #ffffff !important;
}

a.secondary-btn,
a.secondary-btn:link,
a.secondary-btn:visited,
a.secondary-btn:hover,
a.secondary-btn:active {
    text-decoration: none !important;
    color: #ffffff;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reviews-slider {
    overflow: visible;
    padding: 25px 0;
}

.reviews-carousel {
    overflow: visible;
}

.review-card.active {
    transform: scale(1.04);
}

.review-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.recommend {
    padding: 120px 80px;
    background:
        radial-gradient(circle at 85% 8%, rgba(122, 16, 41, 0.3), transparent 34%),
        #050505;
    position: relative;
}

.recommend-head {
    max-width: 820px;
    margin-bottom: 50px;
}

.recommend-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.recommend-head p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    line-height: 1.7;
}

.recommend-box {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
}

.recommend-form,
.recommend-result {
    border-radius: 22px;
    padding: 38px;
    min-height: 640px;
    background:
        radial-gradient(circle at 90% 10%, rgba(122, 16, 41, 0.25), transparent 40%),
        rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 45px rgba(122, 16, 41, 0.16);
}

.recommend-form label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 10px;
}

.recommend-form select {
    width: 100%;
    height: 58px;
    margin-bottom: 24px;
    padding: 0 48px 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L8 8.5L15 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat calc(100% - 18px) center,
        rgba(0, 0, 0, 0.42);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.recommend-form select:focus {
    border-color: #7a1029;
    box-shadow: 0 0 18px rgba(122, 16, 41, 0.35);
}

.recommend-form option {
    background: #080808;
    color: #ffffff;
}

.recommend-empty {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recommend-empty-text span,
.result-label {
    display: block;
    font-family: 'Oswald', sans-serif;
    color: #b72a48;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.recommend-result h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.recommend-result p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 17px;
    line-height: 1.7;
}

.recommend-car-card {
    width: 100%;
    height: 330px;
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(122, 16, 41, 0.45);
    box-shadow: 0 0 35px rgba(122, 16, 41, 0.18);
}

.recommend-car-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.recommend-form {
    display: flex;
    flex-direction: column;
}

.recommend-form .primary-btn {
    margin-top: auto;
    width: fit-content;
}

.recommend-result {
    display: flex;
}

.result-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.result-btn {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
}

.scan-line,
.recommend-progress {
    display: none;
}

@media (max-width: 1000px) {
    .recommend {
        padding: 80px 28px;
    }

    .recommend-box {
        grid-template-columns: 1fr;
    }

    .recommend-head h2 {
        font-size: 38px;
    }

    .recommend-car-card {
        height: 240px;
    }
}

.result-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.result-card h3 {
    margin-bottom: 18px;
}

.result-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.result-meta div {
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-meta small {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    margin-bottom: 8px;
}

.result-meta strong {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 30px;
}

.result-tags span {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(122, 16, 41, 0.18);
    border: 1px solid rgba(122, 16, 41, 0.48);
    color: #f7eee9;
    font-size: 13px;
}

.result-btn {
    display: inline-flex;
    width: fit-content;
    margin-top: auto;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .result-meta {
        grid-template-columns: 1fr;
    }
}

.recommend {
    position: relative;
}

.recommend::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #7a1029,
        transparent
    );

    box-shadow: 0 0 18px rgba(122, 16, 41, 0.7);
}

/* ===== SCROLL ANIMATIONS ===== */

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

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card.reveal,
.review-card.reveal,
.compare-card.reveal,
.about-card.reveal,
.contact-card.reveal {
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card.reveal.show:hover {
    transform: translateY(-8px) scale(1.01);
}

.review-card.reveal.show.active,
.review-card.reveal.show:hover {
    transform: scale(1.04);
}

.compare-card.reveal.show:hover {
    transform: translateY(-8px);
}

.about-card.reveal.show:hover {
    transform: translateY(-6px);
}

.contact-card.reveal.show:hover {
    transform: translateX(8px);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


.result-note {
    margin-top: 18px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.7;
}

.result-note strong {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
}
