/* ========================================
            CONTACT INFO
======================================== */

.contact-info {
    padding: 120px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

.contact-card {
    position: relative;
    overflow: hidden;

    height: 100%;

    background: #fff;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .04);

    transition: all .35s ease;
}

/* เส้นสีทองด้านบน */
.contact-card::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #c9a227;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.contact-card i {
    font-size: 2.3rem;
    color: #c9a227;
    margin-bottom: 20px;

    transition: .3s ease;
}

.contact-card:hover i {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #0b1f4d;
}

.contact-card p {
    color: #6b7280;
    line-height: 1.8;
}



/* ========================================
                MAP
======================================== */

.contact-map {
    padding: 120px 0;
    background: #ffffff;
}

.map-card {
    max-width: 1200px;
    margin: 0 auto;

    overflow: hidden;
    border-radius: 24px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.map-card iframe {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
}

.contact-card a {
    color: inherit;
    text-decoration: none;
}

.contact-card a:hover {
    color: #c9a227;
}

/* ========================================
            SECTION HEADING
======================================== */

.contact-heading {
    text-align: center;
    margin-bottom: 60px;
}

.contact-heading span {
    display: inline-block;
    color: #c9a227;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contact-heading h2 {
    font-size: 3rem;
    color: #0b1f4d;
    margin-bottom: 15px;
}

.contact-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #6b7280;
    line-height: 1.8;
}



/* ========================================
              RESPONSIVE
======================================== */

@media (max-width: 1024px) {

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-heading h2 {
        font-size: 2rem;
    }

    .map-card iframe {
        height: 350px;
    }

}