/* ========================================
   Dr. Gopinath Vasu - ICU at Home
   Static Website Styles
   ======================================== */

/* CSS Variables */
:root {
    --purple-primary: #7B3F8A;
    --purple-dark: #5a2d66;
    --purple-light: #f3e8f7;
    --orange-primary: #F7931E;
    --orange-dark: #d97a0a;
    --orange-light: #fff4e6;
    
    --emerald-600: #059669;
    --emerald-700: #047857;
    --green-600: #16a34a;
    --green-700: #15803d;
    --red-600: #dc2626;
    --red-100: #fee2e2;
    --blue-600: #2563eb;
    --blue-100: #dbeafe;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-narrow {
    max-width: 900px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 56px;
    width: 56px;
    object-fit: contain;
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo-location {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.nav-desktop {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--purple-primary);
}

.header-cta {
    display: none;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    color: var(--gray-700);
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.mobile-nav-link:hover {
    background-color: var(--purple-light);
}

.mobile-cta {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}


/* ========================================
   Desktop Dropdown
======================================== */
.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #fff;
    min-width: 230px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    padding: 8px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown-item {
    display: block;
    padding: 10px 18px;
    color: var(--gray-700);
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--purple-light);
}

/* Show on hover */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Arrow animation */
.arrow {
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* ========================================
   Mobile Dropdown
======================================== */
.mobile-submenu {
    display: none;
    flex-direction: column;
    padding-left: 12px;
}

.mobile-dropdown.active .mobile-submenu {
    display: flex;
}

.mobile-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown.active .arrow {
    transform: rotate(180deg);
}
/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.btn-call-sm, .btn-whatsapp-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-call, .btn-whatsapp {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-call-lg, .btn-whatsapp-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.btn-call-xl, .btn-whatsapp-xl {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-2xl);
}

.btn-call-sm, .btn-call, .btn-call-lg, .btn-call-xl {
    background-color: var(--emerald-600);
    color: var(--white);
}

.btn-call-sm:hover, .btn-call:hover, .btn-call-lg:hover, .btn-call-xl:hover {
    background-color: var(--emerald-700);
    transform: scale(1.05);
}

.btn-whatsapp-sm, .btn-whatsapp, .btn-whatsapp-lg, .btn-whatsapp-xl {
    background-color: var(--green-600);
    color: var(--white);
}

.btn-whatsapp-sm:hover, .btn-whatsapp:hover, .btn-whatsapp-lg:hover, .btn-whatsapp-xl:hover {
    background-color: var(--green-700);
    transform: scale(1.05);
}

.btn-purple {
    background-color: var(--purple-primary);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.btn-purple:hover {
    background-color: var(--purple-dark);
    transform: scale(1.05);
}

.btn-white {
    background-color: var(--white);
    color: var(--purple-primary);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background-color: var(--gray-100);
    transform: scale(1.05);
}

.btn-whatsapp-outline {
    background-color: var(--green-600);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-outline:hover {
    background-color: var(--green-700);
    transform: scale(1.05);
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 5rem 0;
}

.section-white {
    background-color: var(--white);
}

.section-gradient {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--white) 50%, var(--orange-light) 100%);
}

.section-warm {
    background: linear-gradient(135deg, #fef2f2 0%, var(--orange-light) 50%, #fef9c3 100%);
}

.section-light {
    background: linear-gradient(135deg, var(--gray-50) 0%, #eff6ff 100%);
}

.section-dark {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--purple-dark) 50%, var(--gray-900) 100%);
    position: relative;
    overflow: hidden;
}

.section-dark-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 40px 40px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title.text-left {
    text-align: left;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* ========================================
   Badges
   ======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.badge-emergency {
    background-color: var(--red-100);
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.badge-red {
    background-color: #fef2f2;
    color: var(--red-600);
}

.badge-purple {
    background-color: var(--purple-light);
    color: var(--purple-primary);
}

.badge-blue {
    background-color: var(--blue-100);
    color: var(--blue-600);
}

.badge-emergency-dark {
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(8px);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, #eff6ff 50%, var(--purple-light) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 1px 1px, var(--purple-primary) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

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

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

.text-green {
    color: var(--green-600);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.authority-box {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--orange-primary);
}

.authority-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.authority-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.authority-location i {
    color: var(--purple-primary);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-reassurance {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-600);
}

.hero-reassurance i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.hero-reassurance p {
    font-size: 0.875rem;
}

/* Doctor Image */
.hero-right {
    display: flex;
    justify-content: center;
}

.doctor-image-container {
    position: relative;
}

.decorative-circle {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(40px);
}

.decorative-circle.purple {
    top: -24px;
    left: -24px;
    background-color: #c4b5fd;
}

.decorative-circle.orange {
    bottom: -24px;
    right: -24px;
    background-color: #fed7aa;
}

.doctor-image-wrapper {
    position: relative;
    background-color: var(--white);
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
}

.doctor-image {
    width: 100%;
    max-width: 400px;
    border-radius: 0.75rem;
    object-fit: cover;
}

.doctor-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.doctor-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.doctor-overlay p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.star-rating i {
    color: #facc15;
    font-size: 0.875rem;
}

.star-rating span {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-left: 0.5rem;
}

/* ========================================
   Problem Section
   ======================================== */
.problems-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.problem-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: #c4b5fd;
    box-shadow: var(--shadow-xl);
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.problem-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--orange-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.problem-card:hover .problem-icon {
    background-color: #fed7aa;
}

.problem-icon i {
    color: var(--orange-primary);
}

.problem-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.problem-card:hover .problem-content h3 {
    color: var(--purple-primary);
}

.problem-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.empathy-box {
    margin-top: 3rem;
    background: linear-gradient(90deg, var(--purple-light) 0%, var(--orange-light) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #c4b5fd;
    text-align: center;
}

.empathy-text {
    font-size: 1.25rem;
    color: var(--gray-800);
    line-height: 1.8;
    font-style: italic;
}

.empathy-author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-section {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
    object-fit: cover;
}

.about-stats-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.stat-item i {
    color: var(--purple-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.0rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text p {
    color: var(--gray-700);
    line-height: 1.7;
}

.text-lg {
    font-size: 1.125rem;
}

.approach-box {
    background: linear-gradient(90deg, var(--orange-light) 0%, var(--purple-light) 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--orange-primary);
    box-shadow: var(--shadow-md);
}

.approach-box h3 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.approach-list i {
    color: var(--green-600);
    margin-top: 0.25rem;
}

.doctor-quote {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--purple-primary);
    font-style: italic;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--orange-light) 100%);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid #c4b5fd;
}

.stat-card i {
    font-size: 2rem;
    color: var(--purple-primary);
    margin-bottom: 0.5rem;
}

/* ========================================
   ICU at Home Section
   ======================================== */
.equipment-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .equipment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.equipment-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.equipment-card:hover {
    box-shadow: var(--shadow-xl);
}

.equipment-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--purple-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-icon i {
    font-size: 1.5rem;
    color: var(--purple-primary);
}

.equipment-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.equipment-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.care-coordination-box {
    background: linear-gradient(90deg, var(--orange-light) 0%, var(--purple-light) 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #fed7aa;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.care-coordination-box > i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.care-coordination-box h4 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.care-coordination-box p {
    color: var(--gray-700);
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--orange-primary);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-card:hover {
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--orange-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.benefit-card:hover .benefit-icon {
    background-color: #fed7aa;
}

.benefit-icon i {
    color: var(--orange-primary);
}

.benefit-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.tieups-box {
    background-color: #eff6ff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tieups-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--blue-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tieups-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.tieups-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.tieups-content p {
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.tieups-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tieup-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.tieup-badge i {
    color: var(--green-600);
}

.cost-comparison-box {
    background: linear-gradient(90deg, #dcfce7 0%, #eff6ff 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #86efac;
    text-align: center;
}

.cost-icon {
    font-size: 3rem;
    color: var(--green-600);
    margin-bottom: 1rem;
}

.cost-comparison-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.cost-comparison-box p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Services Section
   ======================================== */
.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #c4b5fd;
    box-shadow: var(--shadow-2xl);
}

.service-image {
    height: 192px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--purple-light);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.service-card:hover .service-icon {
    background-color: #c4b5fd;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--purple-primary);
}

.service-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    transition: color 0.3s;
}

.service-card:hover .service-header h3 {
    color: var(--purple-primary);
}

.service-header p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.service-needs {
    background-color: var(--orange-light);
    padding: 1rem;
    border-radius: 0.5rem;
}

.service-needs h4, .service-doctor h4, .service-outcome h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.service-needs ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-needs li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.service-needs li i {
    color: var(--orange-primary);
    margin-top: 0.25rem;
}

.service-doctor p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.service-outcome {
    background-color: #dcfce7;
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--green-600);
}

.service-outcome h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-outcome h4 i {
    color: var(--green-600);
}

.service-outcome p {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* ========================================
   When to Call Section
   ======================================== */
.when-to-call-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .when-to-call-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.when-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--orange-primary);
    transition: all 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.when-card:hover {
    box-shadow: var(--shadow-2xl);
}

.when-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    transition: background-color 0.3s;
}

.when-card:hover .when-icon {
    background-color: #fed7aa;
}

.when-icon i {
    font-size: 0.875rem;
    color: var(--orange-primary);
}

.when-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.when-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.urgent-cta-box {
    background: linear-gradient(90deg, var(--purple-primary) 0%, var(--orange-primary) 100%);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-2xl);
}

@media (min-width: 768px) {
    .urgent-cta-box {
        padding: 3rem;
    }
}

.urgent-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .urgent-cta-box h3 {
        font-size: 1.875rem;
    }
}

.urgent-cta-box > p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

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

@media (min-width: 640px) {
    .urgent-cta-buttons {
        flex-direction: row;
    }
}

.urgent-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ========================================
   How It Works Section
   ======================================== */
.process-steps {
    position: relative;
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .process-steps::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #c4b5fd 0%, #fed7aa 50%, #86efac 100%);
        transform: translateY(-50%);
        z-index: -1;
    }
}

.process-step {
    position: relative;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    text-align: center;
}

.process-step:hover {
    border-color: #c4b5fd;
    box-shadow: var(--shadow-2xl);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--orange-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-lg);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--orange-light) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
}

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

