/* ========================================
   Contact Us Section Component
   ========================================
   Reusable CTA banner with gradient background.
   Usage: Include modules/contact-us-section.php
   ======================================== */

.contact-us-section {
    width: 100%;
}

.contact-us-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #312d96 0%, #fd0162 100%);
    padding: 42px 20px;
    min-height: 234px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-us-section__inner:hover {
    opacity: 0.9;
}

.contact-us-section__title {
    font-family: 'Futura', 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 35px;
    line-height: 75px;
    color: #fff;
    margin: 0 0 20px 0;
    text-align: center;
}

.contact-us-section__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.contact-us-section__text {
    font-family: 'A-OTF Gothic MB101 Pr6N', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 54px;
    color: #fff;
    text-align: center;
}

.contact-us-section__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 2px solid #fff;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-us-section__arrow svg {
    width: 12px;
    height: auto;
}

/* ========================================
   Responsive - Mobile (375px base)
======================================== */
@media screen and (max-width: 768px) {
    .contact-us-section__inner {
        padding: 34px 20px;
        min-height: 216px;
    }

    .contact-us-section__title {
        font-size: 32px;
        line-height: 50px;
        margin-bottom: 2px;
    }

    .contact-us-section__content {
        flex-direction: column;
        gap: 10px;
    }

    .contact-us-section__text {
        font-size: 18px;
        line-height: 54px;
    }

    .contact-us-section__arrow {
        width: 37px;
        height: 37px;
    }

    .contact-us-section__arrow svg {
        width: 8px;
    }
}
