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

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

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

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-contact__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    z-index: 1;
}

.page-contact__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.page-contact__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-contact__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
    position: relative;
    z-index: 1;
}

.page-contact__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text */
}

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

.page-contact__btn--secondary {
    background-color: #0A2463; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
    background-color: #06183e;
    transform: translateY(-2px);
}

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

.page-contact__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-contact__info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-contact__info-card {
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-contact__info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

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

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

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

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

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

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

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

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

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

.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;
    background-color: #fdfdfd;
    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;
}

.page-contact__cta-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #0A2463, #0a2463e0), url('[GALLERY:bg:abstract_geometric,dark_blue_gold,pattern]') no-repeat center center/cover;
    color: #ffffff;
    text-align: center;
}

.page-contact__cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-contact__cta-image {
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-contact__cta-content {
    text-align: center;
    max-width: 700px;
}

.page-contact__cta-content .page-contact__section-title {
    color: #FFD700;
}

.page-contact__cta-content .page-contact__section-title::after {
    background-color: #FFD700;
}

.page-contact__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

.page-contact__social-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.page-contact__social-description {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #555;
}

.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: #0A2463;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-contact__social-icon-link img {
    width: 28px;
    height: 28px;
    filter: invert(100%); /* Make icons white by default */
}

.page-contact__social-icon-link:hover img {
    filter: invert(0%); /* Make icons black on hover */
}

/* Responsive Design */
@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: 2em;
    }

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

    .page-contact__form {
        padding: 30px;
    }

    .page-contact__cta-container {
        flex-direction: column;
    }

    .page-contact__cta-image {
        max-width: 200px;
    }

    .page-contact__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-contact__btn {
        width: 100%;
        max-width: 280px;
    }
}

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

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

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

    .page-contact__info-card {
        padding: 20px;
    }

    .page-contact__form {
        padding: 20px;
    }

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

    .page-contact__social-icon-link {
        width: 45px;
        height: 45px;
    }
}