/* Contact Page Styles */

/* Hero Section */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-width: 280px;
    flex: 1;
    max-width: 300px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 36px;
    color: #fff;
}

.contact-icon-line {
    background: linear-gradient(135deg, #00c300 0%, #00a800 100%);
}

.contact-icon-messenger {
    background: linear-gradient(135deg, #0084ff 0%, #0066cc 100%);
}

.contact-icon-phone {
    background: linear-gradient(135deg, #99cd3c 0%, #7ab32a 100%);
}

.contact-card h3 {
    color: #333;
    font-size: 20px;
    margin: 0 0 8px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section .section-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #777;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-item.active .faq-question {
    color: #99cd3c;
    background: #fff;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: #777;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 28px;
        padding: 0 20px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-channels {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
    }

    .contact-card {
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }

    .faq-section {
        padding: 50px 0;
    }

    .faq-section .section-title {
        font-size: 22px;
        padding: 0 20px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 15px;
        font-size: 14px;
    }
}
