/* ===========================================
   PRICING PAGES - SHARED STYLES
   =========================================== */

/* Hero Section */
.pricing-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dna-navy) 0%, #002855 50%, #0d4a47 100%);
    overflow: hidden;
    text-align: center;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 156, 126, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 156, 126, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-hero .hero-badge {
    display: inline-block;
    background: rgba(14, 156, 126, 0.2);
    color: #0E9C7E;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pricing-hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.pricing-hero h1 span {
    color: #0E9C7E;
}

.pricing-hero .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.pricing-hero .hero-price-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 156, 126, 0.15);
    border: 1px solid rgba(14, 156, 126, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing-hero .hero-price-highlight i {
    color: #0E9C7E;
    font-size: 1.3rem;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.calculator-section .section-badge {
    display: inline-block;
    background: rgba(14, 156, 126, 0.1);
    color: #0E9C7E;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.calculator-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dna-navy);
    margin-bottom: 15px;
}

.calculator-section .section-subtitle {
    color: #6c757d;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Calculator Card */
.calculator-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.calc-step {
    margin-bottom: 30px;
}

.calc-step label {
    display: block;
    font-weight: 600;
    color: var(--dna-navy);
    margin-bottom: 10px;
    font-size: 1rem;
}

.calc-step input[type="number"],
.calc-step input[type="text"],
.calc-step select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
}

.calc-step input:focus,
.calc-step select:focus {
    border-color: #0E9C7E;
    outline: none;
    background: #fff;
}

.calc-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0E9C7E;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 10px;
}

.btn-calculate {
    background: linear-gradient(135deg, #0E9C7E 0%, #0A7A62 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 156, 126, 0.4);
    color: #fff;
}

/* Pricing Result */
.pricing-result {
    display: none;
    background: linear-gradient(135deg, var(--dna-navy) 0%, #002855 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    text-align: center;
    color: #fff;
}

.pricing-result.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.pricing-result .result-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #0E9C7E;
    margin: 15px 0 5px;
}

.pricing-result .result-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.pricing-result .result-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 15px;
}

/* Feature Pills */
.pricing-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pricing-feature-pill {
    background: #fff;
    border-radius: 16px;
    padding: 24px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 200px;
    transition: all 0.3s ease;
}

.pricing-feature-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-feature-pill i {
    font-size: 2rem;
    color: #0E9C7E;
    margin-bottom: 12px;
    display: block;
}

.pricing-feature-pill h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dna-navy);
    margin: 0;
}

/* How We Charge Section */
.how-we-charge-section {
    padding: 100px 0;
    background: #fff;
}

.how-we-charge-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dna-navy);
    margin-bottom: 50px;
}

.charge-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.charge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0E9C7E, #0A7A62);
    border-radius: 4px 0 0 4px;
}

.charge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.charge-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(14, 156, 126, 0.15), rgba(14, 156, 126, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.charge-card .card-icon i {
    font-size: 1.4rem;
    color: #0E9C7E;
}

.charge-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dna-navy);
    margin-bottom: 15px;
}

.charge-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
}

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

.faq-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dna-navy);
    margin-bottom: 50px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 22px 30px;
    font-weight: 600;
    color: var(--dna-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #0E9C7E;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #0E9C7E;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #6c757d;
    line-height: 1.7;
}

.faq-answer.active {
    padding: 0 30px 22px;
    max-height: 300px;
}

/* CTA Section */
.pricing-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dna-navy) 0%, #002855 100%);
    text-align: center;
}

.pricing-cta-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.pricing-cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.pricing-cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0E9C7E 0%, #0A7A62 100%);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta-section .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 156, 126, 0.4);
}

.pricing-cta-section .btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.pricing-cta-section .btn-cta-outline:hover {
    border-color: #0E9C7E;
    color: #0E9C7E;
}

/* Contact Form Section */
.pricing-contact-section {
    padding: 100px 0;
    background: #fff;
}

.pricing-contact-section h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dna-navy);
    margin-bottom: 10px;
}

.pricing-contact-section .section-subtitle {
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-form-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-card .form-control {
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
}

.contact-form-card .form-control:focus {
    border-color: #0E9C7E;
    box-shadow: none;
}

.contact-form-card textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

/* EOR Pricing Specific */
.eor-pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.eor-price-card {
    background: #fff;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.eor-price-card.featured {
    border: 2px solid #0E9C7E;
    transform: scale(1.03);
}

.eor-price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -35px;
    background: #0E9C7E;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.eor-price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.eor-price-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.eor-price-card .card-icon-lg {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(14, 156, 126, 0.15), rgba(14, 156, 126, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.eor-price-card .card-icon-lg i {
    font-size: 1.8rem;
    color: #0E9C7E;
}

.eor-price-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--dna-navy);
    margin-bottom: 10px;
}

.eor-price-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0E9C7E;
    margin-bottom: 5px;
}

.eor-price-card .price-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.eor-price-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-hero h1 {
        font-size: 2.4rem;
    }
    
    .calculator-card {
        padding: 30px;
    }
    
    .how-we-charge-section h2,
    .faq-section h2,
    .calculator-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .pricing-hero {
        padding: 150px 0 80px;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-features {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-feature-pill {
        min-width: unset;
        width: 100%;
        max-width: 300px;
    }
    
    .calculator-card {
        padding: 25px;
    }
    
    .pricing-cta-section .btn-cta-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .eor-pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .eor-price-card {
        max-width: 100%;
    }
    
    .eor-price-card.featured {
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
