/* style/contact.css */

/* Base styles for the contact page */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
    padding-bottom: 50px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    box-sizing: border-box;
}

.page-contact__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and text */
    overflow: hidden;
    border-radius: 15px;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
}

.page-contact__hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure text is above any background elements */
}

.page-contact__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    font-weight: 700;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

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

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

/* Section Titles and Descriptions */
.page-contact__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    color: #F2C14E; /* Gold for section titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
    line-height: 1.3;
}

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

/* CTA Buttons */
.page-contact__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-contact__btn-primary,
.page-contact__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Crucial for button responsiveness */
}

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

.page-contact__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(87, 227, 141, 0.4); /* Glow on hover */
}

.page-contact__btn-secondary {
    background: #11271B; /* Card BG */
    color: #2AD16F;
    border: 2px solid #2E7A4E; /* Border */
}

.page-contact__btn-secondary:hover {
    transform: translateY(-3px);
    background: #1E3A2A; /* Deep Green */
    color: #F2FFF6;
    box-shadow: 0 6px 20px rgba(46, 122, 78, 0.4);
}

/* Channels Section */
.page-contact__channels-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green for this section */
    border-top: 1px solid #2E7A4E; /* Border */
    border-bottom: 1px solid #2E7A4E; /* Border */
}

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

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

.page-contact__channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-contact__channel-icon {
    width: 100%; /* Ensure images fill card width */
    max-width: 150px; /* But limit max size */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block; /* Important for proper spacing */
    margin-left: auto;
    margin-right: auto;
    min-width: 200px; /* Minimum image size */
    min-height: 200px;
}

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

.page-contact__channel-text {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-contact__btn-text {
    color: #57E38D; /* Glow color for text buttons */
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s ease;
}

.page-contact__btn-text:hover {
    color: #F2C14E; /* Gold on hover */
    text-decoration: underline;
}

/* Why Us Section */
.page-contact__why-us-section {
    padding: 60px 0;
}

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

.page-contact__why-us-item {
    background-color: #11271B; /* Card BG */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-contact__list-title {
    font-size: 1.3em;
    color: #57E38D; /* Glow color */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-contact__list-text {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
    border-top: 1px solid #2E7A4E; /* Border */
    border-bottom: 1px solid #2E7A4E; /* Border */
}

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

.page-contact__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-contact__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-contact__faq-item summary:hover {
    background-color: #1E3A2A; /* Deep Green */
}

.page-contact__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit */
}

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

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

.page-contact__faq-item[open] .page-contact__faq-toggle {
    content: "−"; /* Change to minus when open */
}

.page-contact__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #2E7A4E; /* Border */
    background-color: #08160F; /* Background */
}

.page-contact__faq-answer p {
    margin: 15px 0 0 0;
}

/* CTA Banner Section */
.page-contact__cta-banner-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #13994A 0%, #0A4B2C 100%); /* Mix of button and deep green */
    border-radius: 15px;
    margin: 60px auto;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.page-contact__cta-banner-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
    .page-contact__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }

    .page-contact__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }

    .page-contact__section-title {
        font-size: clamp(1.6em, 4vw, 2.5em);
    }

    .page-contact__channel-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-contact__why-us-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile specific overrides */
    .page-contact {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-contact__hero-section {
        padding: 30px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }

    .page-contact__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-contact__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-contact__main-title {
        font-size: clamp(1.5em, 7vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-contact__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-contact__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    .page-contact__btn-primary,
    .page-contact__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-contact__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-contact__section-title {
        font-size: clamp(1.4em, 6vw, 2em);
        padding-top: 30px;
    }

    .page-contact__section-description {
        margin-bottom: 30px;
    }

    .page-contact__channel-grid,
    .page-contact__why-us-list {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }

    .page-contact__channel-card,
    .page-contact__why-us-item,
    .page-contact__faq-item {
        padding: 20px;
    }

    .page-contact__channel-icon {
        min-width: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-contact__list-title {
        font-size: 1.2em;
    }

    .page-contact__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-contact__faq-answer {
        padding: 0 20px 15px 20px;
    }

    .page-contact__cta-banner-section {
        padding: 50px 15px;
        margin: 40px auto;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-contact__cta-banner-title {
        font-size: clamp(1.4em, 6vw, 2em);
        margin-bottom: 15px;
    }

    .page-contact__cta-banner-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    
    /* Ensure all images inside page-contact are responsive */
    .page-contact img {
      max-width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    /* Ensure all video inside page-contact are responsive (though no video is used in this page) */
    .page-contact video,
    .page-contact__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-contact__video-section,
    .page-contact__video-container,
    .page-contact__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
    .page-contact__video-section {
        padding-top: 10px !important; /* Small top padding, body handles header offset */
    }
}