/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* TAG */
.contact-hero .tag {
    font-size: 13px;
    font-weight: 600;
    color: #4F46E5;
}

/* HEADING */
.contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
    color: #1e293b;
}

.contact-hero .highlight {
    color: #22c55e;
}

/* TEXT */
.contact-hero p {
    color: #64748b;
    margin-bottom: 20px;
}

/* INFO BOX */
.contact-info .info-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-box i {
    font-size: 20px;
    color: #4F46E5;
    margin-right: 10px;
}

.info-box strong {
    display: block;
    font-size: 14px;
}

.info-box span {
    font-size: 13px;
    color: #64748b;
}

/* IMAGE */
.hero-img-box {
    position: relative;
}

.hero-img-box img {
    max-width: 100%;
    border-radius: 20px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-info {
        margin-top: 20px;
    }

}