/* =========================================
   GLOBAL STYLES & VARIABLES
   ========================================= */

:root {
    /* Color Palette */
    --primary-red: #cb0c0c;
    --dark-red: #952624;
    --accent-orange: #952624;
    --success-green: #00c853;
    --info-blue: #2196f3;
    --warning-yellow: #ffa000;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f7fa;
    --border-gray: #e8ecef;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

 
.storybanner-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: var(--spacing-xxl) 0 var(--spacing-xl) 0;
    overflow: hidden;
 
}

.storybanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.storybanner-content {
    position: relative;
    z-index: 10;
    padding: 60px 0;
}

.storybanner-image-wrapper {
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

.storybanner-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.storybanner-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-round);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.storybanner-text {
    color: var(--white);
    animation: fadeInRight 0.8s ease-out;
}

.storybanner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.storybanner-title {
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-secondary);
}

.storybanner-subtitle {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.storybanner-stats {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
}

.storybanner-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.storybanner-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.storybanner-wave path {
    fill: var(--bg-secondary);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================
   READING PROGRESS BAR
   ========================================= */

.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(203, 12, 12, 0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
    width: 0%;
    transition: width 0.1s ease;
}

/* =========================================
   NAVIGATION
   ========================================= */

.stry-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.back-link:hover {
    color: var(--primary-red);
    background: var(--light-gray);
    gap: 0.75rem;
}

.nav-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light-gray);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.action-btn:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* =========================================
   HERO SECTION
   ========================================= */

.stry-hero {
    position: relative;
     
    padding: 2rem 0 0;
    overflow: hidden;
}

.scsty-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
}

.scsty-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 0.8s ease both;
}

.scsty-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.scsty-category i {
    font-size: 1.1rem;
}

.scsty-title {
 
    font-size: 2.5rem;
    font-weight: 800;
 
    line-height: 1.2;
 
}

.scsty-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.meta-divider {
    opacity: 0.5;
}

/* Wave SVG */
.scsty-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.scsty-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-path {
    fill: var(--off-white);
}

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

/* =========================================
   STORY CONTENT
   ========================================= */
/* 
.stry-section {
    padding: 2rem 0;
} */

.stry-content {
    animation: fadeIn 0.8s ease both 0.3s;
}

/* Featured Image */
.featured-image {
    margin-bottom: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    color: var(--text-medium);
    font-size: 0.9rem;
    font-style: italic;
}

.image-caption i {
    color: var(--info-blue);
}

/* Content Blocks */
.content-block {
    margin-bottom: 2.5rem;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.9;
}

/* Section Headings */
.snty-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
     
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem 0;
}

.heading-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Inline Links */
.inline-link {
        color: var(--primary-red);
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    transition: var(--transition);
    font-weight: 600;
}

.inline-link:hover {
    border-bottom-color: var(--primary-red);
}

/* =========================================
   HIGHLIGHT BOXES
   ========================================= */

