@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Caveat:wght@400;500;600;700&display=swap');




.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-lg); }


/* ==== EMERGENCY CRISIS NOTICE ==== */
/* RTL Language Support: Arabic, Hebrew, and other right-to-left languages
 * Features: Reversed gradients, proper text alignment, mirrored layouts
 * Mobile: Centered layout maintained for optimal UX regardless of direction */
.crisis-notice {
    background: linear-gradient(135deg, var(--notice) 30%, var(--primary-light) 70%);
    color: white;
    padding: 1.5rem 0;
    position: relative;
    overflow: visible;
    z-index: 100;
}

/* RTL Support for Crisis Notice */
[dir="rtl"] .crisis-notice {
    background: linear-gradient(225deg, var(--notice) 30%, var(--primary-light) 70%);
}

.crisis-notice::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -1%;
    right: 0%;
    height: 80px;
    background: linear-gradient(135deg, var(--notice) 30%, var(--primary-light) 70%);
    opacity: 1.5;
    filter: blur(12px);
    z-index: -1;
}

/* RTL Support for Crisis Notice Background Blur */
[dir="rtl"] .crisis-notice::before {
    background: linear-gradient(225deg, var(--notice) 30%, var(--primary-light) 70%);
    left: 0%;
    right: -1%;
}



.crisis-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* RTL Support for Crisis Content Layout */
[dir="rtl"] .crisis-content {
    direction: rtl;
    text-align: right;
}

.crisis-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    animation: crisis-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes crisis-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);
    }
}

.crisis-message h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
}

.crisis-message p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.5;
}

/* RTL Support for Crisis Message */
[dir="rtl"] .crisis-message h3,
[dir="rtl"] .crisis-message p {
    text-align: right;
    direction: rtl;
}

.crisis-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* RTL Support for Crisis Actions */
[dir="rtl"] .crisis-actions {
    direction: rtl;
    justify-content: flex-start;
}

.crisis-btn {
    display: inline-flex;
    align-items: center;
    /* Use explicit icon margin for reliable spacing with text nodes */
    gap: 0;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Ensure spacing between icon and text on crisis buttons (LTR/RTL aware) */
.crisis-btn i {
    margin-inline-end: 0.5rem;
}

/* In RTL we reverse the row; add spacing before the icon instead of after */
[dir="rtl"] .crisis-btn i {
    margin-inline-end: 0;
    margin-inline-start: 0.5rem;
}

/* RTL Support for Crisis Buttons */
[dir="rtl"] .crisis-btn {
    direction: rtl;
    flex-direction: row-reverse;
}

.crisis-btn--emergency {
    background: rgba(255, 255, 255, 0.9);
    color: #e74c3c;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.crisis-btn--emergency:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.crisis-btn--chat {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.crisis-btn--chat:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.crisis-btn--resources {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.crisis-btn--resources:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Crisis Notice */
@media (max-width: 1024px) {
    .crisis-content {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }
    
    .crisis-actions {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .crisis-notice {
        padding: 1.2rem 0;
    }
    
    .crisis-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    /* RTL Support for Mobile Crisis Content */
    [dir="rtl"] .crisis-content {
        text-align: center; /* Override RTL text alignment for mobile centered layout */
    }
    
    .crisis-icon {
        margin: 0 auto;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .crisis-message h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .crisis-message p {
        font-size: 0.9rem;
    }
    
    /* RTL Support for Mobile Crisis Message */
    [dir="rtl"] .crisis-message h3,
    [dir="rtl"] .crisis-message p {
        text-align: center; /* Center text for mobile regardless of direction */
    }
    
    .crisis-actions {
        justify-content: center;
        gap: 0.8rem;
    }
    
    /* RTL Support for Mobile Crisis Actions */
    [dir="rtl"] .crisis-actions {
        justify-content: center; /* Center actions for mobile */
    }
    
    .crisis-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .crisis-notice {
        padding: 1rem 0;
    }
    
    .crisis-actions {
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }
    
    /* RTL Support for Mobile Crisis Actions */
    [dir="rtl"] .crisis-actions {
        flex-direction: column; /* Maintain column layout for mobile */
        align-items: center;
    }
    
    .crisis-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .crisis-message h3 {
        font-size: 1rem;
    }
    
    .crisis-message p {
        font-size: 0.85rem;
    }
}

/* Features Grid */
.features-section {
    padding: 2rem 0;
    background: #ffffff;
}


.features-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 1.5rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}
.features-section .section-title { font-size:1.5rem; letter-spacing:.6px; border-left:6px solid var(--primary-light); padding-left:.75rem; background:linear-gradient(90deg, rgba(var(--primary-rgb),.12), transparent 70%); border-radius:.75rem; }



.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    transition: left 0.3s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-card .learn-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.feature-card .learn-more:hover {
    color: var(--secondary);
}

/* Statistics Section */
.stats-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary-dark) 100%);
    color: white;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 0L100 10L0 20Z" fill="white" opacity="0.03"/></svg>');
    pointer-events: none;
}

