/* --- Contact Details (Contact Page) --- */
.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact-map {
    border-radius: 5px;
    overflow: hidden;
}
.contact-map .address-text {
    font-size: 130%;
    font-weight: 600;
}
.contact-map iframe {
    border: 0;
    width: 100%;
    height: 480px;
}
.contact-info .form-intro-text {
    font-size: 130%;
    font-weight: 600;
}
.contact-info .phone-text {
    text-align: center;
    font-size: 180%;
    font-weight: 600;
}
.contact-info p {
    color: var(--text-color);
    margin-bottom: 15px;
}
.contact-links {
    text-align: center;
}
.contact-links a {
    display: inline-block;
    margin-right: 15px;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}
.whatsapp-button {
    background-color: #25D366;
}
.whatsapp-button:hover {
    background-color: #128C7E;
}
.facebook-button {
    background-color: #1877F2;
}
.facebook-button:hover {
    background-color: #0D47A1;
}
.contact-info form { /* General styles for contact form */
    margin-top: 30px;
}
.contact-info label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-color);
}
.contact-info input[type="text"],
.contact-info input[type="email"],
.contact-info input[type="subject"],
.contact-info textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    font-family: var(--body-font);
}
.contact-info input[type="submit"] {
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.contact-info input[type="submit"]:hover {
    background-color: #1e7e34;
}

@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr; /* Stack contact details on smaller screens */
    }
}