.process-step h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.safety-features {
    background: linear-gradient(135deg, #dcfce7 0%, #eff6ff 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #86efac;
}

.safety-features h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1.5rem;
}

.safety-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .safety-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.safety-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.safety-item:nth-child(1) .safety-icon {
    background-color: #dcfce7;
}

.safety-item:nth-child(1) .safety-icon i {
    color: var(--green-600);
}

.safety-item:nth-child(2) .safety-icon {
    background-color: var(--blue-100);
}

.safety-item:nth-child(2) .safety-icon i {
    color: var(--blue-600);
}

.safety-item:nth-child(3) .safety-icon {
    background-color: var(--purple-light);
}

.safety-item:nth-child(3) .safety-icon i {
    color: var(--purple-primary);
}

.safety-item h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.safety-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    position: relative;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-2xl);
}

.testimonial-quote-icon {
    position: absolute;
    top: -16px;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--orange-primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.testimonial-stars i {
    color: #facc15;
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.trust-indicators {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-item:nth-child(1) .trust-number {
    color: var(--purple-primary);
}

.trust-item:nth-child(2) .trust-number {
    color: var(--orange-primary);
}

.trust-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.trust-stars i {
    color: #facc15;
    font-size: 1.5rem;
}

.trust-label {
    color: var(--gray-600);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-container {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 2rem;
    border: 1px solid var(--gray-200);
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
}

.faq-question i {
    color: var(--gray-400);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--gray-700);
    line-height: 1.7;
}

.faq-cta {
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(90deg, var(--purple-light) 0%, var(--orange-light) 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #c4b5fd;
}

.faq-cta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.faq-cta p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.final-cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 2.5rem;
    }
}

.final-cta-description {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .final-cta-buttons {
        flex-direction: row;
    }
}

.final-trust-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.final-trust-elements span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.final-trust-elements i {
    color: #4ade80;
}

.family-guidance-box {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.family-guidance-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.family-guidance-box p {
    color: #e5e7eb;
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--gray-900);
    color: #d1d5db;
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-description {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-400);
    transition: color 0.3s;
}

.footer-contact-item:hover {
    color: var(--white);
}

.contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.contact-icon.call {
    background-color: var(--emerald-600);
}

.contact-icon.call:hover {
    background-color: var(--emerald-700);
}

.contact-icon.whatsapp {
    background-color: var(--green-600);
}

.contact-icon.whatsapp:hover {
    background-color: var(--green-700);
}

.contact-icon i {
    color: var(--white);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ========================================
   Floating Action Buttons
   ======================================== */
.floating-buttons {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    transition: all 0.3s;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
}

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

.floating-call {
    background-color: var(--emerald-600);
}

.floating-call:hover {
    background-color: var(--emerald-700);
}

.floating-call i {
    animation: pulse 2s infinite;
}

.floating-whatsapp {
    background-color: var(--green-600);
}

.floating-whatsapp:hover {
    background-color: var(--green-700);
}

.floating-tooltip {
    position: absolute;
    right: 100%;
    margin-right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--gray-900);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

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

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 640px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-call-lg, .btn-whatsapp-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-call-xl, .btn-whatsapp-xl {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}




/* BLOG SECTION */
.blog-section {
  background: linear-gradient(135deg, var(--purple-light), #ffffff);
  padding: 80px 20px;
  
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 36px;
  color: var(--purple-dark);
  margin-bottom: 10px;
}

.blog-header p {
  color: #666;
}

/* GRID */
.blog-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-image {
  position: relative;
  height: 220px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--purple-primary);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* CONTENT */
.blog-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 20px;
  color: var(--purple-dark);
  margin-bottom: 10px;
}

.blog-text {
  color: #555;
  line-height: 1.6;
  flex: 1;
}

.blog-btn {
  margin-top: 15px;
  display: inline-block;
  color: var(--purple-primary);
  font-weight: 500;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-header h2 {
    font-size: 26px;
  }
}




/* ===============================
   PREMIUM SERVICE ICON STYLE
================================ */

/* Icon container */
.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(123, 63, 138, 0.15);
  transition: all 0.35s ease;
}

/* Icon itself */
.service-card-icon i {
  font-size: 1.45rem;

  /* Gradient icon color */
  background: linear-gradient(
    135deg,
    var(--purple-primary),
    var(--orange-primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: all 0.35s ease;
}

/* Hover — premium effect */
.service-card:hover .service-card-icon {
  background: linear-gradient(
    135deg,
    var(--purple-primary),
    var(--purple-dark)
  );
  transform: translateY(-6px) scale(1.06);
  box-shadow: 0 18px 40px rgba(123, 63, 138, 0.35);
}

/* Hover icon color fix */
.service-card:hover .service-card-icon i {
  -webkit-text-fill-color: #ffffff;
  background: none;
}



/* ==================================================
   WHO SECTION — PREMIUM BACKGROUND
================================================== */

.who-section {
  position: relative;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--purple-light) 40%,
    #fff7f0 100%
  );
  overflow: hidden;
}

/* subtle decorative glow */
.who-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(123, 63, 138, 0.15),
    transparent 70%
  );
  z-index: 0;
}