.stats-content {
    position: relative;
    z-index: 1;
}

.stats-content .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(22, 56, 5, 0.2);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==== GAZA CRISIS AWARENESS SECTION ==== */
.gaza-crisis-awareness {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.gaza-crisis-awareness::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(233, 81, 89, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(42, 95, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.crisis-awareness-content {
    position: relative;
    z-index: 1;
}

.crisis-header {
    margin-bottom: 2rem;
}

.crisis-header .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    position: relative;

}

.crisis-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 61%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, var(--notice) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.crisis-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-style: italic;
}

.crisis-video-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.crisis-left-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.video-container {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-900);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-md);
}

.crisis-impact {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
}

.crisis-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--notice) 0%, var(--accent) 50%, var(--primary) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.crisis-impact h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.crisis-impact p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.solidarity-message {
    background: #fefce8;
    border: 2px solid #eab308;
    border-left: 6px solid #ca8a04;
    color: #374151;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: left;
    position: relative;
    font-family: 'Kalam', 'Caveat', 'Comic Sans MS', cursive;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
}

.solidarity-message::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 
        0 0 0 2px #dc2626,
        0 3px 6px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.solidarity-message::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #7f1d1d;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Gaza Statistics Report - Simplified Compact Design */
.gaza-statistics-report {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    overflow: hidden;
}

/* Statistics Header */
.statistics-header {
    position: relative;
    background: linear-gradient(135deg, var(--notice) 0%, var(--notice-light) 100%);
    padding: 1rem 1.5rem;
    color: white;
}

.report-title {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.report-title i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* RTL: flip icon spacing for report title */
[dir="rtl"] .report-title i {
    margin-right: 0;
    margin-left: 0.5rem;
}

.report-date {
    font-size: 0.8rem;
    color: #fca5a5;
    margin-bottom: 0.3rem;
}

.emergency-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-block;
    background: rgba(var(--primary-rgb),.10);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(127, 29, 29, 0.3);
    z-index: 10;
    animation: emergency-pulse 2s ease-in-out infinite;
}

@keyframes emergency-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(127, 29, 29, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(127, 29, 29, 0.5);
    }
}

/* RTL Support for Emergency Badge */
[dir="rtl"] .emergency-badge {
    right: auto;
    left: 1rem;
}

/* Statistics Grid */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    background: #ffffff;
}

/* Statistics Section */
.statistics-section {
    border-bottom: 1px solid #f3f4f6;
    border-right: 1px solid #f3f4f6;
}

.statistics-section:last-child,
.statistics-section:nth-last-child(2) {
    border-bottom: none;
}

.statistics-section .section-title {
    background: #f9fafb;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.statistics-section .section-title:hover {
    background: #f3f4f6;
}

.statistics-section .section-title .title-content {
    display: flex;
    align-items: center;
}

.statistics-section .section-title i {
    margin-right: 0.5rem;
    color: #dc2626;
    font-size: 0.8rem;
}

/* RTL: ensure icon spacing in section title content is on the correct side */
[dir="rtl"] .statistics-section .section-title .title-content i {
    margin-right: 0;
    margin-left: 0.5rem;
}

.statistics-section .section-title .toggle-icon {
    font-size: 0.7rem;
    color: #6b7280;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.statistics-section.collapsed .section-title .toggle-icon {
    transform: rotate(-90deg);
}

