/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-contact__hero {
    background-color: #0A2342;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-contact__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-contact__hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    line-height: 1.2;
}

.page-contact__hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-contact__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

.page-contact__section-title {
    font-size: 2.2em;
    color: #0A2342;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.page-contact__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-contact__section-description {
    font-size: 1.05em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-contact__info, .page-contact__form-section, .page-contact__faq, .page-contact__cta {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.page-contact__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-contact__method h3 {
    color: #0A2342;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-contact__method p {
    color: #666;
    margin-bottom: 15px;
}

.page-contact__link {
    color: #0A2342;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__link:hover {
    color: #FFD700;
}

.page-contact__link--chat {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__link--chat:hover {
    background-color: #e6c200;
    color: #0A2342;
}

.page-contact__form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 40px auto 0;
}

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

.page-contact__form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #0A2342;
}

.page-contact__form-group input[type="text"],
.page-contact__form-group input[type="email"],
.page-contact__form-group textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    transition: border-color 0.3s ease;
}

.page-contact__form-group input:focus,
.page-contact__form-group textarea:focus {
    border-color: #FFD700;
    outline: none;
}

.page-contact__form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
    margin: 10px 10px 10px 0;
}

.page-contact__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-contact__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-contact__btn--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #0A2342;
}

.page-contact__btn--secondary:hover {
    background-color: #071a33;
    color: #FFD700;
    transform: translateY(-2px);
}

.page-contact__btn--tertiary {
    background-color: transparent;
    color: #0A2342;
    border: 2px solid #0A2342;
}

.page-contact__btn--tertiary:hover {
    background-color: #0A2342;
    color: #FFD700;
    transform: translateY(-2px);
}

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

.page-contact__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-contact__faq-link {
    display: block;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: #0A2342;
    text-decoration: none;
    background-color: #f0f2f5;
    position: relative;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.page-contact__faq-link::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-contact__faq-link.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-contact__faq-link:hover {
    background-color: #e7eaf0;
}

.page-contact__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #555;
    background-color: #ffffff;
}

.page-contact__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 15px 25px 20px;
}

.page-contact__cta {
    text-align: center;
    background-color: #0A2342;
    color: #ffffff;
    padding: 80px 20px;
    border-radius: 10px;
    margin-top: 60px;
}

.page-contact__cta .page-contact__section-title {
    color: #FFD700;
}

.page-contact__cta .page-contact__section-description {
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero {
        padding: 60px 15px;
    }

    .page-contact__hero h1 {
        font-size: 2em;
    }

    .page-contact__hero p {
        font-size: 1em;
    }

    .page-contact__section-title {
        font-size: 1.8em;
    }

    .page-contact__info, .page-contact__form-section, .page-contact__faq, .page-contact__cta {
        padding: 40px 15px;
    }

    .page-contact__contact-methods {
        grid-template-columns: 1fr;
    }

    .page-contact__form {
        padding: 25px;
    }

    .page-contact__btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero h1 {
        font-size: 1.6em;
    }

    .page-contact__section-title {
        font-size: 1.5em;
    }

    .page-contact__form-group input,
    .page-contact__form-group textarea {
        padding: 10px;
    }
}