/* css/custom-contact.css */

/* Offset from fixed header */
.contact-section {
    /* Adjust this based on your header's exact height + desired spacing */
    padding-top: 100px;
    padding-bottom: 50px;
    background-color: #f8f9fa;
}

/* Section Title Styling */
.contact-section .section-title {
    font-size: 2.2rem;
    color: #343a40;
}

/* Headings within the contact info */
.contact-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #007bff;
}

/* Paragraph & Link styling */
.contact-section p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 10px;
}

.contact-section a.text-decoration-none {
    color: #495057;
    transition: color 0.3s ease;
}

.contact-section a.text-decoration-none:hover {
    color: #007bff;
}

/* Social Media Icons */
.social-links a {
    color: #495057;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* Buttons for call, WhatsApp, email */
.contact-section .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-right: 0.5rem;
}

.contact-section .btn:hover {
    transform: translateY(-3px);
}

/* Success (Call / WhatsApp) Buttons */
.contact-section .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.contact-section .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Primary (Emails) Buttons */
.contact-section .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.contact-section .btn-primary:hover {
    background-color: #0069d9;
    border-color: #005cbf;
}

/* Responsiveness */
@media (max-width: 768px) {
    .contact-section .section-title {
        font-size: 2rem;
    }
    .contact-section h4 {
        font-size: 1.3rem;
    }
    /* Buttons full width on mobile if needed */
    .contact-section .btn {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .contact-section .section-title {
        font-size: 1.75rem;
    }
    .contact-section h4 {
        font-size: 1.2rem;
    }
    /* Adjust margin/padding if needed */
}

/* Optional: Hide horizontal overflow if any element misbehaves */
body {
    overflow-x: hidden;
}
