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

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

.page-contact__hero {
    background-color: #0A2463; /* Main color */
    color: #FFFFFF;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

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

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

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #CCCCCC;
}

.page-contact__hero-btn {
    display: inline-block;
    background-color: #E0B143; /* Accent color */
    color: #0A2463; /* Main color for text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__hero-btn:hover {
    background-color: #f5c765;
    transform: translateY(-3px);
}

.page-contact__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.page-contact__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.page-contact__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B143; /* Accent color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-contact__methods {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

.page-contact__method-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
}

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

.page-contact__method-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact__method-btn {
    display: inline-block;
    background-color: #0A2463; /* Main color */
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact__method-btn:hover {
    background-color: #1a3a7a;
}

.page-contact__form-section {
    padding: 60px 0 80px;
    background-color: #FFFFFF;
}

.page-contact__form-intro {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-bottom: 40px;
}

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

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

.page-contact__form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #0A2463; /* Main color */
    font-size: 1.05em;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #E0B143; /* Accent color */
    box-shadow: 0 0 0 3px rgba(224, 177, 67, 0.2);
    outline: none;
}

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

.page-contact__form-submit-btn {
    display: block;
    width: 100%;
    background-color: #E0B143; /* Accent color */
    color: #0A2463; /* Main color for text */
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-contact__form-submit-btn:hover {
    background-color: #f5c765;
    transform: translateY(-3px);
}

.page-contact__faq {
    padding: 60px 0 80px;
    background-color: #f0f2f5;
}

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

.page-contact__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
    padding: 25px 30px;
}

.page-contact__faq-question {
    font-size: 1.4em;
    color: #0A2463; /* Main color */
    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: #E0B143;
    transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
    font-size: 1em;
    color: #555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.page-contact__faq-answer.active {
    display: block;
}

.page-contact__faq-link {
    color: #0A2463; /* Main color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__faq-link:hover {
    color: #E0B143; /* Accent color on hover */
    text-decoration: underline;
}

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

    .page-contact__hero-title {
        font-size: 2.5em;
    }

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

    .page-contact__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-contact__section-title {
        font-size: 2em;
        padding-top: 40px;
    }

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

    .page-contact__form {
        padding: 30px;
    }

    .page-contact__form-submit-btn {
        font-size: 1.1em;
    }

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

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

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

    .page-contact__hero-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

    .page-contact__form {
        padding: 20px;
    }

    .page-contact__form-label {
        font-size: 0.9em;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 10px;
        font-size: 0.9em;
    }

    .page-contact__form-submit-btn {
        font-size: 1em;
    }

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