 /* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary-color: #c13832;
    --primary-dark: #952624;
    --primary-light: #e63946;
    --accent-color: #ff6b6b;
    --text-dark: #1a365d;
    --text-medium: #44596e;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-lighter: #fef2f2;
    --border-light: #e5e7eb;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(203, 12, 12, 0.15);
    --shadow-xl: 0 20px 40px rgba(203, 12, 12, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


/* ============================================
   HERO SECTION
   ============================================ */
.wnhero-section {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 50%, #ffe5e5 100%);
    overflow: hidden;
    padding: 40px 0 60px;
}

.wnhero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.decorative-element {
    position: absolute;
    border-radius: 50%;
}

.dot-1 {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.dot-2 {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    top: 25%;
    left: 8%;
    animation: float 8s ease-in-out infinite 2s;
}

.cross-1 {
    width: 30px;
    height: 30px;
    background: none;
    border: 3px solid var(--primary-color);
    top: 15%;
    right: 10%;
    border-radius: 0;
    transform: rotate(45deg);
    animation: rotate 10s linear infinite;
}

.wnhero-content {
    position: relative;
    z-index: 10;
    padding: 60px 40px;
}

.wnhero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(203, 12, 12, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: slideInLeft 0.8s ease-out;
}

.wnhero-badge i {
    font-size: 1.1rem;
}

.wnhero-title {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 10px 0;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.wnhero-title .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.wnhero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-color);
    opacity: 0.2;
    border-radius: 3px;
}

.wnhero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin: 20px 0 40px;
    font-weight: 500;
    max-width: 600px;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.wnhero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: slideInLeft 0.8s ease-out 0.6s both;
}

.wnstat-item {
    text-align: left;
}

.wnstat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.wnstat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.wnhero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease-out 0.8s both;
}

.btn-primary-custom {
    padding: 0.92rem 1.4rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 9px;
    max-height: 55px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(203, 12, 12, 0.3);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(203, 12, 12, 0.4);
    color: white;
}

.btn-outline-custom {
    max-height: 55px;
    padding:0.92rem 1.4rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 9px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-base);
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(203, 12, 12, 0.3);
}

/* Hero Image Section */
.wnhero-image-section {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.curved-shape {
    position: absolute;
    width: 140%;
    height: 140%;
    background: linear-gradient(135deg, rgba(203, 12, 12, 0.08), rgba(255, 107, 107, 0.12));
    border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    top: -20%;
    right: -20%;
    z-index: 1;
    animation: morphShape 15s ease-in-out infinite;
}

.doctors-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.doctor-img {
    width: 200px;
    height: 320px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    border: 4px solid white;
}

.doctor-img.img-1 {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.doctor-img.img-2 {
    animation: fadeInUp 0.8s ease-out 0.5s both;
    transform: translateY(-30px);
}

.doctor-img.img-3 {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.doctor-img:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(203, 12, 12, 0.3);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-badge span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.intro-section,
.understanding-section {
    background: var(--bg-white);
}

.wnsec-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
    font-weight: 400;
}

.lead-text strong,
.content-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.text-primary-custom {
    color: var(--primary-color);
}

.bg-light-custom {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-lighter) 100%);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 25px;
}

/* ============================================
   CONDITIONS SECTION
   ============================================ */
/* .conditions-section {
    background: var(--bg-white);
    position: relative;
}

.conditions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.conditions-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.condition-card {
    background: white;
    padding: 18px 25px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-base);
    cursor: pointer;
}

.condition-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.condition-card span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.condition-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
    background: linear-gradient(90deg, white, var(--bg-lighter));
} */



/* ============================================
   CONDITIONS SECTION
   ============================================ */
.conditions-section {
    position: relative;
    padding: 60px 0 10px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    overflow: hidden;
}

/* Background Decorative Shapes */
.wnsec-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #cb0c0c, #952624);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, #cb0c0c, #ff6b6b);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(315deg, #952624, #cb0c0c);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.wnsec-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(203, 12, 12, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid #cb0c0c;
    border-radius: 50px;
    color: #cb0c0c;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: slideDown 0.8s ease-out;
}

