/* ============================================
   INFORMATII PAGE - ADMR Arad
   ============================================ */

/* Page Header */
.info-page-header {
    background: linear-gradient(135deg, #e8f4f0 0%, #d4ede5 50%, #c5e8dc 100%);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.info-page-header h1 {
    font-size: 2.5rem;
    color: #0d4a5a;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-page-header h1 .sparkle {
    color: #1a8a6b;
    font-size: 1.8rem;
    margin-right: 8px;
}

.info-page-header .subtitle {
    color: #1a5c6b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.85;
}

/* Sun Decoration */
.sun-decoration {
    position: absolute;
    top: 15px;
    right: 60px;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.sun-decoration .sun-body {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 15px;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}

.sun-decoration .sun-ray {
    position: absolute;
    background: #ffc107;
    border-radius: 2px;
}

.sun-decoration .sun-ray:nth-child(1) { width: 3px; height: 15px; top: 0; left: 38px; }
.sun-decoration .sun-ray:nth-child(2) { width: 3px; height: 15px; bottom: 0; left: 38px; }
.sun-decoration .sun-ray:nth-child(3) { width: 15px; height: 3px; top: 38px; left: 0; }
.sun-decoration .sun-ray:nth-child(4) { width: 15px; height: 3px; top: 38px; right: 0; }
.sun-decoration .sun-ray:nth-child(5) { width: 3px; height: 12px; top: 5px; left: 58px; transform: rotate(45deg); }
.sun-decoration .sun-ray:nth-child(6) { width: 3px; height: 12px; bottom: 5px; left: 18px; transform: rotate(45deg); }
.sun-decoration .sun-ray:nth-child(7) { width: 3px; height: 12px; top: 5px; left: 18px; transform: rotate(-45deg); }
.sun-decoration .sun-ray:nth-child(8) { width: 3px; height: 12px; bottom: 5px; left: 58px; transform: rotate(-45deg); }

/* Main Content Area */
.info-content-area {
    padding: 60px 0 80px;
    background-color: #f9fdfc;
}

/* Info Section Card */
.info-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 45px;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(13, 74, 90, 0.08);
    border-left: 5px solid #1a8a6b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 74, 90, 0.12);
}

.info-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(26, 138, 107, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Number Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #1a8a6b, #0d4a5a);
    color: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    flex-shrink: 0;
}

/* Section Icon */
.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.section-icon.icon-dna { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #1565c0; }
.section-icon.icon-transmission { background: linear-gradient(135deg, #f3e5f5, #e1bee7); color: #7b1fa2; }
.section-icon.icon-symptoms { background: linear-gradient(135deg, #fff3e0, #ffe0b2); color: #e65100; }
.section-icon.icon-diagnosis { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: #2e7d32; }
.section-icon.icon-treatment { background: linear-gradient(135deg, #fce4ec, #f8bbd0); color: #c62828; }

/* Section Header */
.info-section .section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-section h2 {
    font-size: 1.55rem;
    color: #0d4a5a;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Body Text */
.info-section p {
    color: #3a5a63;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 15px;
}

.info-section p:last-child {
    margin-bottom: 0;
}

/* Sub-lists within sections */
.info-sub-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.info-sub-list li {
    position: relative;
    padding: 14px 20px 14px 55px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #f0f9f6, #e8f4f0);
    border-radius: 12px;
    color: #3a5a63;
    font-size: 0.98rem;
    line-height: 1.7;
    border: 1px solid rgba(26, 138, 107, 0.1);
}

.info-sub-list li::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 18px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-sub-list.type-genetic li::before {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.info-sub-list.type-inflammatory li::before {
    background: linear-gradient(135deg, #ff9800, #e65100);
}

.info-sub-list.type-diagnosis-genetic li::before {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}

.info-sub-list.type-diagnosis-inflammatory li::before {
    background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

/* Highlight box */
.info-highlight {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 12px;
    padding: 20px 25px;
    margin: 20px 0;
    border-left: 4px solid #2e7d32;
    font-style: italic;
    color: #2e5a3a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.info-highlight.warning {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-left-color: #e65100;
    color: #5a3a1a;
}

.info-highlight.info-blue {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left-color: #1565c0;
    color: #1a3a5a;
}

/* Symptoms list */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.symptom-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(13, 74, 90, 0.1);
    font-size: 0.95rem;
    color: #3a5a63;
    transition: background 0.2s ease;
}

.symptom-item:hover {
    background: #f0f9f6;
}

.symptom-item .symptom-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    flex-shrink: 0;
}

/* Transmission info boxes */
.transmission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.transmission-item {
    padding: 18px 22px;
    background: linear-gradient(135deg, #f8f0fa, #f3e5f5);
    border-radius: 12px;
    border-left: 4px solid #7b1fa2;
}

.transmission-item h4 {
    color: #4a148c;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.transmission-item p {
    color: #5a3a6a;
    font-size: 0.93rem;
    margin: 0;
    line-height: 1.6;
}

/* Intro banner */
.info-intro-banner {
    background: linear-gradient(135deg, #0d4a5a, #1a6b5a);
    color: #fff;
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.info-intro-banner::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.info-intro-banner::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 30%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.info-intro-banner h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #b2dfdb;
}

.info-intro-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .info-page-header {
        padding: 40px 0 30px;
    }
    
    .info-page-header h1 {
        font-size: 2rem;
    }
    
    .sun-decoration {
        display: none;
    }
    
    .info-section {
        padding: 25px 22px;
        margin-bottom: 25px;
    }
    
    .info-section h2 {
        font-size: 1.3rem;
    }
    
    .info-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
    
    .info-intro-banner {
        padding: 25px 22px;
    }
    
    .info-sub-list li {
        padding: 12px 15px 12px 48px;
    }
}

@media (max-width: 576px) {
    .info-page-header h1 {
        font-size: 1.6rem;
    }
    
    .info-section {
        padding: 20px 18px;
        border-left-width: 4px;
    }
    
    .section-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}

/* Fade-in animation */
.info-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.info-section:nth-child(1) { animation-delay: 0.1s; }
.info-section:nth-child(2) { animation-delay: 0.2s; }
.info-section:nth-child(3) { animation-delay: 0.3s; }
.info-section:nth-child(4) { animation-delay: 0.4s; }
.info-section:nth-child(5) { animation-delay: 0.5s; }

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