
/* =========================================================
CONTACT HERO
========================================================= */

.contact-hero{
    position:relative;
    overflow:hidden;
    padding: 245px 0 200px;
    background:
    radial-gradient(circle at top right, rgba(66,165,245,.20), transparent 30%),
    linear-gradient(135deg,#071C3C 0%, #0B2D5E 45%, #1565C0 100%);
}

.contact-hero::before{
    content:'';
    position:absolute;
    inset:0;
}

.hero-overlay{
    position:absolute;
    width:700px;
    height:700px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,255,255,.08), transparent 70%);
    top:-250px;
    right:-180px;
    animation:rotateGlow 20s linear infinite;
}

@keyframes rotateGlow{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

.contact-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:950px;
    margin:auto;
}

.hero-tag{
    display:inline-block;
    padding:12px 20px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#7CC8FF;
    font-size:.78rem;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:10px;
}

.contact-hero-content h1{
    font-size:clamp( 1.5rem, 3.2vw, 5.5rem);
    line-height:1.05;
    color:#fff;
    font-weight:700;
    letter-spacing:-3px;
    margin-bottom:30px;
}

.contact-hero-content h1 span{
    color:#7CC8FF;
}

.contact-hero-content p{
    max-width: 1200px;
    margin:auto;
    color:rgba(255,255,255,.75);
    font-size:1.2rem;
    line-height:1.9;
}


.form-control{
    display: block;
    margin: 10px;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1.2rem;
    font-weight: 600;
    height: 60px;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
