/**
 * Contact Page Full Styles
 * Hero, Trust Badges, FAQ sections
 *
 * @package MW_Marketing
 * @version 1.0.0
 */

/* ========================================
   Page Wrapper
   ======================================== */

.mw-contact-page-wrapper {
    background: transparent;
}

/* ========================================
   Hero Section
   ======================================== */

.mw-contact-hero {
    background: transparent;
    padding: 80px 20px 40px 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .mw-contact-hero {
        padding: 60px 20px;
    }
}

.mw-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.mw-hero-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}

@media (max-width: 768px) {
    .mw-hero-title {
        font-size: 36px;
    }
}

.mw-hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .mw-hero-subtitle {
        font-size: 18px;
    }
}

/* ========================================
   Trust Badges Section - Minimalist
   ======================================== */

.mw-trust-badges {
    background: transparent;
    padding: 40px 20px 60px 20px;
}

@media (max-width: 768px) {
    .mw-trust-badges {
        padding: 30px 20px 40px 20px;
    }
}

.mw-trust-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .mw-trust-container {
        flex-direction: column;
        gap: 40px;
    }
}

.mw-trust-badge {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
}

.mw-trust-badge:hover {
    transform: none;
    box-shadow: none;
}

.mw-trust-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    color: #3533CD;
}

.mw-trust-icon svg {
    width: 32px;
    height: 32px;
}

.mw-trust-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #313131;
    margin: 0 0 6px 0;
}

.mw-trust-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #757575;
    margin: 0;
}

/* ========================================
   FAQ Section
   ======================================== */

.mw-faq-section {
    background: transparent;
    padding: 60px 20px 80px 20px;
}

@media (max-width: 768px) {
    .mw-faq-section {
        padding: 40px 20px 60px 20px;
    }
}

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

.mw-faq-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 50px 0;
}

@media (max-width: 768px) {
    .mw-faq-heading {
        font-size: 28px;
        margin: 0 0 30px 0;
    }
}

.mw-faq-item {
    margin-bottom: 20px;
    border: none !important;
    border-radius: 15px !important;
    overflow: hidden;
    background: #FFFFFF !important;
}

.mw-faq-question {
    width: 100%;
    padding: 20px 28px !important;
    background: #FFFFFF !important;
    border: none !important;
    border-radius: 15px !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px !important;
    color: #000000 !important;
    text-align: left;
}

.mw-faq-question span {
    flex: 1;
    padding-right: 20px;
}

.mw-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #3533CD !important;
    stroke-width: 3 !important;
    font-weight: 900 !important;
}

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

.mw-faq-answer {
    background: #FFFFFF !important;
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}

.mw-faq-item.active .mw-faq-answer {
    padding: 20px 28px;
    opacity: 1;
}

.mw-faq-answer p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #000000 !important;
    margin: 0;
}

/* ========================================
   Responsive Adjustments
   ======================================== */

@media (max-width: 768px) {
    .mw-faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }

    .mw-faq-answer p {
        font-size: 14px;
    }
}