/* ==================================================
   WHO CARDS — GLASS PREMIUM STYLE
================================================== */

.who-card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(123, 63, 138, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  z-index: 1;
}

/* Hover effect */
.who-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(123, 63, 138, 0.18);
  border-color: rgba(123, 63, 138, 0.2);
}

/* ==================================================
   ICON — PREMIUM STYLE
================================================== */

.who-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* soft gradient container */
  background: linear-gradient(
    135deg,
    #ffffff,
    var(--purple-light)
  );

  box-shadow: 0 10px 25px rgba(123, 63, 138, 0.15);
  margin-bottom: 1rem;
  transition: all 0.35s ease;
}

.who-icon i {
  font-size: 1.5rem;

  /* gradient icon */
  background: linear-gradient(
    135deg,
    var(--purple-primary),
    var(--orange-primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: all 0.35s ease;
}

/* Hover effects */
.who-card:hover .who-icon {
  background: linear-gradient(
    135deg,
    var(--purple-primary),
    var(--purple-dark)
  );
  transform: scale(1.08);
  box-shadow: 0 18px 40px rgba(123, 63, 138, 0.35);
}

.who-card:hover .who-icon i {
  -webkit-text-fill-color: #ffffff;
  background: none;
}

/* ==================================================
   TEXT ENHANCEMENTS
================================================== */

.who-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--gray-900);
}

.who-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}