/* style/contact.css */

/* General styling for the contact page */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Hero Section */
.page-contact__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #CC0000 0%, #FFCC00 100%); /* Main and auxiliary colors */
    padding: 60px 20px;
    color: #FFFFFF; /* White text on dark/colorful background */
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

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

.page-contact__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-contact__title .highlight {
    color: #FFCC00; /* Auxiliary color for highlight */
}

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

.page-contact__description .keyword {
    font-weight: bold;
    color: #FFCC00;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Auxiliary color for button */
    color: #CC0000; /* Main color for text on button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 180px;
}

.page-contact__cta-button:hover {
    background-color: #e6b800; /* Slightly darker yellow on hover */
    transform: translateY(-2px);
}

.page-contact__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1; /* Subtly blend background image */
    z-index: 0;
    pointer-events: none;
}

.page-contact__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Methods Section */
.page-contact__methods {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.page-contact__subtitle {
    font-size: 2em;
    color: #CC0000; /* Main color for subtitles */
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}

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

.page-contact__method-item {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.page-contact__method-item:hover {
    transform: translateY(-5px);
}

.page-contact__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-contact__method-title {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 15px;
}

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

.page-contact__method-button {
    display: inline-block;
    background-color: #CC0000; /* Main color for buttons */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    min-width: 150px;
}

.page-contact__method-button:hover {
    background-color: #a30000; /* Darker red on hover */
}

/* Contact Form Section */
.page-contact__form-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.page-contact__description-small {
    color: #666;
    margin-bottom: 30px;
    text-align: center;
}

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

.page-contact__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFCC00; /* Auxiliary color on focus */
    outline: none;
}

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

.page-contact__form-submit-button {
    display: block;
    width: 100%;
    background-color: #CC0000; /* Main color for submit button */
    color: #FFFFFF;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-contact__form-submit-button:hover {
    background-color: #a30000; /* Darker red on hover */
}

/* FAQ Section */
.page-contact__faq {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 20px;
}

.page-contact__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #FFCC00; /* Auxiliary color accent */
}

.page-contact__faq-question {
    font-size: 1.25em;
    color: #CC0000; /* Main color for questions */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-contact__faq-question .highlight {
    color: #FFCC00;
}

.page-contact__faq-question .keyword {
    font-weight: bold;
    color: #CC0000;
}

.page-contact__faq-answer {
    color: #555;
    line-height: 1.8;
}

.page-contact__faq-answer .keyword {
    font-weight: bold;
    color: #CC0000;
}

.page-contact__faq-answer a {
    color: #007bff; /* Standard link color */
    text-decoration: underline;
}

.page-contact__faq-answer a:hover {
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-contact__hero {
        padding: 40px 15px;
    }

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

    .page-contact__description {
        font-size: 1em;
    }

    .page-contact__subtitle {
        font-size: 1.7em;
    }

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

    .page-contact__form-section {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .page-contact__form-input,
    .page-contact__form-textarea {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-contact__title {
        font-size: 1.8em;
    }

    .page-contact__subtitle {
        font-size: 1.5em;
    }

    .page-contact__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}