/* =========================================
   CONTACT HERO UPDATED
========================================= */

.contact-hero {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* TAG */
.contact-tag {
    font-size: 13px;
    font-weight: 600;
    color: #4F46E5;
    letter-spacing: 1px;
}

/* HEADING */
.contact-hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin: 10px 0;
    color: #1e293b;
}

.contact-hero h1 span {
    color: #22c55e;
}

/* TEXT */
.contact-hero p {
    color: #64748b;
    margin-bottom: 25px;
    max-width: 500px;
}

/* CONTACT INFO */
.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item .icon {
    width: 45px;
    height: 45px;
    background: #e0e7ff;
    color: #4F46E5;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    margin-right: 12px;
}

.info-item h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.info-item small {
    color: #64748b;
    font-size: 12px;
}

/* IMAGE SIDE */
.hero-image {
    position: relative;
    display: inline-block;
}

/* BACKGROUND SHAPE */
.hero-image .shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #4F46E5;
    border-radius: 40% 60% 60% 40%;
    top: 20px;
    left: 20px;
    z-index: -1;
}

.hero-image img {
    border-radius: 20px;
    max-width: 100%;
}

/* RESPONSIVE */
@media(max-width:768px){

    .contact-hero {
        padding: 60px 0;
        text-align: center;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-info {
        justify-content: center;
    }

    .info-item {
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }

}

/* =========================================
   FEATURE STRIP
========================================= */

.feature-strip {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.feature-box {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ITEM */
.feature-item {
    text-align: center;
    padding: 10px;
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* ICON */
.feature-item .icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 22px;
}

/* COLORS */
.icon.blue {
    background: #e0e7ff;
    color: #4F46E5;
}

.icon.green {
    background: #dcfce7;
    color: #16a34a;
}

.icon.purple {
    background: #ede9fe;
    color: #7c3aed;
}

.icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

/* TEXT */
.feature-item h6 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.feature-item p {
    font-size: 13px;
    color: #64748b;
}

/* RESPONSIVE */
@media(max-width:768px){

    .feature-strip {
        margin-top: 20px;
    }

}