/* ============================================
   WORLD-CLASS MEDICAL WEBSITE - STUNNING REDESIGN
   Premium Design | Perfect Alignment | Amazing Infographics
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Medical Color Palette - Professional & Trustworthy */
    --primary-blue: #0066CC;
    --primary-dark: #004499;
    --primary-light: #3385D6;
    --medical-green: #00B87C;
    --medical-teal: #00A3AD;
    --emergency-red: #DC2626;
    --warning-amber: #F59E0B;
    
    /* Neutral Colors */
    --dark: #1A1A1A;
    --gray-800: #2D3748;
    --gray-600: #4A5568;
    --gray-400: #A0AEC0;
    --gray-200: #E2E8F0;
    --gray-100: #F7FAFC;
    --white: #FFFFFF;
    
    /* Gradients - Subtle & Professional */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    --gradient-success: linear-gradient(135deg, #00B87C 0%, #00966A 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 102, 204, 0.92) 0%, rgba(0, 82, 163, 0.92) 100%);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing System - 8px Grid */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;
    
    /* Shadows - Subtle & Elegant */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 48px rgba(0, 102, 204, 0.15);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

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

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

button {
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   HEADER - CLEAN & MINIMAL
   ============================================ */
#header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
    height: 72px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-blue);
    white-space: nowrap;
    transition: all var(--transition-normal);
}

.logo i {
    font-size: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 102, 204, 0.2));
}

.logo:hover {
    transform: scale(1.02);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.nav-link i {
    font-size: 16px;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    background: rgba(0, 102, 204, 0.08);
}

.nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Book Button */
.btn-book {
    background: var(--gradient-primary);
    color: white !important;
    padding: 14px 28px !important;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-primary);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-book:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark);
    cursor: pointer;
    padding: var(--space-xs);
}

/* ============================================
   HERO SECTION - STUNNING WITH VISIBLE IMAGES
   ============================================ */
.hero-section {
    margin-top: 0;
    padding-top: 0;
    position: relative;
}

.hero-swiper {
    height: 720px;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
}

/* Very light overlay - images clearly visible */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.45) 0%, rgba(0, 82, 163, 0.35) 100%);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 720px;
    animation: slideInLeft 0.8s ease-out;
}

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

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: white;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.badge i {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hero Title */
.hero-text h1 {
    font-family: var(--font-primary);
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero-text .subtitle {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.98);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Rating Badge */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.rating i {
    color: #FCD34D;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.rating span {
    font-weight: 700;
    font-size: 17px;
    color: white;
    font-family: var(--font-primary);
}

/* Description */
.hero-text .description {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 640px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 17px;
    font-family: var(--font-primary);
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-primary i {
    font-size: 18px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 36px rgba(255, 255, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: white;
    transform: translateY(-3px);
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    transition: all var(--transition-normal);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    font-weight: 900;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 32px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all var(--transition-normal);
}

.swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 6px;
    background: white;
}

/* ============================================
   STATS SECTION - FLOATING CARDS WITH GLOW
   ============================================ */
.stats-section {
    position: relative;
    margin-top: -100px;
    padding-bottom: var(--space-3xl);
    z-index: 100;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: white;
    padding: 48px 32px;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(0, 102, 204, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card i {
    font-size: 56px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 900;
    font-family: var(--font-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-primary);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: var(--space-3xl) 0;
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--dark);
    letter-spacing: -1px;
}

.section-header h2 i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 12px;
}

.section-header p {
    font-size: 19px;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--gray-100);
}

.about-content {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--gray-100);
}

.experience-badge i {
    font-size: 44px;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: block;
}

.experience-badge div {
    font-size: 36px;
    font-weight: 900;
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.experience-badge small {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.highlight-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 184, 124, 0.2);
}

.highlight-item i {
    font-size: 22px;
    color: var(--medical-green);
    flex-shrink: 0;
    min-width: 22px;
}

.highlight-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    font-family: var(--font-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    flex: 1;
    max-width: 100%;
}
    font-weight: 600;
    color: var(--gray-800);
    font-family: var(--font-primary);
}

