/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark backgrounds */
    line-height: 1.6;
    background-color: #0A2463; /* Main background color */
}

.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0A2463 0%, #06183F 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

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

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

.page-contact__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-contact__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

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

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

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

.page-contact__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
    transform: translateY(-2px);
}

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

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

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

.page-contact__section-description {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-contact__info-section {
    padding: 80px 20px;
    background-color: #1a3a7a; /* Slightly lighter blue for contrast */
}

.page-contact__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-contact__info-card {
    background-color: #0A2463;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-contact__info-card:hover {
    transform: translateY(-10px);
}

.page-contact__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-contact__card-text {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-contact__card-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__card-link:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.page-contact__form-section {
    padding: 80px 20px;
    background-color: #0A2463;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.page-contact__form-container {
    background-color: #1a3a7a;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    flex: 1;
    min-width: 300px;
}

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

.page-contact__form-image .page-contact__img {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #4a6fa5;
    border-radius: 6px;
    background-color: #0A2463;
    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__btn--submit {
    width: 100%;
    background-color: #FFD700;
    color: #0A2463;
    border: none;
    padding: 15px;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    text-decoration: none;
}

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

.page-contact__form-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #cccccc;
}

.page-contact__form-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-contact__form-link:hover {
    text-decoration: underline;
}

.page-contact__social-section {
    padding: 80px 20px;
    background-color: #1a3a7a;
    text-align: center;
}

.page-contact__social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-contact__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #0A2463;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__social-icon img {
    width: 30px;
    height: 30px;
    filter: invert(1) sepia(1) saturate(5) hue-rotate(30deg) brightness(1.2); /* Adjust for gold icon effect */
}

.page-contact__social-icon:hover {
    background-color: #FFD700;
    transform: translateY(-5px);
}

.page-contact__social-icon:hover img {
    filter: invert(0) sepia(0) saturate(0) hue-rotate(0deg) brightness(1); /* Reset filter for hover to show original icon color if desired, or invert to dark */
    filter: brightness(0) invert(1); /* Example: change icon to dark on gold hover */
}

.page-contact__footer-note {
    text-align: center;
    padding: 30px 20px;
    background-color: #06183F;
    color: #a0a0a0;
    font-size: 0.9em;
}

/* Responsive Design */
@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-cta {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-contact__info-section {
        padding: 60px 20px;
    }

    .page-contact__form-section {
        flex-direction: column;
        padding: 60px 20px;
    }

    .page-contact__form-container,
    .page-contact__form-image {
        max-width: 100%;
    }

    .page-contact__social-section {
        padding: 60px 20px;
    }

    .page-contact__social-links {
        gap: 20px;
    }
}

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

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

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

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