/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-contact__hero-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(139, 0, 0, 0.8));
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    /* Background image handled by placeholder in HTML */
}

.page-contact__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay to ensure text readability */
    z-index: 1;
}

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

.page-contact__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 2;
    color: #e0e0e0;
}

.page-contact__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
    font-size: 1.1em;
}

.page-contact__btn--hero,
.page-contact__btn--primary {
    background-color: #FFD700;
    color: #1a1a1a;
    border: 2px solid #FFD700;
}

.page-contact__btn--hero:hover,
.page-contact__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-contact__btn--secondary {
    background-color: #8B0000;
    color: #fff;
    border: 2px solid #8B0000;
}

.page-contact__btn--secondary:hover {
    background-color: #6a0000;
    transform: translateY(-3px);
}

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

/* General Sections */
.page-contact__why-contact,
.page-contact__channels-section,
.page-contact__faq-section,
.page-contact__feedback-section,
.page-contact__about-us-section {
    padding: 60px 0;
    text-align: center;
}

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

.page-contact__section-description {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #ccc;
}

/* Why Contact Grid */
.page-contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-contact__grid-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

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

.page-contact__grid-title {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-contact__grid-text {
    color: #e0e0e0;
}

/* Channels Section */
.page-contact__channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-contact__channel-card:hover {
    transform: translateY(-5px);
}

.page-contact__channel-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Allowed for glow, not color change */
}

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

.page-contact__channel-text {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-contact__email-address,
.page-contact__phone-number {
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-contact__social-note {
    margin-top: 50px;
    font-style: italic;
    color: #bbb;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.page-contact__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__faq-item {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-contact__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-contact__faq-answer {
    color: #e0e0e0;
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
    padding-left: 10px;
    border-left: 3px solid #8B0000;
}

.page-contact__faq-question.active + .page-contact__faq-answer {
    display: block;
}

/* About Us Section */
.page-contact__about-us-section .page-contact__text {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #e0e0e0;
}

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

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

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

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

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

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

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

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

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