/* =========================
   HERO SECTION
========================= */

.hero-section{
    width: 100%;
    background: #2fc2cf;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
    padding-top: 100px;
}

.hero-container{
    width: 95%;
}

.hero-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-content-left{
    background: rgba(255,255,255,0.2);
    width: 50%;
    padding: 30px;
    border-radius: 25px;
}

.hearo-header{
    font-size: 52px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
}

.hero-header-special{
    color: #123b73;
}

.hero-text{
    margin-top: 30px;
}

.hero-text p{
    font-size: 28px;
    line-height: 1.6;
    color: #111;
}

.hero-cta{
    margin-top: 35px;
}

.hero-cta-primary button{
    background: #0c91c0;
    border: none;
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.hero-content-right{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-img{
    width: 100%;
    max-width: 520px;
    height: 260px;
    border-radius: 30px;
    overflow: hidden;
}

.hero-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-microtext{
    margin-top: 18px;
}

.hero-microtext p{
    font-size: 16px;
    font-style: italic;
    color: #1b1b1b;
}


/* =========================
   CONTACT US SECTION
========================= */

.contact-us-section{
    width: 100%;
    background: #0da0c2;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.contact-us-container{
    width: 95%;
}

.contat-us-content{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-us-content-left{
    width: 35%;
    background: rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 35px 30px;
}

.contact-us-header{
    font-size: 52px;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 35px;
}

.contact-us-text p{
    font-size: 25px;
    line-height: 1.8;
    color: #2f2f2f;
}

.reach-out{
    margin-top: 45px;
}

.reach-out p{
    font-size: 22px;
    color: #111;
    margin-bottom: 15px;
}

.reach-out a{
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

.follow-us{
    margin-top: 45px;
    display: flex;
    gap: 20px;
}

.follow-us a{
    font-size: 32px;
    color: #000;
    text-decoration: none;
}


/* =========================
   FORM SECTION
========================= */

.contact-us-content-right{
    flex: 1;
    background: rgba(255,255,255,0.25);
    border-radius: 30px;
    padding: 30px;
}

.contact-us-form form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 25px;
}

.block{
    display: flex;
    flex-direction: column;
}

.contact-us-form label{
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.contact-us-form input{
    width: 100%;
    height: 50px;
    border-radius: 15px;
    border: 1px solid #333;
    padding: 0 15px;
    font-size: 18px;
    outline: none;
    background: #d9e7ea;
}

.contact-us-form textarea{
    grid-column: span 2;
    width: 100%;
    height: 180px;
    border-radius: 18px;
    border: 1px solid #333;
    padding: 18px;
    font-size: 18px;
    resize: none;
    outline: none;
    background: #d9e7ea;
}

.form-cta{
    grid-column: span 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.form-cta button{
    background: #fff;
    color: #17b4d4;
    border: none;
    padding: 14px 35px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-cta button:hover{
    transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 768px){

    .contact-us-form form{
        grid-template-columns: 1fr;
    }

    .contact-us-form textarea{
        grid-column: span 1;
    }

    .form-cta{
        grid-column: span 1;
    }

    .hero-content{
        flex-direction: column-reverse;
    }

    .hero-cta-primary{
        background-color: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 900px){

    .hero-content-left,
    .contact-us-content-left,
    .contact-us-content-right{
        width: 100%;
    }

    .contact-us-form form{
        grid-template-columns: 1fr;
    }

    .contact-us-form textarea{
        grid-column: span 1;
    }

    .hearo-header,
    .contact-us-header{
        font-size: 40px;
    }

    .hero-text p,
    .contact-us-text p{
        font-size: 20px;
    }
}