.highlight-box {
    background: linear-gradient(135deg, #fff5f5, #ffe9e9);
    border-left: 5px solid var(--primary-red);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.highlight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-box h3 {
     
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.highlight-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.8;
}

/* =========================================
   QUOTE BLOCK
   ========================================= */

.quote-block {
    position: relative;
    background: linear-gradient(135deg, var(--light-gray), var(--off-white));
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
}

.quote-decoration {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
}

blockquote {
    margin: 0;
    padding: 0;
}

blockquote p {
    font-family: 'Lora', serif;
    font-size: 1.35rem;
    font-weight: 500;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.quote-author {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   INFO CARDS
   ========================================= */

.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--info-blue), #42a5f5);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.info-card-body {
    padding-left: 0;
}

/* Doctor Quote */
.doctor-quote {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.doctor-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

 .dr-info .doctor-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

 .dr-info .doctor-title {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
}

/* =========================================
   TRANSFORMATION TIMELINE
   ========================================= */

.transformation-timeline {
    margin:2rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-item {
    padding: 2rem;
    border-radius: var(--radius-md);
    /* margin-bottom: 1.5rem; */
}

.timeline-item.before {
    background: linear-gradient(135deg, #fff5f5, #ffe9e9);
    border-left: 5px solid #e57373;
}

.timeline-item.after {
    background: linear-gradient(135deg, #f1f8f4, #e8f5e9);
    border-left: 5px solid var(--success-green);
}

.timeline-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.timeline-item.before .timeline-marker {
    background: #e57373;
    color: var(--white);
}

.timeline-item.after .timeline-marker {
    background: var(--success-green);
    color: var(--white);
}

.timeline-content h3 {
     
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: .25rem !important;
    font-style: italic;
}

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

.timeline-list li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.timeline-list i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.timeline-item.before .timeline-list i {
    color: #e57373;
}

.timeline-item.after .timeline-list i {
    color: var(--success-green);
}

/* Timeline Divider */
.timeline-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.divider-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   RESULT HIGHLIGHT
   ========================================= */

.result-highlight {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #e8f5e9, #f1f8f4);
    border-left: 5px solid var(--success-green);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-md);
}

.result-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--success-green);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 2rem;
    flex-shrink: 0;
}

.result-content h3 {
     
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.result-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.8;
}

/* =========================================
   STATISTICS GRID
   ========================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-red);
}

.stat-card.highlight {
    background: linear-gradient(135deg, var(--success-green), #00e676);
    border-color: var(--success-green);
}

.stat-card.highlight .stat-icon,
.stat-card.highlight .stat-number,
.stat-card.highlight .stat-label {
    color: var(--white);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* =========================================
   MESSAGE CARD
   ========================================= */

.message-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    margin: 1rem 0;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.message-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.message-content {
    position: relative;
    z-index: 2;
}
.message-content .inline-link{color: #fff; }

.message-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.message-content h3 {
     
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.message-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.message-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
}

/* =========================================
   AUTHOR SECTION
   ========================================= */

.author-section {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 2px solid var(--border-gray);
    border-bottom: 2px solid var(--border-gray);
}

.author-card {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.author-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================================
   SHARE SECTION
   ========================================= */

.share-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.share-header h3 {
     
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.share-header p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.share-btn i {
    font-size: 1.1rem;
}

.share-btn.facebook {
    background: #1877f2;
    color: var(--white);
}

.share-btn.facebook:hover {
    background: #0d65d9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn.twitter {
    background: #000000;
    color: var(--white);
}

.share-btn.twitter:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn.linkedin {
    background: #0a66c2;
    color: var(--white);
}

.share-btn.linkedin:hover {
    background: #004182;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn.whatsapp {
    background: #25d366;
    color: var(--white);
}

.share-btn.whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn.email {
    background: var(--text-medium);
    color: var(--white);
}

.share-btn.email:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn.copy {
    background: var(--light-gray);
    color: var(--text-dark);
}

.share-btn.copy:hover {
    background: var(--border-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   RELATED STORIES
   ========================================= */

.related-section {
    padding: 3.6rem 0;
    background: var(--light-gray);
}

.snty-header {
    text-align: center;
    margin-bottom: 3rem;
}

.snty-title {
     
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.snty-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.stry-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.stry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stry-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.stry-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.stry-card:hover .stry-card-image img {
    transform: scale(1.1);
}

.stry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.stry-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
}

.stry-badge.kidney {
    background: linear-gradient(135deg, #e91e63, #f06292);
}

.stry-badge.diabetes {
    background: linear-gradient(135deg, #ff9800, #ffa726);
}

.stry-badge.recovery {
    background: linear-gradient(135deg, var(--success-green), #66bb6a);
}

.stry-card-content {
    padding: 1.75rem;
}

.stry-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.stry-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.stry-card-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    gap: 0.75rem;
    color: var(--dark-red);
}

/* =========================================
   CTA SECTION
   ========================================= */

.cta-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, #7a1f1d 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 2%, transparent 0%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 2%, transparent 0%);
    background-size: 50px 50px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    animation: pulse 2s infinite;
}

.cta-content h2 {
     
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-text {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--dark-red);
    transform: translateY(-5px);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

@media (max-width: 991px) {
    .scsty-title {
        font-size: 2.75rem;
    }
    
    .snty-heading {
        font-size: 1.75rem;
    }
    
    .heading-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .stry-hero {
        padding: 6rem 0 4rem 0;
    }
    
    .scsty-title {
        font-size: 2.25rem;
    }
    
    .scsty-meta {
        font-size: 0.85rem;
        gap: 0.75rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .snty-heading {
        font-size: 1.5rem;
    }
    
    .quote-block {
        padding: 2.5rem 1.5rem;
    }
    
    blockquote p {
        font-size: 1.15rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .message-card {
        padding: 2rem 1.5rem;
    }
    
    .message-content h3 {
        font-size: 1.5rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .share-buttons {
        gap: 0.75rem;
    }
    
    .share-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .cta-card {
        padding: 3rem 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-stats {
        gap: 2rem;
    }
    
    .stat-num {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .storybanner-title{     font-size: 1.4rem; padding-top: 12px;}
    .cta-buttons .btn {
    padding: 0.6rem 1rem;}
    .snty-title{font-size: 1.4rem;}
    .cta-content h2{font-size:  1.4rem;}
    .cta-content > p{font-size: 0.96rem; margin-bottom: 1rem;}
    .stat-num{font-size: 1rem;}
    .storybanner-subtitle{font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4; padding-bottom: 16px;}
    .storybanner-content{padding: 40px 0;}
    .stry-hero {
        padding: 2rem 0 0 0;
    }
     .dr-info{flex-direction: column;}
    .doctor-quote{ flex-direction: column; text-align: center;}
     .dr-info .doctor-title{text-align: center;}
    .scsty-title {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    .related-section, .cta-section{ padding: 2rem 0;}
    
    .transformation-timeline{     padding: 1rem;}
    .highlight-box h3{font-size: 1.2rem; }
    .result-highlight{padding: 1rem;}
    .nav-content {
        gap: 0.5rem;
    }
    
    .back-link span {
        display: none;
    }
    .info-card{padding: 1.2rem;}
    
    .snty-heading {
 
        gap: 0.75rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        padding: 1.5rem;
    }
    
    .result-highlight {
        flex-direction: column;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}