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

.page-contact__hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

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

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.8), rgba(255, 215, 0, 0.5)); /* #000080 to #FFD700 */
    z-index: -1;
}

.page-contact__hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.page-contact__title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-contact__btn-primary {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    color: #000066;
}

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

.page-contact__section-title {
    font-size: 2.5em;
    color: #000080; /* Dark Blue */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-contact__description {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

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

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

.page-contact__method-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-contact__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-contact__method-title {
    font-size: 1.5em;
    color: #000080; /* Dark Blue */
    margin-bottom: 15px;
}

.page-contact__method-text {
    color: #666;
    margin-bottom: 20px;
}

.page-contact__btn-secondary {
    display: inline-block;
    background-color: #000080; /* Dark Blue */
    color: #FFD700; /* Gold */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__btn-secondary:hover {
    background-color: #000066; /* Slightly darker blue */
    color: #ffe033;
}

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

.page-contact__contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-contact__form-label {
    display: block;
    font-weight: bold;
    color: #000080; /* Dark Blue */
    margin-bottom: 8px;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

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

.page-contact__contact-form .page-contact__btn-primary {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-contact__cta-section {
    position: relative;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

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

.page-contact__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 128, 0.85); /* Dark Blue overlay */
    z-index: -1;
}

.page-contact__cta-content {
    position: relative;
    z-index: 1;
}

.page-contact__section-title--light {
    color: #FFD700; /* Gold */
}

.page-contact__section-title--light::after {
    background-color: #fff;
}

.page-contact__description--light {
    color: #f0f0f0;
}

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

.page-contact__btn-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-contact__btn-cta:hover {
    background-color: #e6c200; /* Slightly darker gold */
    color: #000066;
    transform: translateY(-3px);
}

.page-contact__btn-cta--outline {
    background-color: transparent;
    border: 2px solid #FFD700; /* Gold */
    color: #FFD700; /* Gold */
}

.page-contact__btn-cta--outline:hover {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    border-color: #FFD700;
}

/* 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__contact-methods {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .page-contact__hero {
        height: 300px;
    }

    .page-contact__title {
        font-size: 2em;
    }

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

    .page-contact__contact-form {
        padding: 20px;
    }
}