/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2F4F4F; /* Dark Slate Gray for main text */
    background-color: #f8f8f8;
}

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

.page-contact__hero {
    background: linear-gradient(135deg, #FFD700, #b39700); /* Gradient from gold to darker gold */
    color: #2F4F4F; /* Dark text on light background */
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-contact__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #2F4F4F; /* Ensure good contrast */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.page-contact__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #2F4F4F;
}

.page-contact__cta-button {
    display: inline-block;
    background-color: #2F4F4F; /* Dark Slate Gray for button background */
    color: #FFD700; /* Gold text on dark background */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #2F4F4F;
}

.page-contact__cta-button:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #2F4F4F; /* Dark text on gold background */
    border-color: #2F4F4F;
}

.page-contact__section {
    padding: 60px 0;
}

.page-contact__section:nth-of-type(odd) {
    background-color: #ffffff;
}

.page-contact__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #2F4F4F;
    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;
    border-radius: 2px;
}

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

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

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

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

.page-contact__method-icon, .page-contact__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-contact__card-title {
    font-size: 1.8em;
    color: #2F4F4F;
    margin-bottom: 15px;
}

.page-contact__card-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.page-contact__card-link {
    color: #FFD700; /* Gold link */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-contact__card-link:hover {
    color: #2F4F4F; /* Dark Slate Gray on hover */
}

.page-contact__social-links {
    margin-top: 20px;
}

.page-contact__social-icon {
    display: inline-block;
    background-color: #FFD700;
    color: #2F4F4F;
    padding: 8px 15px;
    border-radius: 5px;
    margin: 0 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-icon:hover {
    background-color: #2F4F4F;
    color: #FFD700;
}

.page-contact__contact-form {
    background-color: #f0f0f0;
}

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

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

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

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

.page-contact__form-input:focus, .page-contact__form-textarea:focus {
    border-color: #FFD700;
    outline: none;
}

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

.page-contact__submit-button {
    display: block;
    width: 100%;
    background-color: #FFD700; /* Gold button */
    color: #2F4F4F; /* Dark text on gold */
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__submit-button:hover {
    background-color: #2F4F4F; /* Dark background on hover */
    color: #FFD700; /* Gold text on hover */
}

.page-contact__faq-list {
    margin-top: 40px;
}

.page-contact__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-contact__faq-question {
    font-size: 1.3em;
    color: #2F4F4F;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-contact__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-contact__faq-answer {
    font-size: 1em;
    color: #555;
    padding-top: 10px;
    border-top: 1px solid #eee;
    display: none; /* Hidden by default, JS will toggle */
}

.page-contact__faq-answer.show {
    display: block;
}

.page-contact__why-us {
    background-color: #2F4F4F; /* Dark background for this section */
    color: #FFD700; /* Gold text */
    text-align: center;
}

.page-contact__why-us .page-contact__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-contact__why-us .page-contact__section-title::after {
    background-color: #FFD700;
}

.page-contact__why-us .page-contact__section-intro {
    color: #e0e0e0;
}

.page-contact__why-us .page-contact__feature-card {
    background-color: #4a6a6a; /* Slightly lighter dark background for cards */
    color: #ffffff;
}

.page-contact__why-us .page-contact__card-title {
    color: #FFD700;
}

.page-contact__why-us .page-contact__card-text {
    color: #e0e0e0;
}

.page-contact__outro-text {
    font-size: 1.2em;
    color: #FFD700;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-contact__cta-button--bottom {
    background-color: #FFD700;
    color: #2F4F4F;
    border-color: #FFD700;
}

.page-contact__cta-button--bottom:hover {
    background-color: #b39700;
    color: #2F4F4F;
    border-color: #b39700;
}

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

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

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

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

    .page-contact__form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero-title {
        font-size: 2em;
    }

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

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

    .page-contact__section {
        padding: 40px 0;
    }

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

    .page-contact__form {
        padding: 20px;
    }

    .page-contact__faq-question {
        font-size: 1.1em;
    }
}