/* style/contact.css */

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

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

.page-contact__hero {
    background: linear-gradient(135deg, #0A2463 0%, #304E8A 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-contact__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #E3B505;
    font-weight: bold;
}

.page-contact__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__section-title {
    font-size: 2.2em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

.page-contact__description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}

/* Buttons */
.page-contact__button {
    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;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-contact__button--primary {
    background-color: #E3B505;
    color: #0A2463;
    box-shadow: 0 4px 15px rgba(227, 181, 5, 0.4);
}

.page-contact__button--primary:hover {
    background-color: #f0c610;
    color: #0A2463;
}

.page-contact__button--secondary {
    background-color: #0A2463;
    color: #E3B505;
    border: 1px solid #E3B505;
}

.page-contact__button--secondary:hover {
    background-color: #081e4d;
    color: #f0c610;
}

/* Contact Methods Section */
.page-contact__methods {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-contact__card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-contact__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-contact__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__card-description {
    color: #666;
    margin-bottom: 25px;
}

/* Form Section */
.page-contact__form-section {
    padding: 80px 0;
    background-color: #f0f4f7;
}

.page-contact__form-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-contact__form-content {
    flex: 1;
    min-width: 300px;
}

.page-contact__form-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-contact__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-contact__form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #E3B505;
    box-shadow: 0 0 0 3px rgba(227, 181, 5, 0.2);
    outline: none;
}

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

/* Social Media Section */
.page-contact__social-media {
    padding: 60px 0;
    text-align: center;
    background-color: #0A2463;
    color: #ffffff;
}

.page-contact__social-media .page-contact__section-title {
    color: #E3B505;
    margin-bottom: 20px;
}

.page-contact__social-media .page-contact__description {
    color: #ccc;
    margin-bottom: 40px;
}

.page-contact__social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.page-contact__social-icon-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #E3B505;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-contact__social-icon-link:hover {
    transform: translateY(-3px) scale(1.05);
    background-color: #f0c610;
}

.page-contact__social-icon {
    width: 30px;
    height: 30px;
    filter: invert(100%) brightness(0%) sepia(100%) saturate(0%) hue-rotate(240deg) contrast(100%);
}


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

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

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

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

    .page-contact__form-layout {
        flex-direction: column;
    }

    .page-contact__form-content,
    .page-contact__form-image {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 60px 0;
    }
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-contact__card {
        padding: 20px;
    }
    .page-contact__form {
        padding: 25px;
    }
    .page-contact__social-links {
        gap: 15px;
    }
    .page-contact__social-icon-link {
        width: 45px;
        height: 45px;
    }
    .page-contact__social-icon {
        width: 25px;
        height: 25px;
    }
}