/* contact.css */


.contact-section {
    padding: 80px 20px;
    background: #111;
    color: #fff;
}

.contact-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-text {
    text-align: center;
    max-width: 600px;
}

.contact-text h2 {
    margin-bottom: 20px;
    text-align: center;
}

.contact-text p {
    margin-bottom: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.500);
}

.btn-contact {
    display: inline-block;
    padding: 12px 24px;
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
}

.btn-contact:hover {
    background-color: #128C7E; /* Darker WhatsApp green */
}

.btn-contact i {
    margin-right: 10px;
}

.contact-details {
    margin-top: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-details p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.contact-details i {
    margin-right: 10px;
    color: var(--gold-yellow);
}

.socials {
    margin-top: 30px;
    text-align: center;
}

.socials h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.socials a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: var(--gold-yellow);
}

.map-section {
    padding: 80px 20px;
    background: #fff;
    color: #111;
    text-align: center;
}

.map-content-wrapper {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.map-section h2 {
    margin-bottom: 30px;
}

.map-container {
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--border-rd-small);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    border: 0;
}

/* Styling for the Flyer Download Section */
.flyer-download-section {
    padding: 80px 0px;
    color: #191919;
}

.flyer-content {
    margin: 0 auto;
}

.flyer-content h2 {
    margin-bottom: 20px;
}

.flyer-content p {
    margin-bottom: 30px;
}

.btn-download {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--gold-yellow);
    color: var(--text-color-black);
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: #e5b800; /* A darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-download i {
    margin-right: 10px;
}

.myWhatsAppButton {
    z-index: 999;
}


/* contactQuery.css */

@media (max-width: 768px) {
    /* Existing responsive styles for contact page sections */

    header nav {
        width: 95%;
    }

    header nav ul li:first-child {
        flex: 2;
    }
    header nav ul li:nth-of-type(2),
    header nav ul li:nth-of-type(3) {
        display: none;
    }
    header nav ul li:nth-of-type(4) {
        display: inline;
    }
    header nav ul li .fa-bars {
        font-size: 24px !important;
    }


    .contact-section {
        width: 100%;
    }

    .contact-section, .map-section {
        padding: 60px 15px;
    }

    .contact-text h2, .map-section h2 {
        font-size: 32px;
    }
    
    .contact-details {
        align-items: center;
    }

    .contact-details p {
        text-align: center;
    }
    
    /* New styles for the flyer download section */
    .flyer-download-section {
        padding: 60px 24px;
        width: 100%;
    }

    .flyer-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .flyer-content p {
        font-size: 14px;
    }

    .map-section {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for small mobile screens */
    .btn-download {
        font-size: 16px;
        padding: 10px 20px;
    }
}