.page-request-quote {
    background-color: #1a1a1a;
}

.contact-section {
    background: #1a1a1a;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    border-top: 20px solid #2b2b2b;
    border-bottom: 20px solid #2b2b2b;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(229, 0, 0, 0.2), transparent 45%),
                radial-gradient(circle at bottom left, rgba(229, 0, 0, 0.12), transparent 55%);
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-content {
    flex: 1;
}

.contact-title {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.contact-description {
    font-family: var(--font-secondary);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 520px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--red-gradient);
    color: var(--pure-white);
    padding: 18px 40px;
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 30px rgba(229, 0, 0, 0.25);
    text-transform: uppercase;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(229, 0, 0, 0.35);
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-button:hover .button-arrow {
    transform: translateX(6px);
}

.contact-decoration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

.contact-decoration-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.45));
    transform: scale(1.25);
    transform-origin: center;
}

@media (max-width: 968px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .contact-decoration {
        min-height: 300px;
    }

    .contact-decoration-image {
        transform: scale(1.12);
    }

    .contact-description {
        margin: 0 auto;
    }
}

@media (max-width: 568px) {
    .contact-section {
        padding: 70px 20px;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .contact-decoration-image {
        max-width: 360px;
        transform: none;
    }
}