/* ROOT CANAL TREATMENT DELHI PAGE */

.rct-hero {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.95), rgba(255, 107, 157, 0.95)),
                url('../images/dental-hero.jpg') center/cover;
    min-height: 550px;
    padding: 150px 0 100px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-badge i {
    font-size: 20px;
}

/* Opening */
.rct-opening {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.opening-box {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.08);
    border: 1px solid #FFE5EC;
    position: relative;
}

.opening-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.opening-icon i {
    font-size: 28px;
    color: white;
}

.opening-quote {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.opening-text {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* What is RCT */
.what-is-rct {
    padding: 100px 0;
    background: white;
}

.rct-explanation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.lead-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.explanation-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.analogy-box {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.analogy-box i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
    margin-top: 5px;
}

.analogy-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.tooth-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.diagram-card {
    flex: 1;
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #FFE5EC;
}

.diagram-card.infected {
    border-color: #ffc107;
}

.diagram-card.treated {
    border-color: #28a745;
}

.diagram-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.diagram-card.infected .diagram-icon {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.diagram-card.treated .diagram-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.diagram-icon i {
    font-size: 28px;
    color: white;
}

.diagram-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.diagram-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.diagram-arrow {
    font-size: 24px;
    color: #E91E63;
}

/* Symptoms */
.when-need-rct {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.symptom-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.symptom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.symptom-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.symptom-icon i {
    font-size: 35px;
    color: white;
}

.symptom-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.symptom-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.warning-note {
    max-width: 900px;
    margin: 50px auto 0;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-note i {
    font-size: 28px;
    color: #856404;
    flex-shrink: 0;
}

.warning-note p {
    font-size: 16px;
    color: #856404;
    margin: 0;
    line-height: 1.7;
}

/* Cost Section */
.rct-cost {
    padding: 100px 0;
    background: white;
}

.cost-overview {
    text-align: center;
    margin: 50px 0;
}

.cost-range-box {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.25);
}

.cost-label {
    display: block;
    font-size: 16px;
    color: white;
    opacity: 0.95;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cost-amount {
    font-size: 48px;
    font-weight: 700;
    color: white;
    font-family: 'Cormorant Garamond', serif;
}

.cost-table-section {
    max-width: 1100px;
    margin: 60px auto;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.08);
    border: 1px solid #FFE5EC;
}

.table-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
}

.pricing-table thead th {
    padding: 20px 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #FFE5EC;
}

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

.pricing-table tbody td {
    padding: 20px 15px;
    font-size: 15px;
    color: #333;
}

.complexity-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.complexity-badge.easy {
    background: #d4edda;
    color: #155724;
}

.complexity-badge.medium {
    background: #fff3cd;
    color: #856404;
}

.complexity-badge.complex {
    background: #f8d7da;
    color: #721c24;
}

.price-cell {
    font-size: 18px;
    font-weight: 700;
    color: #E91E63;
}

.cost-factors-section {
    max-width: 1000px;
    margin: 60px auto;
}

.cost-factors-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.factor-card {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #FFE5EC;
    transition: all 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
}

.factor-icon {
    font-size: 35px;
    color: #E91E63;
    margin-bottom: 15px;
}

.factor-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.factor-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cost-warning-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cost-warning-box i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
}

.cost-warning-box p {
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.7;
}

/* Molar RCT */
.molar-rct {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.molar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.molar-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 20px;
    font-weight: 600;
    color: #E91E63;
    margin-bottom: 15px;
}

.molar-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.molar-fact-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #FFE5EC;
    margin-top: 30px;
}

.molar-fact-box i {
    font-size: 40px;
    color: #E91E63;
    margin-bottom: 20px;
}

.fact-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.fact-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.fact-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E91E63;
    font-size: 24px;
    line-height: 1;
}