/* Stats Table */
.stats-table {
    background: #ffffff;
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.statistics-section.collapsed .stats-table {
    max-height: 0;
    opacity: 0;
}

.stat-row {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #f9fafb;
    transition: background-color 0.2s ease;
    min-height: 50px;
}

.stat-row:hover {
    background: #fef2f2;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-counter {
    background: var(--notice);
    color: white;
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    min-width: 24px;
    text-align: center;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.stat-label {
    flex: 1;
    font-size: 0.85rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.3;
    margin-right: 0.8rem;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
    min-width: 60px;
    margin-right: 0.3rem;
}

.stat-value.critical {
    color: var(--notice);
}

.stat-value.warning {
    color: #d97706;
}

.stat-value.zero {
    color: var(--notice);
}

.trend-indicator {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.1rem 0.3rem;
    border-radius: 8px;
    min-width: 45px;
    text-align: center;
}

.trend-indicator.up {
    background: #fee2e2;
    color: #dc2626;
}

.trend-indicator.down {
    background: #d1fae5;
    color: #059669;
}

.trend-indicator.stable {
    background: #f3f4f6;
    color: #6b7280;
}

/* Statistics Footer */
.statistics-footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 0.8rem 1rem;
    color: #6b7280;
    font-size: 0.75rem;
}

.data-sources {
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.data-sources strong {
    color: #374151;
}

.last-updated {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
    color: #4b5563;
}

.last-updated i {
    margin-right: 0.3rem;
    color: #dc2626;
    font-size: 0.7rem;
}

.disclaimer {
    font-style: italic;
    color: #9ca3af;
    font-size: 0.7rem;
}

/* Responsive Design for Gaza Statistics */
@media (max-width: 1024px) {
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .statistics-section {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .gaza-statistics-report {
        margin: 1rem 0;
    }
    
    .statistics-header {
        padding: 0.8rem 1rem;
    }
    
    .emergency-badge {
        top: 0.6rem;
        right: 0.8rem;
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
    
    /* RTL Support for Mobile Emergency Badge */
    [dir="rtl"] .emergency-badge {
        right: auto;
        left: 0.8rem;
    }
    
    .report-title {
        font-size: 1.1rem;
    }
    
    .statistics-section .section-title {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
    
    .stat-row {
        padding: 0.5rem 0.8rem;
        min-height: 45px;
    }
    
    .stat-counter {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
        margin-right: 0.6rem;
        min-width: 20px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 0.9rem;
        min-width: 50px;
    }
    
    .trend-indicator {
        font-size: 0.65rem;
        padding: 0.1rem 0.25rem;
        min-width: 40px;
    }
    
    .statistics-footer {
        padding: 0.6rem 0.8rem;
    }
}

.solidarity-icon {
    width: 45px;
    height: 45px;
    background: #dc2626;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    border: 2px solid #991b1b;
    float: left;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.solidarity-message h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #92400e;
    text-transform: none;
    letter-spacing: 0px;
    border-bottom: 2px solid #d97706;
    padding-bottom: 0.5rem;
    display: inline-block;
    transform: rotate(-0.5deg);
}

.solidarity-message p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #4b5563;
    clear: both;
    transform: rotate(0.2deg);
}

/* ===========================
   LATEST NEWS SECTION - ULTRA COMPACT
   ========================== */
.latest-news-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.8rem;
    margin-top: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.latest-news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.news-header {
    margin-bottom: 0.6rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 4px;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.news-header-content {
    flex: 1;
}

.news-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.news-subtitle {
    display: none;
}

.news-grid {
    display: grid;
    gap: 0.4rem;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    min-height: 45px;
}

.news-item:hover {
    background: #ffffff;
    border-color: var(--primary-light);
    box-shadow: 0 1px 4px rgba(42, 95, 110, 0.1);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary);
    color: white;
    border-radius: 3px;
    padding: 0.2rem 0.15rem;
    min-width: 32px;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.date-day {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.55rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    opacity: 0.9;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    display: block;
    color: var(--gray-600);
    font-size: 0.7rem;
    line-height: 1.4;
    margin: 0.3rem 0;
    opacity: 0.9;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 0.1rem;
}

.news-link:hover {
    color: var(--secondary);
}

.news-empty,
.news-error {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.no-news-message,
.error-message {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.error-message {
    color: var(--notice);
}

.news-link i {
    font-size: 0.5rem;
}

.news-footer {
    text-align: center;
    margin-top: 0.6rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
}

.view-all-news {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(42, 95, 110, 0.2);
}

.view-all-news:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(42, 95, 110, 0.3);
    color: white;
}

.view-all-news i {
    font-size: 0.6rem;
}

/* Responsive Design for News Section */
@media (max-width: 768px) {
    .latest-news-section {
        padding: 0.6rem;
        margin-top: 0.8rem;
    }
    
    .news-header {
        gap: 0.4rem;
    }
    
    .news-header-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    .news-header h4 {
        font-size: 0.8rem;
    }
    
    .news-item {
        padding: 0.3rem;
        min-height: 40px;
        gap: 0.4rem;
    }
    
    .news-date {
        min-width: 28px;
        padding: 0.15rem 0.1rem;
    }
    
    .date-day {
        font-size: 0.7rem;
    }
    
    .date-month {
        font-size: 0.5rem;
    }
    
    .news-title {
        font-size: 0.75rem;
    }
    
    .news-link {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .latest-news-section {
        padding: 0.5rem;
    }
    
    .view-all-news {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }
}

/* Responsive Design for Gaza Crisis Section */
@media (max-width: 1024px) {
    .crisis-video-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .crisis-left-column {
        gap: 2rem;
    }
    
    .crisis-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gaza-crisis-awareness {
        padding: 3rem 0;
    }
    
    .crisis-header .section-title {
        font-size: 1.8rem;
    }
    
    .crisis-header .section-subtitle {
        font-size: 1rem;
    }
    
    .crisis-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .crisis-stat-item {
        padding: 0.8rem;
    }
    
    .crisis-number {
        font-size: 1.5rem;
    }
    
    .crisis-stat-item:nth-child(3) .crisis-number {
        font-size: 1.8rem;
    }
    
    .crisis-label {
        font-size: 0.8rem;
    }
    
    .video-container,
    .crisis-impact {
        padding: 1.5rem;
    }
    
    .solidarity-message {
        padding: 1.2rem;
    }
    
    .solidarity-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    /* Gaza SVG Map Responsive - Tablet */
    .gaza-map-container {
        margin-top: 1.5rem;
    }
    
    .gaza-map-container .map-header {
        padding: 0.8rem 1rem;
    }
    
    .gaza-map-container .map-header h4 {
        font-size: 1.1rem;
    }
    
    .svg-map-wrapper {
        padding: 1rem;
    }
    
    .map-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .info-card {
        padding: 0.8rem;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gaza-crisis-awareness {
        padding: 2rem 0;
    }
    
    .crisis-header {
        margin-bottom: 2rem;
    }
    
    .crisis-header .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .crisis-header .section-subtitle {
        font-size: 0.9rem;
    }
    
    .video-container,
    .crisis-impact {
        padding: 1rem;
    }
    
    .crisis-impact h3 {
        font-size: 1.2rem;
    }
    
    .crisis-impact p {
        font-size: 0.9rem;
    }
    
    .solidarity-message {
        padding: 1rem;
    }
    
    .solidarity-icon {
        float: none;
        margin: 0 auto 0.8rem;
        display: block;
    }
    
    .solidarity-message h4 {
        font-size: 1.1rem;
        text-align: center;
        transform: rotate(-0.3deg);
    }
    
    .solidarity-message p {
        font-size: 0.9rem;
        text-align: center;
        transform: rotate(0.1deg);
    }
}

/* Call to Action Section */
.cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, #ffffff 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.cta-btn--primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.cta-btn--secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-btn--secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Additional Warm Enhancements */
.home-hero .slide-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 179, 71, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

/* Warm texture overlay for sections */
.welcome-section,
.features-section {
    position: relative;
}

.welcome-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 179, 71, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(42, 95, 110, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

/* Enhanced feature card icon gradients */
.feature-card:nth-child(1) .feature-card__icon {
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
}

.feature-card:nth-child(2) .feature-card__icon {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
}

.feature-card:nth-child(3) .feature-card__icon {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
}

.feature-card:nth-child(4) .feature-card__icon {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
}

.feature-card:nth-child(5) .feature-card__icon {
    background: linear-gradient(135deg, #55a3ff 0%, #74b9ff 100%);
}

.feature-card:nth-child(6) .feature-card__icon {
    background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
}

/* Soft glow effects */
.cta-btn--primary {
    box-shadow: 0 8px 25px rgba(42, 95, 110, 0.15);
}

.cta-btn--primary:hover {
    box-shadow: 0 12px 35px rgba(42, 95, 110, 0.25);
}

/* Warm border animations */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {

    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-section,
    .features-section,
    .stats-section,
    .cta-section {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .home-hero .slide-content::before {
        width: 40px;
        height: 40px;
        top: -30px;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==== RESPONSIVE DESIGN FOR NEW SECTIONS ==== */
@media (max-width: 1024px) {
    .support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .tech-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tech-visual {
        width: 200px;
        height: 200px;
    }
    
    .central-hub {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .tech-orbit {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .interactive-assessment,
    .live-support-preview,
    .resources-preview,
    .success-stories-carousel,
    .digital-solutions {
        padding: 3rem 0;
    }
    
    .assessment-card {
        padding: 2rem;
    }
    
    .answer-options {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resource-category {
        padding: 1.5rem;
    }
    
    .support-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-card {
        padding: 2rem;
    }
    
    .story-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .story-tags {
        justify-content: center;
    }
    
    .resources-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .tech-benefits {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .digital-cta {
        padding: 2rem 1.5rem;
    }
    
    .digital-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .digital-cta-buttons .btn-primary,
    .digital-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .assessment-card {
        padding: 1.5rem;
    }
    
    .assessment-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-btn {
        width: 100%;
    }
    
    .resource-item {
        flex-direction: column;
        text-align: center;
    }
    
    .resource-thumbnail {
        width: 100%;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-quote {
        font-size: 2rem;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .solution-card {
        padding: 1.2rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tech-visual {
        width: 150px;
        height: 150px;
    }
    
    .central-hub {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .tech-orbit {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .digital-cta {
        padding: 1.5rem 1rem;
    }
}

/* ==== DIGITAL MENTAL HEALTH SOLUTIONS ==== */
.digital-solutions {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafe 0%, #e8f4fd 100%);
    position: relative;
    margin-top: 0;
}

.digital-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(156, 39, 176, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.digital-content {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header .section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.solution-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2 0%, #9c27b0 50%, #00bcd4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.solution-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4a90e2 0%, #9c27b0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.icon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.solution-content h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.solution-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.solution-link i {
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(3px);
}

/* Technology Benefits */
.tech-benefits {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.benefits-content h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9f43 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
}

.benefit-item h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Tech Illustration */
.tech-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-visual {
    position: relative;
    width: 250px;
    height: 250px;
}

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-xl);
    animation: tech-pulse 3s ease-in-out infinite;
}

@keyframes tech-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.tech-orbit {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    animation: tech-orbit 20s linear infinite;
}

.tech-orbit-1 {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.tech-orbit-2 {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    animation-delay: -5s;
}

.tech-orbit-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -10s;
}

.tech-orbit-4 {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    animation-delay: -15s;
}

@keyframes tech-orbit {
    from {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tech-visual {
        width: 200px;
        height: 200px;
    }
    
    .central-hub {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .tech-orbit {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .interactive-assessment,
    .live-support-preview,
    .resources-preview,
    .success-stories-carousel,
    .digital-solutions {
        padding: 3rem 0;
    }
    
    .assessment-card {
        padding: 2rem;
    }
    
    .answer-options {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resource-category {
        padding: 1.5rem;
    }
    
    .support-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-card {
        padding: 2rem;
    }
    
    .story-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .story-tags {
        justify-content: center;
    }
    
    .resources-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .tech-benefits {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .digital-cta {
        padding: 2rem 1.5rem;
    }
    
    .digital-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .digital-cta-buttons .btn-primary,
    .digital-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .assessment-card {
        padding: 1.5rem;
    }
    
    .assessment-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-btn {
        width: 100%;
    }

    
    .chat-messages {
        padding: 1rem;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .solution-card {
        padding: 1.2rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tech-visual {
        width: 150px;
        height: 150px;
    }
    
    .central-hub {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .tech-orbit {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* ==== ADDITIONAL ANIMATIONS ==== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* Fix for assessment features */
.assessment-features .feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.assessment-features .feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ==== MENTAL WELLNESS TRACKER SECTION ==== */
.mental-wellness-tracker {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e6f7ff 100%);
    position: relative;
}

.mental-wellness-tracker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(42, 95, 110, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(255, 179, 71, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mental-wellness-tracker h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mental-wellness-tracker .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.mood-tracker {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
    z-index: 1;
}

.mood-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mood-btn {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.mood-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.mood-btn:hover::before {
    left: 100%;
}

.mood-btn:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.mood-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    color: white;
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mood-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.mood-btn:nth-child(1) .mood-icon {
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
    color: white;
}

.mood-btn:nth-child(2) .mood-icon {
    background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
    color: white;
}

.mood-btn:nth-child(3) .mood-icon {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
}

.mood-btn:nth-child(4) .mood-icon {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
}

.mood-btn:nth-child(5) .mood-icon {
    background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%);
    color: white;
}

.mood-btn.active .mood-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

.mood-btn span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: color 0.3s ease;
}

.mood-btn.active span {
    color: white;
}

.mood-response {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.5s ease;
}

.mood-response h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mood-response p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.response-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* ==== GAZA FOCUS SECTION ==== */
.gaza-focus {
    padding: 2rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    position: relative;
}

.gaza-focus h2 {
    font-size: clamp(1.8rem, 3.5vw, 1.5rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.focus-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.focus-text .lead {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Featured Programmes Section for Home Page */
.featured-programmes-home {
    margin: 2rem 0;
}

.programmes-title {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.programmes-title i {
    margin-right: 0.5rem;
}

.programmes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.programme-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.programme-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.urgent-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.programme-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.programme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.programme-card:hover .programme-image img {
    transform: scale(1.05);
}

.programme-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
}

.programme-status .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
}

.badge-success {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.badge-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.badge-secondary {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
}

.badge-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.programme-content {
    padding: 1.2rem;
}

.programme-title {
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.programme-title a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.programme-title a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

.programme-description {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.programme-metadata {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.programme-category-info {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gray-600);
}

.programme-priority {
    color: var(--gray-500);
}

.programmes-statistics {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.stats-title {
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.stats-title i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.stat-item {
    text-align: center;
    padding: 0.8rem;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    display: block;
}

.stat-number.active {
    color: var(--success);
}

.stat-number.completed {
    color: var(--primary);
}

.stat-number.planning {
    color: var(--warning);
}

.stat-number.participants {
    color: var(--info);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .programmes-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .programme-metadata {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Donation Form */
.donation-form-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.donation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #ff9f43 100%);
}

.donation-header {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9f43 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);

    flex-shrink: 0;
}

.donation-header h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.donation-header p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.donation-amounts {
    margin-bottom: 1.5rem;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.amount-options input[type="radio"] {
    display: none;
}

.amount-btn {
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.amount-btn:hover {
    border-color: var(--primary-light);
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
}

.amount-options input[type="radio"]:checked + .amount-btn {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    font-weight: 700;
    border-color: var(--primary-light);
    color: white;
    box-shadow: var(--shadow-md);
}

.custom-amount {
    margin-top: 1rem;
}

.custom-amount input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 95, 110, 0.1);
}

.donation-frequency {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.donation-frequency input[type="radio"] {
    display: none;
}

.frequency-btn {
    flex: 1;
    background: white;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.frequency-btn:hover {
    border-color: var(--primary-light);
    background: var(--primary-light);
    color: white;
}

.donation-frequency input[type="radio"]:checked + .frequency-btn {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-color: var(--primary-light);
    color: white;
}

.donor-info {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 95, 110, 0.1);
}

.donation-impact {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.impact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.impact-item:last-child {
    margin-bottom: 0;
}

.impact-amount {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.impact-text {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.donatenow-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9f43 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.donatenow-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #ff9f43 0%, var(--accent) 100%);
}

.secure-notice {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.secure-notice i {
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .focus-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .donation-form {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .mental-wellness-tracker,
    .gaza-focus {
        padding: 4rem 0;
    }
    
    .mood-options {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .mood-btn {
        padding: 1.5rem 1rem;
    }
    
    .mood-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .specialty-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .response-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        text-align: center;
    }
    
    .donation-form {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .donation-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin: 0 auto 1rem;
        flex-shrink: 0;
    }
    
    .amount-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .mood-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donation-form {
        padding: 1.2rem;
    }
    
    .donation-header h3 {
        font-size: 1.1rem;
    }
    
    .donation-header p {
        font-size: 0.85rem;
    }
    
    .amount-options {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .amount-btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .frequency-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .form-group input {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .donatenow-btn {
        padding: 0.9rem;
        font-size: 0.85rem;
    }
}

/* ==== RESPONSIVE DESIGN FOR NEW SECTIONS ==== */
@media (max-width: 1024px) {
    .support-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .support-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .tech-benefits {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .tech-visual {
        width: 200px;
        height: 200px;
    }
    
    .central-hub {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .tech-orbit {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .interactive-assessment,
    .live-support-preview,
    .resources-preview,
    .success-stories-carousel,
    .digital-solutions {
        padding: 3rem 0;
    }
    
    .assessment-card {
        padding: 2rem;
    }
    
    .answer-options {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .resource-category {
        padding: 1.5rem;
    }
    
    .support-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-card {
        padding: 2rem;
    }
    
    .story-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .story-tags {
        justify-content: center;
    }
    
    .resources-cta {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .tech-benefits {
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .digital-cta {
        padding: 2rem 1.5rem;
    }
    
    .digital-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .digital-cta-buttons .btn-primary,
    .digital-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .assessment-card {
        padding: 1.5rem;
    }
    
    .assessment-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-btn {
        width: 100%;
    }
    
    .resource-item {
        flex-direction: column;
        text-align: center;
    }
    
    .resource-thumbnail {
        width: 100%;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-quote {
        font-size: 2rem;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .solution-card {
        padding: 1.2rem;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tech-visual {
        width: 150px;
        height: 150px;
    }
    
    .central-hub {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .tech-orbit {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .digital-cta {
        padding: 1.5rem 1rem;
    }
}

/* ==== INTERACTIVE MENTAL HEALTH ASSESSMENT ==== */
.interactive-assessment {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    position: relative;
}

.interactive-assessment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(74, 144, 226, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(42, 95, 110, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.assessment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.assessment-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.assessment-toggle-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.assessment-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.assessment-toggle-btn:hover::before {
    left: 100%;
}

.assessment-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.assessment-toggle-btn:active {
    transform: translateY(0);
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.assessment-toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.assessment-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.5s ease;
}

.assessment-container.collapsed {
    max-height: 0;
    opacity: 0;
    transform: translateY(-20px);
    margin-top: -3rem;
}

.assessment-container:not(.collapsed) {
    max-height: 1500px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0;
}

.assessment-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: visible;
}

.assessment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #4a90e2 0%, #50c878 50%, #ffa726 100%);
}

.assessment-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-right: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4a90e2 0%, #50c878 100%);
    border-radius: 4px;
    width: 10%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

.question-container {
    min-height: 300px;
    position: relative;
}

.question {
    display: none;
    animation: fadeIn 0.5s ease;
}

.question.active {
    display: block;
}

.question h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.5;
}

.answer-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.answer-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    background: white;
    color: var(--gray-700);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.answer-btn:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.answer-btn.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
}

.assessment-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.nav-btn {
    padding: 0.8rem 2rem;
    border: 2px solid var(--gray-400);
    border-radius: 50px;
    background: white;
    color: var(--gray-600);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-color: var(--primary);
    color: white;
}

.nav-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.assessment-result {
    text-align: center;
    padding: 2rem 0;
}

.result-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff9f43 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: gentle-pulse 2s ease-in-out infinite;
}

.score-display {
    margin: 2rem 0;
}

.score-circle {
    width: 120px;
    height: 120px;
    border: 8px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.assessment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* ==== LIVE SUPPORT CHAT PREVIEW ==== */
.live-support-preview {
    padding: 3rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.support-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.support-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.support-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.chat-preview {
    position: relative;
}

.chat-window {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #50c878;
    box-shadow: 0 0 10px rgba(80, 200, 120, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.chat-actions {
    display: flex;
    gap: 1rem;
}

.chat-actions i {
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.chat-actions i:hover {
    opacity: 1;
}

.chat-messages {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.message.sent {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-content {
    flex: 1;
    max-width: 70%;
}

.message-content p {
    background: white;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-lg);
    margin: 0 0 0.3rem 0;
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

.message.sent .message-content p {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.message-time {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-left: 1rem;
}

.message.sent .message-time {
    text-align: right;
    margin-left: 0;
    margin-right: 1rem;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
}

.typing-dots {
    display: flex;
    gap: 3px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typingDots 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDots {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
}

.chat-input {
    padding: 1rem 1.5rem;
    background: white;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 1rem;
    align-items: center;
}

.chat-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 25px;
    outline: none;
    background: var(--gray-50);
}

.send-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.chat-cta {
    margin-top: 1.5rem;
    text-align: center;
}

/* ==== SUPPORT CONTENT RESPONSIVE DESIGN ==== */
@media (max-width: 1024px) {
    .support-content {
        gap: 3rem;
    }
    
    .support-stats {
        gap: 1.5rem;
    }
    
    .support-stats .stat-item {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    .live-support-preview {
        padding: 3rem 0;
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .support-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .support-stats .stat-item {
        padding: 1rem;
    }
    
    .support-stats .stat-number {
        font-size: 1.6rem;
    }
    
    .chat-window {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .chat-messages {
        max-height: 250px;
        padding: 1.2rem;
    }
    
    .message-content {
        max-width: 80%;
    }
}

@media (max-width: 600px) {
    .support-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-stats .stat-item {
        padding: 1.2rem;
        margin: 0 auto;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .live-support-preview {
        padding: 2rem 0;
    }
    
    .support-content {
        gap: 2rem;
    }
    
    .chat-window {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }
    
    .chat-header {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .chat-status {
        gap: 0.6rem;
    }
    
    .status-indicator {
        width: 10px;
        height: 10px;
    }
    
    .chat-messages {
        padding: 1rem;
        max-height: 200px;
    }
    
    .message {
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .message-avatar {
        width: 35px;
        height: 35px;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .message-content p {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .message-time {
        font-size: 0.7rem;
        margin-left: 0.8rem;
    }
    
    .message.sent .message-time {
        margin-left: 0;
        margin-right: 0.8rem;
    }
    
    .chat-input {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .chat-input input {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .send-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .support-stats .stat-number {
        font-size: 1.4rem;
    }
    
    .support-stats .stat-label {
        font-size: 0.8rem;
    }
}

/* ==== ASSESSMENT RESPONSIVE DESIGN ==== */
@media (max-width: 768px) {
    .assessment-title-wrapper {
        gap: 1rem;
    }
    
    .assessment-toggle-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        gap: 0.6rem;
    }
    
    .assessment-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .assessment-title-wrapper {
        gap: 0.8rem;
    }
    
    .assessment-toggle-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .toggle-icon {
        font-size: 0.9rem;
    }
    
    .assessment-header {
        margin-bottom: 1.5rem;
    }
    
    .assessment-container {
        padding: 0 0.5rem;
    }
}

@media (max-width: 360px) {
    .assessment-toggle-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        max-width: 260px;
    }
    
    .chat-messages {
        max-height: 180px;
        padding: 0.8rem;
    }
    
    .message-content {
        max-width: 90%;
    }
    
    .message-avatar {
        width: 30px;
        height: 30px;
    }
    
    .chat-input {
        padding: 0.6rem 0.8rem;
    }
    
    .send-btn {
        width: 32px;
        height: 32px;
    }
    
    .support-stats .stat-item {
        padding: 1rem;
        max-width: 250px;
    }
}

/* ========================================
   RTL (Right-to-Left) Support Styles
======================================== */

/* Base RTL support */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

/* RTL overrides for section titles */
html[dir="rtl"] .section-title { 
    margin-right: var(--spacing-sm); 
    margin-left: 0; 
    border-right: 6px solid var(--primary-light); 
    border-left: 0; 
    padding-right: var(--spacing-md); 
    padding-left: 0; 
    background: linear-gradient(270deg, rgba(var(--primary-rgb),.12), transparent 70%);
}

html[dir="rtl"]  .section-title { 
    border-right: 6px solid var(--primary-light); 
    border-left: 0; 
    padding-right: .75rem; 
    padding-left: 0; 
    background: linear-gradient(270deg, rgba(var(--primary-rgb),.12), transparent 70%); 
}

html[dir="rtl"] .features-section .service-detail .contact-page .section-title { 
    border-right: 6px solid var(--primary-light); 
    border-left: 0; 
    padding-right: .75rem; 
    padding-left: 0; 
    background: linear-gradient(270deg, rgba(var(--primary-rgb),.12), transparent 70%); 
}



/* Solidarity message RTL */
html[dir="rtl"] .solidarity-message {
    border-right: 6px solid #ca8a04;
    border-left: 2px solid #eab308;
    text-align: right;
}

/* Services and features RTL */
html[dir="rtl"] .service-card,
html[dir="rtl"] .feature-card {
    text-align: right;
}

html[dir="rtl"] .service-icon,
html[dir="rtl"] .feature-icon {
    margin-left: 1rem;
    margin-right: 0;
}

/* Statistics RTL */
html[dir="rtl"] .stat-item {
    text-align: right;
}

/* Digital solutions RTL */
html[dir="rtl"] .solution-card {
    text-align: right;
}

html[dir="rtl"] .solution-icon {
    margin-left: 1rem;
    margin-right: 0;
}

/* Assessment RTL */
html[dir="rtl"] .assessment-card {
    text-align: right;
}

html[dir="rtl"] .question-number {
    margin-left: 1rem;
    margin-right: 0;
}

/* Support and chat RTL */
html[dir="rtl"] .chat-preview {
    text-align: right;
}

html[dir="rtl"] .chat-message {
    text-align: right;
}

html[dir="rtl"] .chat-message.user {
    margin-left: 2rem;
    margin-right: 0;
}

html[dir="rtl"] .chat-message.support {
    margin-right: 2rem;
    margin-left: 0;
}

/* Resources RTL */
html[dir="rtl"] .resource-card {
    text-align: right;
}

html[dir="rtl"] .resource-meta {
    text-align: right;
}

/* Success stories RTL */
html[dir="rtl"] .story-card {
    text-align: right;
}

html[dir="rtl"] .story-author {
    text-align: right;
}

/* Navigation and buttons RTL */
html[dir="rtl"] .btn-group {
    flex-direction: row-reverse;
}

html[dir="rtl"] .action-btn {
    margin-left: 1rem;
    margin-right: 0;
}

/* Form elements RTL */
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .form-group label {
    text-align: right;
}

/* Icons and indicators RTL */
html[dir="rtl"] .icon-left {
    order: 2;
    margin-left: 0.5rem;
    margin-right: 0;
}

html[dir="rtl"] .icon-right {
    order: 0;
    margin-right: 0.5rem;
    margin-left: 0;
}

/* Progress indicators RTL */
html[dir="rtl"] .progress-bar {
    direction: ltr; /* Keep progress bars LTR for visual consistency */
}

/* Arrows and chevrons RTL */
html[dir="rtl"] .arrow-right {
    transform: scaleX(-1);
}

html[dir="rtl"] .chevron-right {
    transform: scaleX(-1);
}

/* Badge positioning RTL */
html[dir="rtl"] .badge {
    left: auto;
    right: 0;
}

/* Timeline RTL (if any) */
html[dir="rtl"] .timeline-item {
    text-align: right;
}

html[dir="rtl"] .timeline-connector {
    right: 0;
    left: auto;
}

/* Responsive RTL adjustments */
@media (max-width: 768px) {
    html[dir="rtl"] .service-icon,
    html[dir="rtl"] .feature-icon,
    html[dir="rtl"] .solution-icon {
        margin: 0 auto 1rem auto;
    }
    
    html[dir="rtl"] .chat-message.user,
    html[dir="rtl"] .chat-message.support {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .action-btn {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}