.about-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-actions .btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.about-actions .btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.about-actions .btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: white;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
    background: var(--dark);
}

.video-container video {
    width: 100%;
    display: block;
}

/* ============================================
   SPECIALIZATIONS - PREMIUM CARDS
   ============================================ */
.specializations-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.spec-card {
    background: white;
    padding: 44px 32px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.spec-card:hover::before {
    opacity: 0.05;
}

.spec-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(0, 102, 204, 0.2);
}

.spec-card > * {
    position: relative;
    z-index: 1;
}

.spec-icon {
    width: 112px;
    height: 112px;
    margin: 0 auto 28px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.25);
    transition: all var(--transition-normal);
}

.spec-card:hover .spec-icon {
    transform: rotateY(360deg) scale(1.05);
}

.spec-icon i {
    font-size: 52px;
    color: white;
}

.spec-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark);
}

.spec-subtitle {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 24px;
    font-weight: 500;
}

.spec-list {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.spec-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 500;
}

.spec-list i {
    color: var(--medical-green);
    font-size: 16px;
}

.spec-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-primary);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    transition: all var(--transition-normal);
}

.spec-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

/* ============================================
   SERVICES - MODERN GRID
   ============================================ */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    padding: 48px 36px;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 102, 204, 0.15);
}

.service-card i {
    font-size: 60px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 16px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-section {
    background: var(--gray-100);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background: white;
    padding: 48px 36px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 184, 124, 0.15);
}

.why-card i {
    font-size: 60px;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    display: block;
}

.why-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}

.why-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 16px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    background: white;
}

.review-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.summary-card {
    background: white;
    padding: 48px 40px;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: all var(--transition-normal);
}

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

.big-rating,
.big-number {
    font-size: 64px;
    font-weight: 900;
    font-family: var(--font-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.summary-card .stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.summary-card i {
    color: #FCD34D;
    font-size: 28px;
}

.summary-card p {
    font-size: 16px;
    color: var(--gray-600);
    font-weight: 600;
    font-family: var(--font-primary);
}

.review-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 102, 204, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.review-header img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gray-100);
}

.review-header h4 {
    font-family: var(--font-primary);
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.review-header .stars {
    display: flex;
    gap: 4px;
}

.review-header .stars i {
    color: #FCD34D;
    font-size: 16px;
}

.review-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
    font-size: 16px;
}

.review-card p.hindi {
    color: var(--gray-400);
    font-size: 15px;
    font-style: italic;
}

/* ============================================
   APPOINTMENT SECTION - SINGLE FORM
   ============================================ */
.appointment-section {
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.appointment-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.appointment-form {
    background: white;
    padding: 48px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(0, 102, 204, 0.08);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
}

.form-group {
    margin-bottom: 28px;
    width: 100%;
    max-width: 100%;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark);
    font-family: var(--font-primary);
    word-wrap: break-word;
    max-width: 100%;
}

.form-group label i {
    color: var(--primary-blue);
    font-size: 17px;
    flex-shrink: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-family: var(--font-secondary);
    transition: all var(--transition-normal);
    background: white;
    color: var(--dark);
    box-sizing: border-box;
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 17px;
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
    transition: all var(--transition-normal);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.4);
}

.form-note {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--primary-blue);
}

/* ============================================
   CONTACT SECTION - MAP ONLY
   ============================================ */
.contact-section {
    background: var(--gray-100);
}

