/* style/contact.css */

/* Base styles for the page content, assuming body background from shared.css is dark */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    overflow: hidden;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.3;
}

.page-contact__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: 20px;
    background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
    border-radius: 10px;
}

.page-contact__main-title {
    font-size: 2.8em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-contact__hero-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-contact__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-contact__btn-primary,
.page-contact__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    max-width: 100%;
}

.page-contact__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-contact__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px rgba(42, 209, 111, 0.6);
}

.page-contact__btn-secondary {
    background: transparent;
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border */
}

.page-contact__btn-secondary:hover {
    background: #2E7A4E; /* Border color as background */
    color: #ffffff;
    box-shadow: 0 0 15px rgba(46, 122, 78, 0.6);
}

/* General Section Styling */
.page-contact__section {
    padding: 80px 20px;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
}

.page-contact__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-contact__section-title {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.3;
}

.page-contact__section-description {
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Methods Section */
.page-contact__contact-methods {
    background-color: #08160F; /* Background */
}

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

.page-contact__method-card {
    background-color: #11271B; /* Card BG */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
}

.page-contact__method-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 10px;
}

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

.page-contact__method-text {
    color: #A7D9B8; /* Text Secondary */
    font-size: 0.95em;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 25px;
}

/* Social Media Section */
.page-contact__social-media {
    background-color: #0A4B2C; /* Deep Green */
}

.page-contact__social-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-contact__social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__social-link:hover {
    color: #57E38D; /* Glow */
}

.page-contact__social-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid #2E7A4E;
}

.page-contact__social-detail-title {
    font-size: 1.4em;
    color: #F2FFF6;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: left;
}

.page-contact__social-detail-text {
    color: #A7D9B8;
    font-size: 0.95em;
    line-height: 1.6;
    text-align: left;
}

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

.page-contact__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    text-align: left;
}

.page-contact__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-contact__faq-item details[open] > .page-contact__faq-question {
    background-color: #1E3A2A; /* Divider color for active state */
}

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

.page-contact__faq-qtext {
    flex-grow: 1;
}

.page-contact__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 20px;
    color: #57E38D; /* Glow */
}

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

.page-contact__faq-answer p {
    margin-top: 10px;
}

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

.page-contact__faq-answer a:hover {
    color: #F2FFF6; /* Text Main */
}

/* Why Choose Us Section */
.page-contact__why-choose-us {
    background-color: #0A4B2C; /* Deep Green */
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-contact__why-choose-us .page-contact__container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.page-contact__why-choose-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact__why-choose-content {
    flex: 1;
    max-width: 50%;
    text-align: left;
}

.page-contact__why-choose-content .page-contact__section-title {
    text-align: left;
    margin-top: 0;
}

.page-contact__why-choose-content .page-contact__section-description,
.page-contact__feature-text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
}

.page-contact__feature-title {
    font-size: 1.6em;
    color: #F2FFF6;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

/* Final CTA Section */
.page-contact__final-cta {
    background-color: #11A84E; /* Main Color */
    padding: 80px 20px;
}

.page-contact__final-cta .page-contact__section-title,
.page-contact__final-cta .page-contact__section-description {
    color: #F2FFF6; /* Text Main */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-contact__main-title {
        font-size: 2.5em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__why-choose-us .page-contact__container {
        flex-direction: column;
        text-align: center;
    }
    .page-contact__why-choose-image,
    .page-contact__why-choose-content {
        max-width: 100%;
    }
    .page-contact__why-choose-content .page-contact__section-title,
    .page-contact__why-choose-content .page-contact__section-description,
    .page-contact__feature-title,
    .page-contact__feature-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-content {
        padding: 15px;
    }
    .page-contact__main-title {
        font-size: clamp(1.8em, 6vw, 2.2em);
        margin-bottom: 15px;
    }
    .page-contact__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-contact__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-contact__btn-primary,
    .page-contact__btn-secondary {
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-contact__section {
        padding: 40px 0;
    }
    .page-contact__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

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

    .page-contact__methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-contact__method-card {
        padding: 20px;
    }
    .page-contact__method-icon {
        width: 80px;
        height: 80px;
    }

    .page-contact__social-grid {
        gap: 20px;
    }
    .page-contact__social-icon {
        width: 60px;
        height: 60px;
    }
    .page-contact__social-detail-title,
    .page-contact__social-detail-text {
        text-align: center;
    }

    .page-contact__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-contact__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.9em;
    }

    /* Images responsiveness */
    .page-contact img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-contact__hero-section {
        padding-top: 10px !important;
    }
}

/* Ensure body padding-top is handled by shared.css, not here */
/* .page-contact { padding-top: var(--header-offset); } - NO, handled by body in shared.css */