/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #1A2A4A; /* Deep blue background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero {
    background: linear-gradient(135deg, #1A2A4A, #2A3B5B);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

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

.page-contact__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-description {
    font-size: 1.3em;
    color: #F0F0F0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2A4A;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__hero-button:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

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

/* Info Section */
.page-contact__info {
    padding: 60px 0;
    background-color: #1A2A4A;
    text-align: center;
}

.page-contact__info-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-contact__info-intro {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

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

.page-contact__card-text {
    color: #E0E0E0;
    margin-bottom: 25px;
}

.page-contact__card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2A4A;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact__card-button:hover {
    background-color: #E6C200;
}

/* Form Section */
.page-contact__form-section {
    background-color: #1A2A4A;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.page-contact__form-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
}

.page-contact__form-description {
    font-size: 1.1em;
    color: #C0C0C0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
}

.page-contact__form {
    background-color: #2A3B5B;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 100%;
    z-index: 2;
}

.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 #4A5C7A;
    border-radius: 5px;
    background-color: #3B4E6B;
    color: #F0F0F0;
    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;
    min-height: 120px;
}

.page-contact__form-submit-button {
    display: block;
    width: 100%;
    background-color: #FFD700;
    color: #1A2A4A;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__form-submit-button:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-contact__form-illustration {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

/* Location Section */
.page-contact__location {
    background-color: #1A2A4A;
    padding: 60px 0;
    text-align: center;
}

.page-contact__location-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-contact__location-description {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__address-map {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.page-contact__address {
    background-color: #2A3B5B;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    flex: 1 1 45%;
    min-width: 300px;
    color: #E0E0E0;
}

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

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

.page-contact__map-image {
    flex: 1 1 45%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Call to Action Section */
.page-contact__cta {
    background: linear-gradient(90deg, #1A2A4A, #3B4E6B);
    padding: 80px 20px;
    text-align: center;
}

.page-contact__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-contact__cta-description {
    font-size: 1.2em;
    color: #F0F0F0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2A4A;
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-contact__cta-button:hover {
    background-color: #E6C200;
    transform: scale(1.05);
}

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

    .page-contact__hero-description,
    .page-contact__info-intro,
    .page-contact__form-description,
    .page-contact__location-description,
    .page-contact__cta-description {
        font-size: 1em;
    }

    .page-contact__info-title,
    .page-contact__form-title,
    .page-contact__location-title,
    .page-contact__cta-title {
        font-size: 2em;
    }

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

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

    .page-contact__form-illustration {
        position: static;
        width: 80%;
        height: auto;
        margin-top: 30px;
        opacity: 0.3;
    }

    .page-contact__address-map {
        flex-direction: column;
    }

    .page-contact__address,
    .page-contact__map-image {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

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

    .page-contact__hero-button,
    .page-contact__card-button,
    .page-contact__form-submit-button,
    .page-contact__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-contact__form,
    .page-contact__address,
    .page-contact__info-card {
        padding: 25px;
    }
}