.comparison-cards {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tooth-comparison-card {
    flex: 1;
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #FFE5EC;
}

.tooth-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tooth-icon.front {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.tooth-icon.molar {
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
}

.tooth-icon i {
    font-size: 35px;
    color: white;
}

.tooth-comparison-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.canal-count {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.cost-range {
    font-size: 20px;
    font-weight: 700;
    color: #E91E63;
}

.vs-divider {
    font-size: 24px;
    font-weight: 700;
    color: #E91E63;
    flex-shrink: 0;
}

/* Pain Myth */
.pain-myth {
    padding: 100px 0;
    background: white;
}

.myth-buster {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 50px 0;
}

.myth-card {
    flex: 0 1 350px;
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #FFE5EC;
}

.myth-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.myth-icon.myth-false {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.myth-icon.myth-true {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.myth-icon i {
    font-size: 45px;
    color: white;
}

.myth-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.myth-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.myth-arrow {
    font-size: 36px;
    color: #E91E63;
}

.pain-explanation {
    max-width: 900px;
    margin: 0 auto;
}

.explanation-card {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #FFE5EC;
}

.explanation-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.explanation-card > p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.pain-facts {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.pain-fact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #FFE5EC;
}

.pain-fact-item:last-child {
    border-bottom: none;
}

.pain-fact-item i {
    font-size: 22px;
    color: #E91E63;
    flex-shrink: 0;
    margin-top: 3px;
}

.pain-fact-item span {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.pain-insight {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pain-insight i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
}

.pain-insight p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Laser RCT */
.laser-rct {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.laser-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.laser-benefits h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #FFE5EC;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 26px;
    color: white;
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.benefit-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.recommendation-box {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid #FFE5EC;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
}

.recommendation-box h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.recommendation-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.recommendation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.recommendation-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #FFE5EC;
}

.recommendation-list li:last-child {
    border-bottom: none;
}

.recommendation-list li i {
    font-size: 18px;
    color: #28a745;
}

.recommendation-list li span {
    font-size: 15px;
    color: #555;
}

.recommendation-note {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Best RCT */
.best-rct {
    padding: 100px 0;
    background: white;
}

.success-factors .intro-text {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.factors-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.success-card {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #FFE5EC;
    position: relative;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15);
}

.success-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.3);
}

.success-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
}

.success-icon i {
    font-size: 30px;
    color: #E91E63;
}

.success-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.success-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.failure-warning {
    max-width: 900px;
    margin: 50px auto 0;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.failure-warning i {
    font-size: 28px;
    color: #856404;
    flex-shrink: 0;
}

.failure-warning p {
    font-size: 16px;
    color: #856404;
    margin: 0;
    line-height: 1.7;
}

/* Crown Importance */
.crown-importance {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.crown-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.crown-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.crown-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.crown-analogy {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid #FFE5EC;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.crown-analogy i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
}

.crown-analogy p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.crown-warning-box {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.crown-warning-box i {
    font-size: 24px;
    color: #721c24;
    flex-shrink: 0;
}

.crown-warning-box p {
    font-size: 15px;
    color: #721c24;
    margin: 0;
    line-height: 1.7;
}

.crown-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.crown-scenario {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    border: 2px solid #FFE5EC;
}

.crown-scenario.without {
    border-color: #dc3545;
}

.crown-scenario.with {
    border-color: #28a745;
}

.scenario-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.crown-scenario.without .scenario-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.crown-scenario.with .scenario-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.scenario-icon i {
    font-size: 35px;
    color: white;
}

.crown-scenario h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.crown-scenario ul {
    list-style: none;
    padding: 0;
}

.crown-scenario ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: #555;
}

.crown-scenario ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 24px;
    line-height: 1;
}

.crown-scenario.without ul li::before {
    color: #dc3545;
}

.crown-scenario.with ul li::before {
    color: #28a745;
}

/* South Delhi */
.south-delhi-rct {
    padding: 80px 0;
    background: white;
}

.south-delhi-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 40px 50px;
    border-radius: 20px;
    border: 1px solid #FFE5EC;
    text-align: center;
}

.south-delhi-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.south-delhi-box > p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.location-insight {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.location-insight i {
    font-size: 28px;
    color: #E91E63;
    flex-shrink: 0;
}

.location-insight p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Save vs Extract */
.save-vs-extract {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.option-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    border: 2px solid #FFE5EC;
}

.option-card.save {
    border-color: #28a745;
}

.option-card.extract {
    border-color: #dc3545;
}

.option-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #FFE5EC;
}

.option-card.save .option-header {
    border-bottom-color: #28a745;
}

.option-card.extract .option-header {
    border-bottom-color: #dc3545;
}

.option-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.option-card.save .option-icon {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.option-card.extract .option-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.option-icon i {
    font-size: 40px;
    color: white;
}

.option-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.recommendation {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.recommendation:not(.caution) {
    background: #d4edda;
    color: #155724;
}

.recommendation.caution {
    background: #fff3cd;
    color: #856404;
}

.option-benefits h4,
.option-drawbacks h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.option-benefits ul,
.option-drawbacks ul {
    list-style: none;
    padding: 0;
}

.option-benefits ul li,
.option-drawbacks ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #FFE5EC;
}

.option-benefits ul li:last-child,
.option-drawbacks ul li:last-child {
    border-bottom: none;
}

.option-benefits ul li i {
    font-size: 18px;
    color: #28a745;
}

.option-drawbacks ul li i {
    font-size: 18px;
    color: #dc3545;
}

.option-cost {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-top: 25px;
}

.cost-label {
    display: block;
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.cost-value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #E91E63;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 5px;
}

.cost-note {
    display: block;
    font-size: 13px;
    color: #666;
}

.doctor-advice {
    max-width: 900px;
    margin: 50px auto 0;
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    border-left: 4px solid #E91E63;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.doctor-advice i {
    font-size: 32px;
    color: #E91E63;
    flex-shrink: 0;
}

.doctor-advice p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Longevity */
.rct-longevity {
    padding: 100px 0;
    background: white;
}

.longevity-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFE5EC 100%);
    padding: 50px 60px;
    border-radius: 20px;
    border: 1px solid #FFE5EC;
}

.longevity-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.longevity-answer {
    margin-bottom: 40px;
}

.answer-highlight {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.answer-highlight i {
    font-size: 40px;
    color: #E91E63;
    flex-shrink: 0;
}

.answer-highlight span {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
}

.longevity-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.longevity-factors h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.factors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.longevity-factors .factor-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.longevity-factors .factor-item i {
    font-size: 24px;
    color: #E91E63;
}

.longevity-factors .factor-item span {
    font-size: 14px;
    color: #555;
}

/* Cost Reduction */
.cost-reduction {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFF5F8 0%, #ffffff 100%);
}

.reduction-rule {
    text-align: center;
    margin: 50px 0;
}

.rule-box {
    display: inline-block;
    background: linear-gradient(135deg, #E91E63, #FF6B9D);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(233, 30, 99, 0.25);
}

.rule-box i {
    font-size: 50px;
    color: white;
    margin-bottom: 20px;
}

.rule-box h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.rule-text {
    font-size: 32px;
    font-weight: 700;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

.early-intervention {
    max-width: 900px;
    margin: 60px auto;
}

.early-intervention h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

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

.intervention-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #FFE5EC;
}

.intervention-card i {
    font-size: 40px;
    color: #E91E63;
    margin-bottom: 20px;
}

.intervention-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.intervention-card p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.delay-warning {
    max-width: 800px;
    margin: 50px auto 0;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.delay-warning i {
    font-size: 24px;
    color: #856404;
    flex-shrink: 0;
}

.delay-warning p {
    font-size: 16px;
    color: #856404;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .rct-explanation-grid, .molar-content, .laser-content-grid, .crown-content-grid, .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tooth-diagram { flex-direction: column; }
    .myth-buster { flex-direction: column; }
    .comparison-cards { flex-direction: column; }
}

@media (max-width: 768px) {
    .rct-hero { padding: 120px 0 80px; min-height: 450px; }
    .rct-opening, .what-is-rct, .when-need-rct, .rct-cost, .molar-rct, .pain-myth, .laser-rct, .best-rct, .crown-importance, .south-delhi-rct, .save-vs-extract, .rct-longevity, .cost-reduction { padding: 60px 0; }
    .opening-box, .longevity-box { padding: 40px 30px; }
    .section-header h2 { font-size: 32px; }
    .cost-table-section { padding: 25px 20px; }
    .pricing-table thead th, .pricing-table tbody td { padding: 12px 10px; font-size: 13px; }
}

@media (max-width: 480px) {
    .section-header h2 { font-size: 28px; }
    .opening-quote { font-size: 20px; }
    .cost-amount, .rule-text { font-size: 36px; }
    .feature-badge { padding: 12px 20px; font-size: 14px; }
}