/* style/contact.css */

.page-contact {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-contact__hero {
    position: relative;
    background-image: url('[GALLERY:hero:contact,support,team,professional]');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.page-contact__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 35, 66, 0.7);
    z-index: 1;
}

.page-contact__hero .page-contact__container {
    position: relative;
    z-index: 2;
}

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

.page-contact__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.page-contact__info-card:hover {
    transform: translateY(-10px);
    background-color: #2a4a70;
}

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

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

.page-contact__info-text {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.5;
}

.page-contact__info-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__info-link:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-contact__info-link--cta {
    background-color: #FFD700;
    color: #0A2342;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    text-decoration: none;
    margin-top: 15px;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__info-link--cta:hover {
    background-color: #e6c200;
    color: #000000;
}

/* Form Section */
.page-contact__form-section {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

.page-contact__section-title {
    font-size: 2.8em;
    color: #0A2342;
    margin-bottom: 20px;
}

.page-contact__section-description {
    font-size: 1.1em;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-contact__form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

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

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

.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;
    color: #333;
    background-color: #fefefe;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-contact__form-submit-btn:hover {
    background-color: #e6c200;
    color: #000000;
}

/* CTA Section */
.page-contact__cta-section {
    background-color: #0A2342;
    padding: 60px 0;
    color: #FFFFFF;
    text-align: center;
}

.page-contact__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.page-contact__cta-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-contact__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-contact__cta-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-contact__cta-btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__cta-btn:hover {
    background-color: #e6c200;
    color: #000000;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-contact__cta-content {
        flex-direction: row;
        text-align: left;
    }
    .page-contact__cta-image {
        max-width: 40%;
    }
    .page-contact__cta-text-content {
        text-align: left;
    }
    .page-contact__cta-btn {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-contact__hero-title {
        font-size: 2.5em;
    }
    .page-contact__hero-description {
        font-size: 1em;
    }
    .page-contact__info-grid {
        grid-template-columns: 1fr;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__form {
        padding: 30px;
    }
    .page-contact__cta-title {
        font-size: 2.2em;
    }
    .page-contact__cta-btn {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 80px 0;
        min-height: 250px;
    }
    .page-contact__hero-title {
        font-size: 2em;
    }
    .page-contact__info-section,
    .page-contact__form-section,
    .page-contact__cta-section {
        padding: 40px 0;
    }
    .page-contact__info-card {
        padding: 20px;
    }
    .page-contact__form {
        padding: 20px;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__cta-title {
        font-size: 1.8em;
    }
    .page-contact__cta-btn {
        font-size: 1em;
        padding: 10px 20px;
    }
}