.map-container-full {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container-full iframe {
    width: 100%;
    height: 450px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1F2937 0%, #111827 100%);
    color: white;
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h3 {
    font-family: var(--font-primary);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-col h3 i {
    color: var(--primary-light);
    margin-right: 10px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #9CA3AF;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a,
.footer-col ul li {
    color: #9CA3AF;
    transition: all var(--transition-normal);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-col ul li i {
    width: 20px;
    color: var(--primary-light);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info i {
    color: var(--primary-light);
    margin-top: 4px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--primary-light);
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   FLOATING BUTTONS - MODERN DESIGN
   ============================================ */
.floating-btn {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.call-btn {
    right: 16px;
    bottom: 150px;
    background: var(--gradient-success);
}

.whatsapp-btn {
    right: 16px;
    bottom: 85px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.scroll-top-btn {
    right: 16px;
    bottom: 16px;
    background: var(--gradient-primary);
    opacity: 0;
    visibility: hidden;
}

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

/* ============================================
   RESPONSIVE DESIGN - PERFECT MOBILE
   ============================================ */

/* CRITICAL: Universal mobile fixes - applies to ALL breakpoints */
* {
    max-width: 100%;
    word-wrap: break-word;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

section {
    max-width: 100%;
    overflow-x: hidden;
}

/* All text elements must wrap */
p, h1, h2, h3, h4, h5, h6, span, div, li, td, th, label, a {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .hero-text h1 { font-size: 56px; }
    .section-header h2 { font-size: 44px; }
    .about-content { grid-template-columns: 400px 1fr; gap: 48px; }
}

@media (max-width: 992px) {
    .header-container {
        padding: 0 var(--space-md);
    }
    
    .stats-grid,
    .specializations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .services-grid,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .about-content,
    .appointment-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 500px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .hero-text h1 { font-size: 48px; }
}

@media (max-width: 768px) {
    /* CRITICAL: Force proper width constraints */
    * {
        max-width: 100% !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 16px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Header */
    #header {
        height: 72px;
        width: 100%;
    }
    
    #header.scrolled {
        height: 64px;
    }
    
    /* Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: white;
        flex-direction: column;
        padding: var(--space-lg) var(--space-md);
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
        overflow-y: auto;
        align-items: stretch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    
    .nav-link {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        justify-content: flex-start;
    }
    
    .btn-book {
        width: 100%;
        padding: 18px !important;
        justify-content: center;
        margin-top: 16px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero */
    .hero-section {
        margin-top: 72px;
    }
    
    .hero-swiper {
        height: 550px;
    }
    
    .hero-text h1 {
        font-size: 38px;
    }
    
    .hero-text .subtitle {
        font-size: 22px;
    }
    
    .hero-text .description {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Sections */
    section {
        padding: var(--space-2xl) 0;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header p {
        font-size: 17px;
    }
    
    /* Stats */
    /* Stats Section */
    .stats-section {
        margin-top: -60px;
        padding-top: var(--space-xl);
        padding-bottom: var(--space-2xl);
    }
    
    .stat-card {
        padding: 32px 20px;
    }
    
    .stat-card i {
        font-size: 44px;
    }
    
    .stat-number {
        font-size: 44px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .stats-grid,
    .specializations-grid,
    .services-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px 28px;
    }
    
    .appointment-form {
        padding: 32px 24px;
    }
    
    .info-card {
        padding: 28px;
    }
    
    .contact-card {
        padding: 28px;
    }
    
    /* CRITICAL: Prevent content from being cut off */
    .container {
        max-width: 100%;
        padding: 0 var(--space-md);
    }
    
    /* Ensure all text wraps properly */
    .about-text p,
    .spec-list li,
    .service-card p,
    .why-card p,
    .review-card p,
    .info-card p,
    .contact-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Add right padding to prevent floating button overlap */
    section {
        padding-right: 0;
        padding-left: 0;
    }
    
    .container {
        padding-right: var(--space-md);
        padding-left: var(--space-md);
    }
    
    /* Floating buttons - reduce size on tablet */
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .call-btn {
        right: 14px;
        bottom: 140px;
    }
    
    .whatsapp-btn {
        right: 14px;
        bottom: 80px;
    }
    
    .scroll-top-btn {
        right: 14px;
        bottom: 14px;
    }
}

/* 
   MOBILE SECTION DISABLED - Using inline CSS in index.html instead
   @media (max-width: 576px) { ... }
   ALL MOBILE CSS IS NOW IN index.html <style> TAG
*/

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

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

/* ========================================
   MOBILE SECTION COMPLETELY REMOVED
   All mobile CSS is now in css/mobile-final.css
   ======================================== */

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-blue);
    color: white;
}

::-moz-selection {
    background: var(--primary-blue);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
