/* ==========================================================================
   SERVICE DETAIL PAGE STYLES (Iron Infusion)
   ========================================================================== */

/* 1. Hero Badges */
.extra-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--about-primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--about-shadow-soft);
    backdrop-filter: blur(5px);
}

.hero-badge i {
    color: var(--about-green);
    font-size: 1.1rem;
}

/* 2. Symptom Cards */
.symptom-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(31, 163, 106, 0.1);
    border-color: rgba(31, 163, 106, 0.2);
}

.symptom-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--about-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.symptom-card:hover .symptom-icon-wrapper {
    background: var(--about-green);
}

.symptom-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--about-green);
    transition: all 0.3s ease;
}

.symptom-card:hover .symptom-icon-wrapper i {
    color: white;
}

.symptom-card h5 {
    color: var(--srv-dark);
    font-weight: 700;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* 3. Premium Benefit Cards */
.benefit-card-premium {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--about-shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 163, 106, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(31, 163, 106, 0.15);
}

.benefit-card-premium:hover::before {
    opacity: 1;
}

.benefit-icon-premium {
    width: 50px;
    height: 50px;
    background: var(--caremed-green-gradient);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(31, 163, 106, 0.3);
}

/* 4. Google Style Reviews */
.google-review-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: transform 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-3px);
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--about-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.google-stars {
    color: #FBBC05;
    font-size: 1rem;
    margin-bottom: 10px;
}

.google-review-text {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
}

/* 5. Before & After Stories */
.before-after-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--about-shadow-soft);
}

.ba-split {
    display: flex;
    flex-wrap: wrap;
}

.ba-half {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    position: relative;
}

.ba-before {
    background: #FFF5F5;
}

.ba-after {
    background: #F0FDF4;
}

.ba-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba-before .ba-badge {
    background: #FFE3E3;
    color: #E03131;
}

.ba-after .ba-badge {
    background: #DCFCE7;
    color: #16A34A;
}

/* 6. Lead Form Section */
.lead-form-section {
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-green) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lead-form-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -50px;
}

.lead-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.lead-input {
    border-radius: 10px;
    padding: 12px 20px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.lead-input:focus {
    border-color: var(--about-green);
    box-shadow: 0 0 0 3px rgba(31, 163, 106, 0.2);
}

/* 8. Symptom Pillar Cards (Matching Homepage 6 Pillars style) */
.symptom-pillar-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 0px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.symptom-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(3, 43, 92, 0.10);
    border-color: rgba(3, 43, 92, 0.1);
    background: linear-gradient(135deg, rgb(183 228 164 / 14%) 0%, rgb(0 150 136 / 28%) 100%);
}

.icon-box-lg {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.symptom-pillar-card:hover .icon-box-lg {
    transform: scale(1.05);
}

.icon-box-orange {
    background: #ff980033;
    color: #fc6702;
}

.icon-box-green {
    background: rgba(81, 176, 54, 0.15);
    color: #51b036;
}

/* Inline SVG wrapper inside symptom icon boxes */
.sym-svg-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.sym-svg-wrap svg {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* 7. Vertical Timeline Customizations */
.timeline-running-line {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 2px;
    background: var(--about-green);
    height: 0%;
    /* Animated via JS */
    z-index: 1;
}

.timeline-icon {
    transition: all 0.4s ease;
}

.timeline-icon.active {
    background: var(--about-green) !important;
    color: white !important;
    border-color: var(--about-green) !important;
    box-shadow: 0 0 15px rgba(31, 163, 106, 0.4);
    transform: scale(1.1);
}