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

.page-contact__hero {
    position: relative;
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-contact__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.page-contact__hero-btn {
    display: inline-block;
    background-color: #FFCC00; /* Accent color for button */
    color: #003366; /* Main color for button text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FFCC00;
}

.page-contact__hero-btn:hover {
    background-color: #e6b800;
    color: #001a33;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #003366; /* Main color for section titles */
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-contact__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00; /* Accent color for underline */
    border-radius: 2px;
}

.page-contact__info-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: -60px; /* Overlap with hero for visual flow */
    position: relative;
    z-index: 3;
}

.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: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    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(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__info-heading {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 10px;
}

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

.page-contact__info-link {
    color: #FFCC00; /* Accent color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__info-link:hover {
    color: #e6b800;
    text-decoration: underline;
}

.page-contact__form-section {
    padding: 80px 20px;
    background-color: #f4f7f6;
}

.page-contact__form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

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

.page-contact__form-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.page-contact__contact-form {
    flex: 2;
    min-width: 300px;
}

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

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

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFCC00; /* Accent color on focus */
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}

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

.page-contact__submit-btn {
    background-color: #003366; /* Main color for submit button */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    min-width: 180px;
}

.page-contact__submit-btn:hover {
    background-color: #001a33;
}

.page-contact__cta-bottom {
    position: relative;
    background: linear-gradient(90deg, #003366 0%, #001a33 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.page-contact__cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-contact__cta-bottom > * {
    position: relative;
    z-index: 2;
}

.page-contact__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFCC00; /* Accent color for CTA title */
}

.page-contact__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

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

.page-contact__cta-btn {
    display: inline-block;
    background-color: #FFCC00; /* Accent color for primary CTA button */
    color: #003366; /* Main color for text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid #FFCC00;
}

.page-contact__cta-btn:hover {
    background-color: #e6b800;
    color: #001a33;
    border-color: #e6b800;
}

.page-contact__cta-btn--secondary {
    background-color: transparent;
    color: #FFCC00; /* Accent color for secondary button text */
    border: 2px solid #FFCC00;
}

.page-contact__cta-btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

.page-contact__social-media {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-contact__social-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

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

.page-contact__social-icon-link {
    display: block;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.page-contact__social-icon-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.page-contact__social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description,
    .page-contact__cta-description {
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__info-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__form-container {
        flex-direction: column;
        padding: 30px;
    }
    .page-contact__cta-title {
        font-size: 2.2em;
    }
    .page-contact__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-contact__hero,
    .page-contact__cta-bottom {
        padding: 60px 15px;
    }
    .page-contact__info-section,
    .page-contact__form-section,
    .page-contact__social-media {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__hero-btn,
    .page-contact__submit-btn,
    .page-contact__cta-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-contact__info-card {
        padding: 20px;
    }
    .page-contact__info-heading {
        font-size: 1.5em;
    }
    .page-contact__social-icons {
        gap: 15px;
    }
    .page-contact__social-icon-link {
        width: 40px;
        height: 40px;
    }
}