﻿.contact-section {
    padding: 90px 0;
}

.contact-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

    .contact-section-header span {
        display: inline-block;
        color: #0b8f4d;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .contact-section-header h2 {
        margin-top: 12px;
        font-size: 40px;
        font-weight: 800;
        line-height: 1.2;
        color: #0f172a;
    }

    .contact-section-header p {
        margin-top: 20px;
        color: #666;
        line-height: 1.8;
    }

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .contact-card:hover {
        transform: translateY(-8px);
    }

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0b8f4d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-card-content span {
    color: #0b8f4d;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.contact-card-content h3 {
    margin: 12px 0 18px;
    font-size: 24px;
}

.contact-card-content a {
    color: #222;
    text-decoration: none;
    transition: .3s;
}

    .contact-card-content a:hover {
        color: #0b8f4d;
    }

.contact-card-content p {
    color: #666;
    line-height: 1.8;
}

.contact-empty {
    text-align: center;
    padding: 80px;
    background: #f7f7f7;
    border-radius: 20px;
}

.contact-empty-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0b8f4d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.contact-map-section {
    padding-bottom: 100px;
}

.contact-map-header {
    text-align: center;
    margin-bottom: 40px;
}

    .contact-map-header span {
        display: inline-block;
        color: #0b8f4d;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .contact-map-header h2 {
        margin-top: 12px;
        font-size: 36px;
        font-weight: 800;
        line-height: 1.2;
        color: #0f172a;
    }
    .contact-map-header p {
        margin-top: 18px;
        color: #666;
    }

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

    .contact-map-wrapper iframe {
        width: 100%;
        height: 520px;
        border: 0;
    }

@media (max-width:992px) {

    .contact-card-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:576px) {

    .contact-card-grid {
        grid-template-columns: 1fr;
    }

    .contact-section-header h2 {
        font-size: 30px;
    }

    .contact-map-header h2 {
        font-size: 28px;
    }

    .contact-map-wrapper iframe {
        height: 400px;
    }
}
