/* style/contact.css */

/* General styling for the contact page content */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #333; /* Dark text for general content on light background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #0A2463, #3B5998); /* Dark blue gradient */
    color: #F0F0F0; /* Light text on dark background */
    padding: 80px 0;
    text-align: center;
}

.page-contact__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E3B505; /* Accent color for main title */
    font-weight: bold;
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__keyword {
    font-weight: bold;
    color: #E3B505; /* Highlight keywords with accent color */
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #E3B505; /* Accent color for buttons */
    color: #0A2463; /* Dark text on accent button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-contact__cta-button:hover {
    background-color: #f5cb42; /* Lighter accent on hover */
    transform: translateY(-2px);
}

/* Methods Section */
.page-contact__methods {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light background */
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Main color for section titles */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.page-contact__method-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-contact__method-text {
    color: #555;
    margin-bottom: 25px;
}

.page-contact__method-button {
    display: inline-block;
    background-color: #0A2463; /* Main color for secondary buttons */
    color: #ffffff; /* Light text on dark button */
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-contact__method-button:hover {
    background-color: #1a3c7a; /* Slightly lighter main color on hover */
}

/* FAQ Section */
.page-contact__faq {
    padding: 60px 0;
    background-color: #f0f4f8; /* A slightly darker light background */
}

.page-contact__faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-contact__faq-question {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #E3B505;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
    transform: rotate(45deg);
}

.page-contact__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding-left: 10px;
    border-left: 3px solid #E3B505;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-contact__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
    padding-bottom: 5px;
}

/* Bottom CTA Section */
.page-contact__cta-bottom {
    background: linear-gradient(45deg, #0A2463, #001A4B); /* Darker blue gradient */
    color: #F0F0F0;
    padding: 80px 0;
    text-align: center;
}

.page-contact__cta-title {
    font-size: 2.8em;
    color: #E3B505;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__method-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__cta-title {
        font-size: 2.2em;
    }
    .page-contact__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__hero-description {
        font-size: 0.9em;
    }
    .page-contact__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__method-icon {
        width: 60px;
        height: 60px;
    }
    .page-contact__method-title {
        font-size: 1.5em;
    }
    .page-contact__cta-title {
        font-size: 1.8em;
    }
    .page-contact__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}