/* ============================
   CONTACT PAGE - UPDATED STYLE
   ============================ */

.contact-main {
    background: #f6f7f9;
    padding: 45px 0;
}

/* ===== TOP 3 INFO CARDS ===== */
.info-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 18px 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    height: 100%;
    transition: 0.25s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(0,0,0,0.08);
}

/* Address lines */
.info-line {
    font-size: 20px;
    font-weight: 700;
    line-height: 2.5;
    color: #222;
}

.company-name {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 8px;
}

/* Links in cards */
.info-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 12px 12px;
    border-radius: 12px;
    background: #f6f7f9;
    border: 1px solid #ededed;
    margin-bottom: 12px;
    transition: 0.2s ease;
    color: #111;
}

.info-link:last-child {
    margin-bottom: 0;
}

.info-link:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* Icon */
.info-link i {
    font-size: 18px;
}

/* Different colors */
.info-link.whatsapp { color: #0f8a43; }
.info-link.call { color: #d10000; }
.info-link.email { color: #222; }
.info-link.website { color: #008080; }

/* ===== MAP ===== */
.map-box {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.map-box iframe {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
}

/* ===== FORM CARD ===== */
.form-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.form-card input,
.form-card textarea {
    width: 100%;
    border: 1px solid #dedede;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    background: #fff;
    transition: 0.2s ease;
    margin-bottom: 14px;
}

.form-card textarea {
    resize: none;
    min-height: 160px;
}

.form-card input:focus,
.form-card textarea:focus {
    outline: none;
    border-color: #008080;
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.12);
}

/* Submit */
.btn-submit {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #008080, #006d6f);
    color: #fff;
    transition: 0.25s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #006d6f, #005f56);
    box-shadow: 0 12px 25px rgba(0, 128, 128, 0.20);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .map-box iframe {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .contact-main {
        padding: 35px 0;
    }

    .map-box iframe {
        height: 320px;
    }

    .info-link {
        font-size: 14px;
    }
}
