/* style/contact.css */
.page-contact {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A2B4C; /* Main dark blue background */
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-contact__hero-section {
    position: relative;
    height: 400px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 20px;
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-contact__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: #FFFFFF;
}

.page-contact__title {
    font-size: 3.5em;
    color: #FFD700; /* Accent gold for main title */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-contact__subtitle {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.page-contact__methods-section {
    padding: 50px 20px;
    background-color: #1A2B4C;
}

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

.page-contact__method-card {
    background-color: #2A3B5C; /* Slightly lighter blue for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
}

.page-contact__method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-contact__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-contact__method-description {
    color: #B0B0B0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact__button {
    display: inline-block;
    background-color: #FFD700; /* Accent gold for buttons */
    color: #1A2B4C; /* Dark blue text on gold button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

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

.page-contact__social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

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

.page-contact__social-link:hover {
    color: #e6c200;
}

.page-contact__form-section {
    background-color: #1A2B4C;
    padding: 50px 20px;
}

.page-contact__form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #2A3B5C;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    padding: 40px;
    align-items: center;
}

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

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

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #4A5B7C;
    border-radius: 5px;
    background-color: #1A2B4C;
    color: #E0E0E0;
    font-size: 1em;
}

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

.page-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.page-contact__button--submit {
    width: auto;
    padding: 15px 35px;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

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

.page-contact__form-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__info-section {
    padding: 50px 20px;
    background-color: #1A2B4C;
}

.page-contact__info-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    background-color: #2A3B5C;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    padding: 40px;
}

.page-contact__address-details {
    flex: 1;
    min-width: 300px;
    color: #B0B0B0;
    font-size: 1.1em;
}

.page-contact__address-details p {
    margin-bottom: 15px;
}

.page-contact__address-details strong {
    color: #FFD700;
}

.page-contact__address-details a {
    color: #FFD700;
    text-decoration: none;
}

.page-contact__address-details a:hover {
    text-decoration: underline;
}

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

.page-contact__map-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

    .page-contact__subtitle {
        font-size: 1em;
    }

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

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

    .page-contact__form-container,
    .page-contact__info-content {
        flex-direction: column;
        padding: 30px;
    }

    .page-contact__form-image-wrapper,
    .page-contact__map-wrapper {
        order: -1; /* Image/Map above form/text on mobile */
    }
}

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

    .page-contact__hero-section {
        height: 300px;
    }

    .page-contact__section-title {
        font-size: 1.8em;
        margin: 40px 0 30px;
    }

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

    .page-contact__form-input,
    .page-contact__form-textarea {
        padding: 10px;
    }

    .page-contact__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}