.header-badge i {
    font-size: 1.1rem;
}

.wnsec-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
    animation: slideDown 0.8s ease-out 0.2s both;
}

.title-highlight {
    color: #c13832;
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #c13832, #ff6b6b);
    opacity: 0.2;
    border-radius: 4px;
}

.wnsec-subtitle {
    font-size: 1.15rem;
    color: #666;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    animation: slideDown 0.8s ease-out 0.4s both;
}

/* ============================================
   CONDITIONS GRID
   ============================================ */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

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

/* ============================================
   CONDITION ITEM (Enhanced)
   ============================================ */
.condition-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

/* .condition-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, #cb0c0c, #952624);
    transform: scaleY(0);
    transition: transform 0.4s ease;
} */

.condition-item:hover {
    transform: translateX(10px);
    border-color: #cb0c0c;
    box-shadow: 0 12px 24px rgba(203, 12, 12, 0.15);
}

.condition-item:hover::before {
    transform: scaleY(1);
}

/* Condition Icon */
.condition-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #cb0c0c, #ff6b6b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(203, 12, 12, 0.2);
}

.condition-icon i {
    font-size: 1.5rem;
    color: white;
}

/* .condition-item:hover .condition-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(203, 12, 12, 0.3);
} */

/* Condition Content */
.condition-content {
    flex: 1;
}

.condition-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.condition-item:hover .condition-title {
    color: var(--primary-color);
}

.condition-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Condition Badge */
.condition-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.badge-specialized {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.15);
}

.badge-advanced {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    box-shadow: 0 2px 8px rgba(230, 81, 0, 0.15);
}

/* ============================================
   FILTER BUTTONS
   ============================================ */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
     
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 500;
    font-family: 'Figtree', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn i {
    font-size: 1rem;
}

.filter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: #cb0c0c;
    color: #cb0c0c;
}

