/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2342; /* Main dark blue background */
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #0A2342 0%, #1A3F6D 100%); /* Dark blue gradient */
    padding: 80px 20px;
    gap: 40px;
}

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

.page-contact__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold accent for titles */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-contact__hero-description {
    font-size: 1.15em;
    color: #B0C4DE; /* Lighter blue for descriptive text */
    margin-bottom: 30px;
}

.page-contact__hero-image {
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-contact__hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent for section titles */
    text-align: center;
    margin: 60px 0 25px;
    font-weight: 600;
}

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

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

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

.page-contact__method-item {
    background-color: #1A3F6D; /* Slightly lighter dark 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;
}

.page-contact__method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow for icons */
}

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

.page-contact__method-text {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 25px;
}

.page-contact__email-address {
    font-size: 1.1em;
    color: #FFD700;
    font-weight: bold;
    margin-top: 15px;
}

.page-contact__btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-contact__btn:hover {
    background-color: #E6C200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-contact__btn--primary {
    background-color: #FFD700;
    color: #0A2342;
}

.page-contact__btn--primary:hover {
    background-color: #E6C200;
}

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

.page-contact__btn--secondary:hover {
    background-color: #1A3F6D;
    color: #FFD700;
}

.page-contact__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(90deg, #0A2342, #1A3F6D); /* Dark blue gradient */
    padding: 60px 20px;
    margin: 80px auto;
    border-radius: 15px;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: center;
    gap: 40px;
}

.page-contact__cta-content {
    max-width: 800px;
}

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

.page-contact__cta-description {
    font-size: 1.15em;
    color: #B0C4DE;
    margin-bottom: 40px;
}

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

.page-contact__cta-image {
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.page-contact__cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-contact__form-section {
    max-width: 800px;
    margin: 80px auto 40px;
    padding: 0 20px;
}

.page-contact__form {
    background-color: #1A3F6D; /* Dark blue for form background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #0A2342;
    border-radius: 5px;
    background-color: #0A2342; /* Even darker input background */
    color: #E0E0E0;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #8899AA;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    outline: none;
}

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

.page-contact__btn--submit {
    width: 100%;
    padding: 15px 0;
    font-size: 1.2em;
    background-color: #FFD700;
    color: #0A2342;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    .page-contact__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-contact__hero-content {
        margin-right: 40px;
    }

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

    .page-contact__hero-description {
        font-size: 1.25em;
    }

    .page-contact__method-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-contact__cta {
        flex-direction: row;
        text-align: left;
        padding: 80px 40px;
        gap: 60px;
    }

    .page-contact__cta-content {
        margin-right: 40px;
    }

    .page-contact__cta-title {
        font-size: 3.5em;
    }

    .page-contact__cta-buttons {
        justify-content: flex-start;
    }

    .page-contact__form-section {
        margin: 100px auto 60px;
    }
}

@media (max-width: 767px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__method-item {
        padding: 25px;
    }
    .page-contact__method-title {
        font-size: 1.5em;
    }
    .page-contact__cta-title {
        font-size: 2.2em;
    }
    .page-contact__cta-description {
        font-size: 1em;
    }
    .page-contact__cta-buttons {
        flex-direction: column;
    }
    .page-contact__btn {
        width: 100%;
    }
}