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

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

.page-contact__hero {
    background: linear-gradient(135deg, #0A2239 0%, #1A3E5C 100%); /* Gradient for hero */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    border-bottom: 2px solid #FFD700;
}

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

.page-contact__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F8F8F8;
}

.page-contact__link-text {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-contact__link-text:hover {
    text-decoration: underline;
}

.page-contact__contact-methods,
.page-contact__contact-form,
.page-contact__cta {
    padding: 60px 0;
    background-color: #0A2239;
}

.page-contact__heading {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD700; /* Gold for section headings */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-contact__method-card {
    background-color: #1A3E5C; /* Darker 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-card: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 #FFD700);
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

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

.page-contact__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.0em;
}

.page-contact__button--email {
    background-color: #FFD700;
    color: #0A2239;
}

.page-contact__button--email:hover {
    background-color: #E6C200;
    color: #000;
}

.page-contact__button--chat {
    background-color: #4CAF50; /* Green for chat */
    color: #FFFFFF;
}

.page-contact__button--chat:hover {
    background-color: #45a049;
}

.page-contact__button--faq {
    background-color: #007BFF; /* Blue for FAQ */
    color: #FFFFFF;
}

.page-contact__button--faq:hover {
    background-color: #0056b3;
}

.page-contact__contact-form {
    background-color: #1A3E5C; /* Darker blue for form section */
    padding-bottom: 80px;
}

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

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

.page-contact__label {
    display: block;
    margin-bottom: 10px;
    color: #FFD700; /* Gold for labels */
    font-weight: bold;
    font-size: 1.1em;
}

.page-contact__input,
.page-contact__textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background-color: #0A2239; /* Input background */
    color: #F8F8F8;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.page-contact__input::placeholder,
.page-contact__textarea::placeholder {
    color: #A0A0A0;
}

.page-contact__input:focus,
.page-contact__textarea:focus {
    border-color: #E6C200;
    outline: none;
}

.page-contact__textarea {
    resize: vertical;
}

.page-contact__submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #FFD700;
    color: #0A2239;
    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__submit-button:hover {
    background-color: #E6C200;
    color: #000;
}

.page-contact__cta {
    text-align: center;
    background-color: #0A2239;
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-contact__button--primary {
    background-color: #FFD700;
    color: #0A2239;
    padding: 15px 35px;
    font-size: 1.1em;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__button--primary:hover {
    background-color: #E6C200;
    color: #000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__button--secondary {
    background-color: #1A3E5C;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 15px 35px;
    font-size: 1.1em;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-contact__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2239;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

    .page-contact__form {
        padding: 30px;
    }

    .page-contact__button--primary,
    .page-contact__button--secondary {
        padding: 12px 25px;
        font-size: 1em;
    }

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

@media (max-width: 480px) {
    .page-contact__hero,
    .page-contact__contact-methods,
    .page-contact__contact-form,
    .page-contact__cta {
        padding: 40px 0;
    }

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

    .page-contact__heading {
        font-size: 1.8em;
    }

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

    .page-contact__card-title {
        font-size: 1.5em;
    }

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

    .page-contact__form {
        padding: 20px;
    }

    .page-contact__submit-button {
        font-size: 1.1em;
    }
}