/* ==========================================
   Modern Professional Hospital Website
   Color Palette & Variables
   ========================================== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --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: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   General Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-600);
}

img {
    max-width: 100%;
    height: auto;
}
/* ==========================================
   Enhanced Top Bar - Mobile Optimized
   ========================================== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left i {
    margin-right: 6px;
    opacity: 0.9;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.top-bar-right a {
    color: white;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
}

.top-bar-right a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ==========================================
   Modern Navigation - Mobile First
   ========================================== */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98) !important;
    transition: var(--transition);
}

.navbar.sticky-top {
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    letter-spacing: -0.03em;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand i {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 8px;
    font-size: 1.75rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(0.95); }
}

.navbar-brand span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Improved Navbar Toggler */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 8px 12px;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(37, 99, 235, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-weight: 600;
    font-size: 0.9375rem;
    margin: 0 0px;
    color: var(--gray-700) !important;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 10px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navbar .btn-primary {
    padding: 10px 24px;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* ==========================================
   Hero Section - Enhanced Visibility
   ========================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.92) 0%, 
        rgba(30, 64, 175, 0.88) 50%, 
        rgba(37, 99, 235, 0.85) 100%);
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.hero-bg-1 {
    background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1920&q=80');
}

.hero-bg-2 {
    background-image: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?w=1920&q=80');
}

.hero-bg-3 {
    background-image: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1920&q=80');
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 100px 0;
}

.hero-content h1 {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 800;
    line-height: 1.15;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    color: white;
}

.hero-content p {
    margin-bottom: 32px;
    font-size: 1.125rem;
    animation: fadeInUp 0.8s 0.2s both;
    color: rgba(255, 255, 255, 0.98);
    max-width: 600px;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.hero-content .btn {
    animation: fadeInUp 0.8s 0.4s both;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
    text-shadow: none;
}

.hero-content .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.hero-content .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
    color: var(--primary-dark);
}

.hero-content .btn-outline-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.hero-content .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: white;
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: var(--transition);
    opacity: 1;
}

.carousel-indicators button.active {
    background-color: white;
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Quick Info Section - Glass Effect
   ========================================== */
.quick-info {
    margin-top: -70px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.info-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1));
    backdrop-filter: blur(20px);
    padding: 32px 28px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    height: 100%;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.info-box i {
    font-size: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 20px;
    transition: var(--transition);
    flex-shrink: 0;
}

.info-box:hover i {
    transform: scale(1.1) rotate(5deg);
}

.info-content {
    flex: 1;
}

.info-content h5 {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark-color);
}

.info-content p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================
   Section Titles - Modern Typography
   ========================================== */
.section-title {
    position: relative;
}

.section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark-color);
    letter-spacing: -0.03em;
}

.title-border {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
}

.title-border::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
}
/* ==========================================
   Feature List - Enhanced
   ========================================== */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.feature-list li {
    padding: 14px 0;
    font-size: 1rem;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-fast);
}

.feature-list li:hover {
    padding-left: 8px;
    color: var(--primary-color);
}

.feature-list i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1.25rem;
    vertical-align: middle;
}

.feature-list-detailed {
    list-style: none;
    padding: 0;
}

.feature-list-detailed li {
    display: flex;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-list-detailed li:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.feature-list-detailed i {
    color: var(--primary-color);
    font-size: 28px;
    margin-right: 20px;
    margin-top: 4px;
}

.feature-list-detailed h6 {
    margin-bottom: 6px;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark-color);
}

.feature-list-detailed p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ==========================================
   Service Cards - Modern Design
   ========================================== */
.service-card {
    background: white;
    padding: 42px 36px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gray-100);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 22px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    filter: blur(10px);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-icon::before {
    opacity: 0.7;
}

.service-icon i {
    font-size: 42px;
    color: white;
}

.service-card h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link:hover i {
    margin-left: 12px;
}

/* ==========================================
   Service Detail Cards
   ========================================== */
.service-detail-card {
    background: white;
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: var(--transition);
    border: 2px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.service-detail-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.service-detail-card:hover::after {
    opacity: 1;
}

.service-detail-card .service-icon {
    margin-bottom: 24px;
}

.service-detail-card h4 {
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 12px 0;
    color: var(--gray-700);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1.125rem;
}

.service-detail-card .btn {
    position: relative;
    z-index: 1;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: var(--transition);
}

/* ==========================================
   Stats Section - Modern Gradient
   ========================================== */
.stats-section {
    background: linear-gradient(135deg, #1e3a8a 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.stat-box {
    padding: 32px 24px;
    position: relative;
    z-index: 1;
}

.stat-box i {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-box h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-box p {
    font-size: 1.125rem;
    margin: 0;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   Doctor Cards - Premium Design
   ========================================== */
.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--gray-100);
}

.doctor-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.doctor-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.15);
}

.doctor-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.doctor-card:hover .doctor-img::after {
    opacity: 1;
}

