/* =========================
   CONTACT HERO
========================= */

.contact-hero {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 0 8%;
    overflow: hidden;

    background:
        radial-gradient(circle at 80% 40%,
            rgba(255, 136, 84, .18),
            transparent 25%),

        radial-gradient(circle at 70% 30%,
            rgba(107, 126, 255, .18),
            transparent 35%),

        linear-gradient(135deg,
            #0d1534 0%,
            #18245a 50%,
            #0f1739 100%);
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    right: -250px;
    top: -250px;
    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 140, 90, .12),
            rgba(106, 124, 255, .08),
            transparent 70%);

    filter: blur(100px);
}

.contact-hero-content {
    flex: 1 1 480px;
    max-width: 620px;
    position: relative;
    z-index: 2;
}

.contact-hero-subtitle {
    color: #ff9560;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-hero-title {
    color: #fff;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 600;
}

.contact-hero-title span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
}

.contact-hero-text {
    margin-top: 25px;
    color: rgba(255, 255, 255, .70);
    font-size: 16px;
    line-height: 1.9;
    max-width: 520px;
}

.contact-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 170px;
    height: 56px;

    margin-top: 35px;

    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;

    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(12px);
    transition: .3s ease;
}

.contact-hero-btn:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .20);
}

/* =========================
   IMAGE SECTION
========================= */

.contact-hero-image {
    flex: 1 1 420px;
    max-width: 560px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-hero-image img {
    width: 100%;
    max-width: 750px;
    object-fit: contain;

    filter:
        drop-shadow(0 0 25px rgba(255, 140, 90, .35)) drop-shadow(0 0 70px rgba(106, 124, 255, .35));

    animation: float 6s ease-in-out infinite;
}

/* Reflection Glow */

.contact-hero-image::after {
    content: '';
    position: absolute;

    width: 500px;
    height: 120px;

    bottom: 40px;

    background:
        radial-gradient(ellipse,
            rgba(255, 140, 90, .25),
            transparent 70%);

    filter: blur(30px);
}

/* Floating Animation */

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px) {

    .contact-hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 100px 25px 60px;
    }

    .contact-hero-title {
        font-size: 48px;
    }

    .contact-hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-content {
        flex: none;
        max-width: 100%;
    }

    .contact-hero-image {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-top: 40px;
    }

    .contact-hero-image img {
        max-width: 450px;
    }
}