/* style/contact.css */
.page-contact {
    font-family: Arial, sans-serif;
    color: #FFFFFF;
    background-color: #1A2A4A;
}

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

.page-contact__hero-section {
    background: linear-gradient(135deg, #1A2A4A 0%, #3a4d70 100%);
    padding: 80px 0;
    text-align: center;
}

.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.5);
}

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

.page-contact__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin: 60px 0 40px 0;
    font-weight: bold;
}

.page-contact__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #E0E0E0;
}

.page-contact__methods-section {
    background-color: #2A3B5A;
    padding: 60px 0;
    text-align: center;
}

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

.page-contact__contact-card {
    background-color: #1A2A4A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-contact__icon-wrapper {
    margin-bottom: 20px;
}

.page-contact__icon {
    width: 60px;
    height: 60px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(30deg) brightness(110%) contrast(100%); /* Gold tint */
}

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

.page-contact__card-text {
    font-size: 1em;
    line-height: 1.5;
    color: #CCCCCC;
    margin-bottom: 20px;
}

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

.page-contact__link-text:hover {
    color: #e6c200;
    text-decoration: underline;
}

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

.page-contact__btn--primary {
    background-color: #FFD700;
    color: #1A2A4A;
}

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

.page-contact__btn--submit {
    background-color: #FFD700;
    color: #1A2A4A;
    width: auto;
    margin-top: 20px;
}

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

.page-contact__btn--large {
    padding: 15px 35px;
    font-size: 1.3em;
    margin-top: 30px;
}

.page-contact__methods-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-contact__form-section {
    background-color: #1A2A4A;
    padding: 60px 0;
    text-align: center;
}

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #2A3B5A;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-align: left;
    position: relative;
}

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

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
    color: #FFD700;
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #445D85;
    border-radius: 5px;
    background-color: #3B5078;
    color: #FFFFFF;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #A0A0A0;
}

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

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

.page-contact__form-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-section {
    background-color: #2A3B5A;
    padding: 80px 0;
    text-align: center;
}

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

.page-contact__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

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

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

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

    .page-contact__form-input, .page-contact__form-textarea {
        width: calc(100% - 24px); /* Adjust for padding and border */
    }

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

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

@media (max-width: 480px) {
    .page-contact__hero-section,
    .page-contact__methods-section,
    .page-contact__form-section,
    .page-contact__cta-section {
        padding: 40px 0;
    }

    .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-card {
        padding: 20px;
    }

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

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

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