.doctor-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 18px;
    text-align: center;
    transition: var(--transition);
    z-index: 2;
}

.doctor-card:hover .doctor-social {
    bottom: 0;
}

.doctor-social a {
    color: white;
    margin: 0 12px;
    font-size: 1.125rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
}

.doctor-social a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px);
}

.doctor-info {
    padding: 28px;
    text-align: center;
    position: relative;
}

.doctor-info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.doctor-info p {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.doctor-info .badge {
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8125rem;
}

.doctor-info .btn {
    margin-top: 16px;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    transition: var(--transition);
}

/* ==========================================
   Testimonial Cards - Modern Style
   ========================================== */
.testimonial-card {
    background: white;
    padding: 36px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: var(--transition);
    border: 2px solid var(--gray-100);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: var(--gray-100);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.testimonial-card .stars {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card .stars i {
    color: #fbbf24;
    font-size: 1.125rem;
    margin: 0 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-700);
    margin: 24px 0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid var(--gray-100);
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-right: 16px;
    border: 3px solid var(--gray-100);
}

.testimonial-author h6 {
    margin: 0;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1rem;
}

.testimonial-author small {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ==========================================
   CTA Section - Eye-catching
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.cta-section p {
    font-size: 1.125rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.cta-section .btn-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   Page Header - Modern Banner
   ========================================== */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-item {
    font-weight: 500;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: rgba(255,255,255,0.85);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

/* ==========================================
   Mission & Vision Cards
   ========================================== */
.mission-vision-card {
    background: linear-gradient(135deg, white, var(--gray-50));
    padding: 44px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: var(--transition);
    border: 2px solid var(--gray-100);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.mission-vision-card .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.mission-vision-card .icon-box i {
    font-size: 36px;
    color: white;
}

.mission-vision-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.mission-vision-card p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* ==========================================
   Value Cards
   ========================================== */
.value-card {
    text-align: center;
    padding: 36px 28px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--gray-100);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.value-card i {
    font-size: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.value-card:hover i {
    transform: scale(1.1) rotateY(360deg);
}

.value-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--dark-color);
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ==========================================
   Achievement Cards
   ========================================== */
.achievement-card {
    background: white;
    padding: 44px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--gray-100);
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--warning-color);
}

.achievement-card i {
    font-size: 56px;
    color: var(--warning-color);
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.3));
    transition: var(--transition);
}

.achievement-card:hover i {
    transform: scale(1.1) rotateY(180deg);
}

.achievement-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-size: 1.25rem;
}

.achievement-card p {
    color: var(--gray-600);
    font-weight: 600;
}

/* ==========================================
   Appointment Form - Premium Design
   ========================================== */
.appointment-form-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    border: 2px solid var(--gray-100);
}

.appointment-info-card {
    background: linear-gradient(135deg, white, var(--gray-50));
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
}

.appointment-info-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.appointment-info-card h5 i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 12px;
    font-size: 1.375rem;
}

.appointment-info-card h4 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.appointment-notes {
    list-style: none;
    padding: 0;
}

.appointment-notes li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.appointment-notes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.125rem;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form Enhancements */
.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 0.9375rem;
}

.form-control,
.form-select {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.9375rem;
    transition: var(--transition);
    background-color: var(--gray-50);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background-color: white;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ==========================================
   Contact Info Boxes
   ========================================== */
.contact-info-box {
    text-align: center;
    padding: 44px 36px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--gray-100);
}

.contact-info-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-color);
}

.contact-info-box .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.contact-info-box:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-info-box .icon i {
    font-size: 40px;
    color: white;
}

.contact-info-box h5 {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: var(--dark-color);
}

.contact-info-box p {
    color: var(--gray-700);
    line-height: 1.8;
}

.contact-form-card {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    border: 2px solid var(--gray-100);
}

.contact-form-card h3 {
    font-weight: 800;
    color: var(--dark-color);
}

.contact-sidebar-card {
    background: linear-gradient(135deg, white, var(--gray-50));
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
}

.contact-sidebar-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
}

.contact-sidebar-card h5 i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 12px;
    font-size: 1.375rem;
}

.social-links-large a {
    text-align: left;
    padding: 14px 24px;
    font-weight: 600;
    border-radius: 12px;
    border-width: 2px;
    transition: var(--transition);
}

.social-links-large a:hover {
    transform: translateX(8px);
}

.social-links-large i {
    margin-right: 12px;
    font-size: 1.125rem;
}

/* Map Section */
.map-section iframe {
    filter: grayscale(20%);
    transition: var(--transition);
}

.map-section iframe:hover {
    filter: grayscale(0%);
}

