/* ===========================
   CONDITION PAGES CSS
   For individual condition treatment pages
   =========================== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    margin-top: 80px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-green);
}

.breadcrumb .separator {
    color: var(--gray-medium);
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* Condition Hero Section */
.condition-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.condition-hero .hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.condition-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.condition-hero h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.condition-symptoms {
    background: white;
    border-left: 4px solid var(--primary-green);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.condition-symptoms h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.symptom-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.symptom-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.symptom-list li i {
    color: var(--primary-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Understanding the Condition Section */
.condition-understanding {
    padding: 80px 0;
    background: white;
}

.understanding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.understanding-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.understanding-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.understanding-card .card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.understanding-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.understanding-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.understanding-card p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.condition-types,
.symptom-details {
    list-style: none;
    padding: 0;
}

.condition-types li,
.symptom-details li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    color: var(--text-dark);
}

.condition-types li:last-child,
.symptom-details li:last-child {
    border-bottom: none;
}

.condition-types li strong {
    color: var(--primary-blue);
}

/* Treatment Approach Section */
.treatment-approach {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.approach-timeline {
    margin-top: 50px;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-green);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 12px;
}

.timeline-content ul {
    margin-top: 15px;
    padding-left: 20px;
}

.timeline-content ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* Expected Results Section */
.expected-results {
    padding: 80px 0;
    background: white;
}

.results-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.result-phase {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.result-phase:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.phase-header {
    margin-bottom: 20px;
}

.phase-duration {
    display: inline-block;
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.phase-header h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.phase-content li i {
    color: var(--primary-green);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.story-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}

.story-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.story-avatar i {
    font-size: 1.8rem;
    color: white;
}

.story-header h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.story-condition {
    font-size: 0.85rem;
    color: var(--gray-dark);
    font-style: italic;
}

.story-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.story-content strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.story-result {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--light-bg);
}

.result-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.result-time {
    background: var(--light-bg);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .condition-hero .hero-content {
        grid-template-columns: 1fr;
    }
    
    .understanding-grid {
        grid-template-columns: 1fr;
    }
    
    .results-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* Symptoms Checklist Styles */
.symptoms-checklist {
    margin: 30px 0;
}

.symptoms-checklist h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.symptom-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 10px;
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
}

.symptom-item:hover {
    border-color: var(--primary-green);
    background: var(--light-bg);
    transform: translateX(5px);
}

.symptom-item i {
    font-size: 1.2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.symptom-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .condition-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .symptom-list {
        grid-template-columns: 1fr;
    }
    
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    
    .symptom-item {
        padding: 10px 12px;
    }
    
    .results-timeline {
        grid-template-columns: 1fr;
    }
    
    .approach-timeline::before {
        left: 25px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .timeline-item {
        gap: 15px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===========================
   PRICING & RESULTS SECTIONS
   =========================== */

/* Results Section */
.results-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.results-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.results-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 50px;
    font-style: italic;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 50px;
}

/* Timeline Table (Expected Results) */
.timeline-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.timeline-table thead {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0a3d6e 100%);
}

.timeline-table th {
    padding: 25px 20px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    border-right: 2px solid rgba(255,255,255,0.2);
}

.timeline-table th:last-child {
    border-right: none;
}

.timeline-table th .subtitle {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.timeline-table td {
    padding: 30px 25px;
    vertical-align: top;
    border-right: 2px solid var(--light-bg);
    border-bottom: 2px solid var(--light-bg);
}

.timeline-table td:last-child {
    border-right: none;
}

.timeline-table tbody tr:last-child td {
    border-bottom: none;
}

.timeline-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-table li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px dashed #e0e0e0;
}

.timeline-table li:last-child {
    border-bottom: none;
}

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-green) 0%, #008060 100%);
}

.pricing-table th {
    padding: 25px 20px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-right: 2px solid rgba(255,255,255,0.2);
}

.pricing-table th:last-child {
    border-right: none;
}

.pricing-table td {
    padding: 25px 20px;
    vertical-align: top;
    border-right: 2px solid var(--light-bg);
    border-bottom: 2px solid var(--light-bg);
    font-size: 1rem;
    line-height: 1.8;
}

.pricing-table td:last-child {
    border-right: none;
}

.pricing-table tbody tr {
    transition: all 0.3s;
}

.pricing-table tbody tr:hover {
    background: #f8f9fa;
    transform: scale(1.01);
}

.pricing-table tbody tr.recommended {
    background: #fff9e6;
    border-left: 5px solid var(--primary-green);
}

.pricing-table tbody tr.recommended:hover {
    background: #fff5d6;
}

.pricing-table .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.pricing-table .payment-options {
    font-size: 0.9rem;
    color: var(--gray-dark);
    font-style: italic;
}

.badge-recommended {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
    vertical-align: middle;
}

.pricing-notes {
    margin-top: 40px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 5px solid var(--primary-blue);
}

.pricing-notes p {
    margin: 12px 0;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-notes i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Mobile Responsive Tables */
@media (max-width: 768px) {
    .timeline-table th,
    .timeline-table td {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .timeline-table th {
        font-size: 1rem;
    }
    
    .timeline-table li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .pricing-table .price {
        font-size: 1.1rem;
    }
    
    .pricing-notes {
        padding: 20px;
    }
    
    .pricing-notes p {
        font-size: 0.9rem;
    }
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-green);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.faq-question i {
    color: var(--primary-blue);
    transition: transform 0.3s;
    font-size: 1.2rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

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

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
}