/* หน้าติดต่อเรา — เข้าธีม (maroon #4b0708 / ทอง #b78a3f, ฟอนต์ IBM Plex Sans Thai) */

.contact-section-title {
    margin-top: 30px;
    margin-bottom: 6px;
    font-size: 1.5rem;
    color: #b78a3f;
}

.contact-intro {
    max-width: 760px;
    margin: 0 0 22px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.contact-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e8d9bd;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 6px 18px rgba(75, 7, 8, 0.06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(75, 7, 8, 0.14);
}

.contact-card-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(160deg, #fbf3e2 0%, #f0deb9 100%);
    margin-bottom: 4px;
}

.contact-card-icon-wrap-line {
    background: linear-gradient(160deg, #e8fbef 0%, #c9f2d8 100%);
}

.contact-card img.contact-card-icon {
    width: 30px;
    height: 30px;
}

.contact-card h3 {
    margin: 0;
    font-size: 17px;
    color: #4b0708;
}

.contact-card p,
.contact-card address {
    margin: 0;
    color: #333;
    font-size: 14.5px;
    line-height: 1.6;
    font-style: normal;
}

.contact-card a {
    color: #333;
    text-decoration: none;
}

.contact-card a:hover {
    color: #b78a3f;
}

.contact-card-link {
    margin-top: 2px;
    font-size: 13px;
    font-weight: 600;
    color: #b78a3f !important;
}

.contact-card-line {
    background: linear-gradient(180deg, #fff 0%, #f7f1e3 100%);
    border-color: #e1b56e;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 10px 22px;
    background: #4b0708;
    color: #fff !important;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background .15s ease, transform .15s ease;
}

.contact-cta-btn:hover {
    background: #6c1012;
    transform: translateY(-2px);
    color: #fff !important;
}

.contact-map-wrap {
    width: 100%;
    margin-top: 4px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(75, 7, 8, 0.08);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.contact-directions-row {
    text-align: center;
    margin-top: 18px;
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map-wrap iframe { height: 300px; }
}