.filter-btn.active {
    background: linear-gradient(135deg, #cb0c0c, #952624);
    color: white;
    border-color: #cb0c0c;
    box-shadow: 0 6px 20px rgba(203, 12, 12, 0.3);
}

/* ============================================
   CALL TO ACTION
   ============================================ */
.conditions-cta {
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.cta-content {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #cb0c0c 0%, #952624 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(203, 12, 12, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.cta-content::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Figtree', sans-serif;
}

.btn-primary {
    background: white;
    color: #cb0c0c;
    border: 2px solid white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #cb0c0c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.03;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.05;
    }
}

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

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

/* Tablet (≥ 768px and < 992px) */
@media (max-width: 991.98px) {
    .wnsec-title {
        font-size: 2.5rem;
    }
    
    .conditions-grid {
        gap: 30px;
    }
    
    .condition-item {
        padding: 20px;
    }
    
    .condition-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .condition-icon i {
        font-size: 1.3rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

/* Mobile (≤ 767px) */
@media (max-width: 767.98px) {
    .conditions-section {
        padding: 40px 0;
    }
    
  
    .wnsec-header {
        margin-bottom: 40px;
    }
    
    .header-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .wnsec-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .wnsec-subtitle {
        font-size: 1rem;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .condition-item {
        padding: 18px;
        gap: 15px;
    }
    
    .condition-item:hover {
        transform: translateX(5px);
    }
    
    .condition-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
    
    .condition-icon i {
        font-size: 1.2rem;
    }
    
    .condition-title {
        font-size: 1rem;
    }
    
    .condition-desc {
        font-size: 0.85rem;
    }
    
    .condition-badge {
        position: static;
        display: inline-block;
        margin-top: 10px;
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .filter-buttons {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .conditions-cta {
        margin-top: 60px;
    }
    
    .cta-content {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
    
    .shape-1,
    .shape-2,
    .shape-3 {
        display: none;
    }
}

/* Extra Small Mobile (≤ 576px) */
@media (max-width: 575.98px) {
    .wnsec-title {
        font-size: 1.75rem;
    }
    
    .condition-item {
        padding: 16px;
    }
    
    .condition-title {
        font-size: 0.95rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

 

/* ============================================
   WHY SECTION
   ============================================ */
.bg-gradient-custom {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, #d41f2e 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-custom::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
}

.text-white-highlight {
    color: white;
    font-weight: 800;
}

.why-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition-base);
}

.why-feature-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.why-feature-card:hover .feature-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.5;
}
.why-ainu-section {
    background: linear-gradient(135deg, #ffffff 0%, #fff9f9 100%);
}

.why-ainu-intro {
    max-width: 900px;
    margin: 0 auto;
}

.why-ainu-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.why-ainu-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.why-ainu-card .card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

/* .why-ainu-card:hover .card-icon {
    transform: rotate(5deg) scale(1.1);
} */

.why-ainu-card .card-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.why-ainu-card .card-content h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.closing-statement {
    background: linear-gradient(135deg, rgba(203, 12, 12, 0.05) 0%, rgba(255, 245, 245, 0.5) 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.closing-statement p {
    font-size: 1.15rem;
     
    margin: 0;
    line-height: 1.8;
}

.intro-text, .understanding-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0px;
}
.why-ainu-card .card-icon i {
    font-size: 1.6rem;
    color: #fff;
}
/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #f9fafb 0%, #fee2e2 100%);
    position: relative;
}

.cta-content {
    background: white;
    padding: 60px 50px;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(203, 12, 12, 0.05), transparent);
    border-radius: 50%;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(203, 12, 12, 0.3);
}

.cta-icon i {
    font-size: 3rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.cta-text {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.btn-light-custom {
    padding: 16px 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(203, 12, 12, 0.3);
}

.btn-light-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(203, 12, 12, 0.4);
    color: white;
}

.btn-outline-light-custom {
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-outline-light-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(203, 12, 12, 0.3);
}
 
/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(405deg);
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
    }
    25% {
        border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    }
    50% {
        border-radius: 50% 50% 40% 60% / 50% 50% 40% 60%;
    }
    75% {
        border-radius: 60% 40% 60% 40% / 40% 60% 50% 50%;
    }
}

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

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

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

/* Tablet (≥ 768px and < 992px) */
@media (max-width: 991.98px) {
    .wnhero-title {
        font-size: 3.5rem;
    }
    
    .wnsec-title {
        font-size: 2.25rem;
    }
    
    .doctor-img {
        width: 170px;
        height: 280px;
    }
    
    .wnhero-stats {
        gap: 25px;
    }
    
    .wnstat-number {
        font-size: 2rem;
    }
    
    .why-feature-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile (≤ 767px) */
@media (max-width: 767.98px) {
    .wnhero-section {
        min-height: auto;
        padding: 10px 0 40px;
    }
    
    .wnhero-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .wnhero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .wnhero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }
    
    .wnhero-stats {
      
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .wnhero-buttons {
        justify-content: center;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }
    
    .wnhero-image-section {
        padding: 40px 20px;
    }
    
    .doctors-group {
        gap: 10px;
        margin-top: 20px;
    }
    
    .doctor-img {
        width: 110px;
        height: 200px;
        border-radius: var(--border-radius-md);
    }
    
    .doctor-img.img-2 {
        transform: translateY(-20px);
    }
    
    .floating-badge {
        padding: 12px 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .wnsec-title {
        font-size: 1.85rem;
    }
    
    .lead-text {
        font-size: 1rem;
    }
    
    .condition-card {
        padding: 15px 20px;
    }
    
    .condition-card span {
        font-size: 0.95rem;
    }
    
    .why-feature-card {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.05rem;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-icon {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon i {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .btn-light-custom,
    .btn-outline-light-custom {
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Mobile (≤ 576px) */
@media (max-width: 575.98px) {
    .wnhero-title {
        font-size: 2rem;
    }
    .closing-statement{padding: 20px;}
    .closing-statement p{font-size: 0.98rem;  text-align: left !important;}
    .wnstat-number {
        font-size: 1.75rem;
    }
    
    .wnstat-label {
        font-size: 0.8rem;
    }
    
    .doctor-img {
        width: 96px;
        height: 180px;
    }
    
    .wnsec-title {
        font-size: 1.65rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-white {
    color: white !important;
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

 
/* Smooth transitions for all interactive elements */
button,
a,
.card {
    transition: var(--transition-base);
}