/**
 * Pricing Page Styles
 */

/* ========================================
   PRICING HERO
   ======================================== */

.doa-pricing-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.doa-pricing-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px 60px;
    width: 100% !important;
    max-width: 100% !important;
}

.doa-pricing-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px;
    color: #fff;
}

.doa-pricing-hero .hero-subtitle {
    font-size: 20px;
    margin: 0 0 40px;
    opacity: 0.95;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.save-badge {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(58, 157, 130, 0.9);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 5px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: all 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: #3a9d82;
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* ========================================
   PRICING SECTION
   ======================================== */

.doa-pricing-section {
    background: #f8f9fa;
    padding: 80px 0;
    width: 100% !important;
    max-width: 100% !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pricing Card */
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Card */
.pricing-card-featured {
    border: 3px solid #3a9d82;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3a9d82 0%, #2f7f6e 100%);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(58, 157, 130, 0.3);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
}

.plan-price {
    margin-bottom: 15px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #3a9d82;
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.plan-description {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Plan Features */
.plan-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    flex: 1;
}

.plan-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #e8f5f1;
    color: #3a9d82;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-disabled {
    opacity: 0.4;
}

.feature-disabled .feature-icon {
    background: #f0f0f0;
    color: #999;
}

/* Plan Buttons */
.plan-button {
    display: block;
    width: 100%;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.plan-button-primary {
    background: linear-gradient(135deg, #3a9d82 0%, #2f7f6e 100%);
    color: #fff;
    border: none;
}

.plan-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 157, 130, 0.4);
}

.plan-button-outline {
    background: #fff;
    color: #3a9d82;
    border: 2px solid #3a9d82;
}

.plan-button-outline:hover {
    background: #3a9d82;
    color: #fff;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.doa-pricing-faq {
    background: #fff;
    padding: 80px 0;
    width: 100% !important;
    max-width: 100% !important;
}

.doa-pricing-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 50px;
    color: #333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

.doa-pricing-cta {
    background: linear-gradient(135deg, #3a9d82 0%, #2f7f6e 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    width: 100% !important;
    max-width: 100% !important;
}

.doa-pricing-cta .cta-content h2 {
    color: #fff;
    font-size: 36px;
    margin: 0 0 15px;
}

.doa-pricing-cta .cta-content p {
    font-size: 18px;
    margin: 0 0 30px;
    opacity: 0.95;
}

.doa-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.doa-btn-light {
    background: #fff;
    color: #3a9d82;
}

.doa-btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .doa-pricing-hero {
        padding: 60px 20px 50px;
    }

    .doa-pricing-hero h1 {
        font-size: 36px;
    }

    .doa-pricing-hero .hero-subtitle {
        font-size: 16px;
    }

    .billing-toggle {
        flex-wrap: wrap;
        gap: 10px;
    }

    .doa-pricing-section {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price-amount {
        font-size: 40px;
    }

    .doa-pricing-faq {
        padding: 60px 0;
    }

    .doa-pricing-faq h2 {
        font-size: 28px;
    }

    .doa-pricing-cta {
        padding: 60px 20px;
    }

    .doa-pricing-cta .cta-content h2 {
        font-size: 28px;
    }
}
