/* style/contact.css */

/* General Styles for page-contact */
.page-contact {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-contact__hero-section {
    background: linear-gradient(135deg, #4A2780, #6A3F9C);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-contact__hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__info-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

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

.page-contact__method-card {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__card-title {
    font-size: 1.8em;
    color: #4A2780;
    margin-bottom: 15px;
}

.page-contact__card-description {
    color: #555;
    margin-bottom: 20px;
}

.page-contact__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-contact__btn--primary {
    background-color: #FFD700;
    color: #4A2780;
    border: 2px solid #FFD700;
}

.page-contact__btn--primary:hover {
    background-color: #e6c200;
    color: #331d5c;
    border-color: #e6c200;
}

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

.page-contact__btn--secondary:hover {
    background-color: #331d5c;
    color: #ffe033;
    border-color: #331d5c;
}

.page-contact__form-section {
    background-color: #f8f8f8;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-contact__form-title {
    font-size: 2.5em;
    color: #4A2780;
    margin-bottom: 20px;
}

.page-contact__form-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.page-contact__contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    z-index: 1;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    color: #333;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
    outline: none;
}

.page-contact__form-textarea {
    resize: vertical;
}

.page-contact__submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #FFD700;
    color: #4A2780;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__submit-btn:hover {
    background-color: #e6c200;
    color: #331d5c;
}

.page-contact__form-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 50px;
    opacity: 0.8;
}

.page-contact__faq-section {
    padding: 60px 0;
    background-color: #e9e9e9;
}

.page-contact__faq-title {
    font-size: 2.5em;
    color: #4A2780;
    text-align: center;
    margin-bottom: 40px;
}

.page-contact__faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    padding: 25px;
    transition: all 0.3s ease;
}

.page-contact__faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-contact__faq-question {
    font-size: 1.4em;
    color: #4A2780;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-contact__faq-question::after {
    content: '+';
    font-size: 1.2em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
    font-size: 1.1em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 15px;
    border-left: 3px solid #FFD700;
    margin-top: 15px;
}

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

.page-contact__cta-section {
    background: linear-gradient(45deg, #4A2780, #331d5c);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-contact__btn--large {
    padding: 15px 35px;
    font-size: 1.3em;
    border-width: 3px;
}

.page-contact__cta-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }

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

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

    .page-contact__form-title,
    .page-contact__faq-title,
    .page-contact__cta-title {
        font-size: 2em;
    }

    .page-contact__contact-form {
        padding: 30px;
    }

    .page-contact__faq-question {
        font-size: 1.2em;
    }

    .page-contact__faq-answer {
        font-size: 0.95em;
    }

    .page-contact__btn--large {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

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

    .page-contact__hero-description {
        font-size: 0.9em;
    }

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

    .page-contact__form-title,
    .page-contact__faq-title,
    .page-contact__cta-title {
        font-size: 1.8em;
    }

    .page-contact__contact-form {
        padding: 20px;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        width: calc(100% - 20px);
    }

    .page-contact__faq-question {
        font-size: 1.1em;
    }

    .page-contact__faq-answer {
        font-size: 0.9em;
    }

    .page-contact__btn--large {
        font-size: 1em;
        padding: 10px 20px;
    }
}