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

.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0A2463 0%, #304a8b 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

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

.page-contact__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700;
}

.page-contact__highlight {
    color: #FFD700;
}

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

.page-contact__text-link {
    color: #FFD700;
    text-decoration: underline;
}

.page-contact__text-link:hover {
    color: #fff;
}

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

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

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

.page-contact__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

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

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

.page-contact__method-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    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__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

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

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

.page-contact__link {
    display: inline-block;
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    border: 2px solid #0A2463;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__link:hover {
    background-color: #0A2463;
    color: #ffffff;
}

.page-contact__link--cta {
    background-color: #FFD700;
    color: #0A2463;
    border-color: #FFD700;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
}

.page-contact__link--cta:hover {
    background-color: #e6c200;
    color: #0A2463;
    border-color: #e6c200;
}

.page-contact__form-section {
    background-color: #ffffff;
    padding: 60px 20px;
    max-width: 900px;
    margin: 60px auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.page-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-contact__form-group {
    display: flex;
    flex-direction: column;
}

.page-contact__form-label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #0A2463;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    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 0 3px rgba(255, 215, 0, 0.2);
    outline: none;
}

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

.page-contact__submit-btn {
    background-color: #0A2463;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: center;
    width: fit-content;
}

.page-contact__submit-btn:hover {
    background-color: #1a3b7c;
    transform: translateY(-2px);
}

.page-contact__form-message {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
}

.page-contact__form-message--success {
    background-color: #e6ffe6;
    color: #28a745;
    border: 1px solid #28a745;
}

.page-contact__form-message--error {
    background-color: #ffe6e6;
    color: #dc3545;
    border: 1px solid #dc3545;
}

.page-contact__cta {
    background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%);
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    overflow: hidden;
}

.page-contact__cta-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-bottom: 20px;
    font-weight: bold;
    z-index: 1;
    position: relative;
}

.page-contact__cta-description {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    position: relative;
}

.page-contact__cta-btn {
    display: inline-block;
    background-color: #0A2463;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
}

.page-contact__cta-btn:hover {
    background-color: #1a3b7c;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-contact__image--cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

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

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

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

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

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

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

    .page-contact__cta-btn {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 40px 15px;
    }

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

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

    .page-contact__form-section {
        padding: 40px 15px;
        margin: 40px auto;
    }

    .page-contact__submit-btn {
        width: 100%;
    }

    .page-contact__cta {
        padding: 50px 15px;
    }

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