/* ==========================================
   Footer - Modern Dark Theme
   ========================================== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0 24px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer h4, .footer h5 {
    margin-bottom: 28px;
    font-weight: 700;
    color: white;
}

.footer h4 {
    background: linear-gradient(135deg, white, var(--gray-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.footer p {
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: white;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    border-color: transparent;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    margin-right: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 18px;
    color: var(--gray-400);
    display: flex;
    align-items: start;
    font-size: 0.9375rem;
}

.footer-contact i {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.125rem;
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 48px 0 24px;
}

.footer a.text-white {
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.footer a.text-white:hover {
    color: var(--accent-color) !important;
}

/* ==========================================
   Scroll to Top Button - Premium
   ========================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.25rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: var(--transition);
    z-index: 1000;
}

.scroll-top-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}

.scroll-top-btn.show {
    display: flex;
    animation: fadeInUp 0.4s ease-out;
}

/* ==========================================
   Button Enhancements
   ========================================== */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 32px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.0625rem;
    border-radius: 50px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* ==========================================
   Alert Messages
   ========================================== */
.alert {
    border-radius: 12px;
    border: none;
    padding: 16px 20px;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 12px;
        margin-top: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-link {
        margin: 8px 0;
    }
    
    .navbar .btn-primary {
        margin-top: 16px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .top-bar-left,
    .top-bar-right {
        text-align: center;
        font-size: 0.8125rem;
    }
    
    .top-bar-right {
        margin-top: 8px;
    }
    
    .hero-content {
        padding: 80px 0;
    }
    
    .quick-info {
        margin-top: -40px;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .info-box i {
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .stat-box h3 {
        font-size: 2.5rem;
    }
    
    .appointment-form-card,
    .contact-form-card {
        padding: 32px 24px;
    }
    
    .scroll-top-btn {
        width: 48px;
        height: 48px;
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 576px) {
    .hero-content .btn {
        display: block;
        margin-bottom: 16px;
    }
    
    .hero-content .btn:last-child {
        margin-bottom: 0;
    }
}

/* ==========================================
   Loading Animation
   ========================================== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.shadow-custom {
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   Smooth Scrolling
   ========================================== */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   Selection Color
   ========================================== */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}


* Tablet Landscape */
@media (max-width: 991px) {
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 16px;
        margin-top: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        border: 2px solid var(--gray-100);
    }
    
    .nav-link {
        margin: 6px 0;
        padding: 12px 16px !important;
        border-radius: 8px;
        transition: var(--transition-fast);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--gray-50);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar .btn-primary {
        margin-top: 16px;
        width: 100%;
        padding: 14px 24px;
    }
    
    .hero-slide {
        min-height: 550px;
    }
    
    .quick-info {
        margin-top: -50px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
        font-size: 0.8125rem;
		display:none;
    }
    
    .top-bar .container {
        padding: 0 10px;
    }
    
    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        padding: 5px 0;
    }
    
    .top-bar-left {
        font-size: 0.75rem;
        gap: 10px;
    }
    
    .top-bar-right a {
        width: 30px;
        height: 30px;
        font-size: 0.8125rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-brand i {
        font-size: 1.5rem;
        margin-right: 6px;
    }
    
    .navbar-toggler {
        padding: 6px 10px;
    }
    
    .hero-slide {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-content .btn {
        padding: 12px 28px;
        font-size: 0.9375rem;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
    }
    
    .carousel-indicators {
        margin-bottom: 20px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .carousel-indicators button.active {
        width: 24px;
    }
    
    .quick-info {
        margin-top: -30px;
        padding: 0 10px;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
        padding: 24px 20px;
    }
    
    .info-box i {
        margin-right: 0;
        margin-bottom: 12px;
        font-size: 40px;
    }
    
    .info-content h5 {
        font-size: 1rem;
    }
    
    .info-content p {
        font-size: 0.875rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .stat-box h3 {
        font-size: 2.5rem;
    }
    
    .service-card,
    .service-detail-card {
        padding: 28px 24px;
    }
    
    .doctor-card .doctor-img {
        height: 250px;
    }
    
    .appointment-form-card,
    .contact-form-card {
        padding: 28px 20px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .scroll-top-btn {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
        border-radius: 12px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .top-bar-left {
        flex-direction: column;
        gap: 5px;
    }
    
    .navbar-brand {
        font-size: 1.125rem;
    }
    
    .navbar-brand i {
        font-size: 1.375rem;
    }
    
    .hero-slide {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.9375rem;
    }
    
    .hero-content .btn {
        display: block;
        margin-bottom: 12px;
        width: 100%;
        padding: 12px 24px;
    }
    
    .hero-content .btn:last-child {
        margin-bottom: 0;
    }
    
    .hero-content .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
    
    .stat-box i {
        font-size: 40px;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .testimonial-card::before {
        font-size: 60px;
        top: 15px;
        right: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.875rem;
    }
    
    .info-box {
        padding: 20px 16px;
    }
}

/* ==========================================
   Smooth Scrolling
   ========================================== */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   Selection Color
   ========================================== */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* ==========================================
   Loading States
   ========================================== */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.shadow-custom {
    box-shadow: var(--shadow-xl);
}