/* Contact icon styles */
.contact-icon-style {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

/* Cursor pointer style */
.cursor-pointer-style {
    cursor: pointer;
}

/* Phone icon style */
.phone-icon {
    width: 20px;
    height: 20px;
    color: #7B7A7A;
    margin-right: 5px;
}

/* Social media grid */
.social-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: center;
    font-weight: 600;
}

/* Social media icons */
.social-icon img {
    width: 40px;
    height: 40px;
}

/* Map iframe */
.contact-map {
    border: 0;
    width: 100%;
    height: 650px;
}

/* Container padding */
.contact-container {
    padding-top: 15px;
    padding-bottom: 15px;
}

/* Section margin */
.contact-section-margin {
    margin-bottom: 100px;
}

/* Contact now section */
.contact-now {
    margin-top: -20px;
}

/* Peek image modal */
#peekModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}

#peekImg {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    background: #fff;
}

/* Peek image style */
.peek-img {
    height: 1000px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 576px) {
    .peek-img {
        height: 200px; /* เปลี่ยนจาก 50px เป็น 200px เพื่อให้รูปแนวนอนยาวแสดงผลได้ดีขึ้น */
        object-fit: cover;
        width: 100%;
    }
    
    .contact-now {
        margin-top: 0;
    }
    
    .fs-18 {
        font-size: 14px !important;
    }
}