/* CSS for contact page */

.contact-breadcrumb {
    background-image: url('../img/haanji.webp');
}

.rows {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.contact-form-wrap {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    width: 50%;
}

.contact-item a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 500;
}

.ci-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.ci-icon.cyan {
    background: #06b6d4;
}

.ci-icon.orange {
    background: #f97316;
}

.ci-icon.yellow {
    background: #eab308;
}

.ci-icon.teal {
    background: #14b8a6;
}

.follow-us {
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.fb {
    background: #1877f2;
}

.social-btn.ig {
    background: #e4405f;
}

.social-btn.tw {
    background: #1da1f2;
}

.form-group {
    margin-bottom: 16px;
}

.contact-form-wrap h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: border-color .2s;
}

.form-group textarea {
    height: 110px;
    resize: vertical;
}

.btn-send {
    width: 100%;
    background: var(--orange);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    padding: 13px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.mountain {
    text-align: center;
    margin: 88px 0;
}

.mountain .section-tag {
    color: var(--orange);
}

h2.section-title {
    color: var(--black);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        display: inline;
        grid-template-columns: 3fr 2fr;
        /* gap: 40px; */
        margin-top: 39px;
        margin-bottom: 65px;
    }

}

@media (max-width: 767px) {
    .contact-info-card {

        margin-top: 20px;
    }

    .rows {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: column;
    }

    .mountain {
        text-align: center;
        margin: 42px 0;
    }
}

@media (max-width: 567px) {
    h2.section-title {

        font-size: 25px;
    }

    .contact-item {

        width: 100%;
    }

    section#contact {
        margin-bottom: 19px;
    }
}