/* HERO */
.contact-hero {
    background: #f7f9f8;
    padding: 100px 0;
    text-align: center;
}

.contact-hero .tag {
    color: #2c9c7b;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
}

.contact-hero h1 {
    font-size: 36px;
    font-weight: 700;
}

.contact-hero .subtext {
    color: #6c757d;
    max-width: 600px;
    margin: 15px auto 0;
    font-size: 14px;
}
@media (max-width: 768px) {

    .contact-hero {
        padding: 60px 15px;
    }

    .contact-hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .contact-hero p {
        font-size: 14px;
        padding: 0 10px;
    }

    .contact-hero .process-tag,
    .contact-hero .contact-tag {
        font-size: 12px;
        letter-spacing: 1px;
    }

}

/* CONTACT */
.contact-section {
    padding: 80px 0;
}

.contact-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-text {
    color: #6c757d;
    margin-bottom: 30px;
}

/* INFO */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    background: #eaf5f2;
    color: #2c9c7b;
    padding: 12px;
    border-radius: 10px;
}

.info-item span {
    font-size: 13px;
    color: #888;
}

.info-item p {
    margin: 0;
    font-weight: 500;
}

/* FORM */
.contact-form-box {
    background: #f7f9f8;
    padding: 30px;
    border-radius: 15px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: #2c9c7b;
    box-shadow: none;
}

/* BUTTON */
.contact-btn {
    background: #2c9c7b;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #238a6b;
}






