/* style/contact.css */

/* Global styles for page-contact scope */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-contact__sub-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__section-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__text-block {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
}

/* Buttons */
.page-contact__btn-primary,
.page-contact__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-contact__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: none;
}

.page-contact__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-contact__btn-secondary {
    background-color: transparent;
    color: #2AD16F; /* A lighter green from the gradient */
    border: 2px solid #2AD16F;
}

.page-contact__btn-secondary:hover {
    background-color: #2AD16F;
    color: #F2FFF6;
}

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px; /* Ensure sufficient height */
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small top padding */
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-contact__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-contact__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
    display: block;
}

.page-contact__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin-top: 60px; /* Push content down slightly from top */
}

.page-contact__main-title {
    font-size: 3.5em;
    color: #F2FFF6;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-contact__hero-description {
    font-size: 1.3em;
    color: #A7D9B8;
    margin-bottom: 40px;
}

.page-contact__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%;
    max-width: 100%; /* Ensure container responsiveness */
    box-sizing: border-box;
}

/* Contact Methods Section */
.page-contact__methods-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green for contrast */
}

.page-contact__method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-contact__method-card {
    background-color: #11271B; /* Card B G */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__method-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-contact__method-card .page-contact__card-title {
    font-size: 1.8em;
    color: #F2FFF6;
    margin-bottom: 15px;
}

.page-contact__method-card .page-contact__card-text {
    color: #A7D9B8;
    margin-bottom: 25px;
    flex-grow: 1; /* Allow text to grow */
}

/* Contact Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-contact__form-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping */
}

.page-contact__form-image {
    flex: 1;
    min-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

.page-contact__contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #11271B; /* Card B G */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__form-group {
    margin-bottom: 20px;
}

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #2E7A4E; /* Border */
    background-color: #08160F; /* Background */
    color: #F2FFF6;
    box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #A7D9B8; /* Text Secondary */
    opacity: 0.7;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    outline: none;
    border-color: #2AD16F;
    box-shadow: 0 0 0 3px rgba(42, 209, 111, 0.3);
}

/* Office Info Section */
.page-contact__info-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-contact__location-details {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.page-contact__address-block {
    flex: 1;
    min-width: 300px;
    background-color: #11271B; /* Card B G */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__map-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__map-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-contact__faq-list {
    margin-top: 40px;
}

.page-contact__faq-item {
    background-color: #11271B; /* Card B G */
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #2E7A4E; /* Border */
    overflow: hidden;
}

.page-contact__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    list-style: none; /* For details/summary */
    -webkit-touch-callout: none; /* Disable callout on iOS */
    -webkit-user-select: none;   /* Disable text selection on iOS */
    -khtml-user-select: none;    /* Disable text selection on Konqueror */
    -moz-user-select: none;      /* Disable text selection on Firefox */
    -ms-user-select: none;       /* Disable text selection on Internet Explorer/Edge */
    user-select: none;           /* Disable text selection */
}

.page-contact__faq-question::-webkit-details-marker {
    display: none;
}

.page-contact__faq-question .page-contact__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: #2AD16F;
}

.page-contact__faq-answer {
    padding: 0 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.05em;
    line-height: 1.7;
}

.page-contact__faq-answer p {
    margin-bottom: 10px;
    color: #A7D9B8;
}

.page-contact__faq-answer a {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-contact__faq-answer a:hover {
    color: #2AD16F;
}

/* Social Section */
.page-contact__social-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    text-align: center;
}

.page-contact__social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-contact__social-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #11271B; /* Card B G */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.page-contact__social-icon img {
     /* Display size */
     /* Display size */
    object-fit: contain;
    display: block; /* Ensure no extra space below image */
}

.page-contact__social-icon:hover {
    transform: translateY(-5px);
    background-color: #2AD16F;
}

.page-contact__social-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin-top: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Why Contact Us Section */
.page-contact__why-contact-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-contact__benefits-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact__benefit-item {
    background-color: #11271B; /* Card B G */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #2AD16F; /* Highlight */
}

.page-contact__benefit-item .page-contact__sub-title {
    color: #F2FFF6;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-contact__benefit-item p {
    color: #A7D9B8;
}

.page-contact__feature-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin-top: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.page-contact__cta-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    text-align: center;
}

.page-contact__cta-section .page-contact__cta-buttons {
    margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-contact__main-title {
        font-size: 2.8em;
    }
    .page-contact__hero-description {
        font-size: 1.1em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-section {
        min-height: 500px;
        padding-bottom: 40px;
    }
    .page-contact__hero-content {
        margin-top: 40px;
    }
    .page-contact__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-contact__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-contact__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-contact__btn-primary,
    .page-contact__btn-secondary {
        width: 100% !important; /* Mobile button full width */
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-contact__method-cards,
    .page-contact__form-wrapper,
    .page-contact__location-details,
    .page-contact__benefits-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-contact__form-image,
    .page-contact__map-image,
    .page-contact__social-image,
    .page-contact__feature-image,
    .page-contact__method-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All containers with images/videos/buttons */
    .page-contact__hero-section,
    .page-contact__methods-section,
    .page-contact__form-section,
    .page-contact__info-section,
    .page-contact__faq-section,
    .page-contact__social-section,
    .page-contact__why-contact-section,
    .page-contact__cta-section,
    .page-contact__container,
    .page-contact__method-card,
    .page-contact__form-wrapper,
    .page-contact__contact-form,
    .page-contact__location-details,
    .page-contact__address-block,
    .page-contact__map-wrapper,
    .page-contact__faq-item,
    .page-contact__social-links,
    .page-contact__benefit-item,
    .page-contact__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-contact__hero-section {
        padding-top: 10px !important; /* Small padding top */
    }

    .page-contact__social-icon {
        width: 50px;
        height: 50px;
    }

    .page-contact__social-icon img {
        
        
    }

}

@media (max-width: 480px) {
    .page-contact__main-title {
        font-size: 1.8em;
    }
    .page-contact__section-title {
        font-size: 1.5em;
    }
    .page-contact__sub-title {
        font-size: 1.3em;
    }
    .page-contact__faq-question {
        font-size: 1.1em;
    }
}