/* ============================================
   DAPS PrimeMedical - Premium Healthcare Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #0a6faa;
    --primary-dark: #084e7a;
    --primary-light: #e8f4fc;
    --secondary: #10b981;
    --secondary-light: #d1fae5;
    --accent: #6366f1;
    --accent-light: #e0e7ff;
    --teal: #14b8a6;
    --teal-light: #ccfbf1;
    --navy: #0f172a;
    --dark: #1e293b;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    --gradient-hero: linear-gradient(135deg, #0a6faa 0%, #084e7a 40%, #0f172a 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(10, 111, 170, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-secondary);
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

.section-padding {
    padding: 100px 0;
}

/* ---------- Skeleton Preloader ---------- */
.skeleton-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    overflow-y: auto;
    overflow-x: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.skeleton-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Skeleton Shimmer Animation */
@keyframes skeletonShimmer {
    0% { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton-bone {
    background: linear-gradient(90deg, #eef2f7 25%, #dfe6ee 37%, #eef2f7 63%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.6s ease-in-out infinite;
    border-radius: 6px;
    display: block;
}

.skeleton-bone-circle {
    border-radius: 50%;
}

.skeleton-bone-pill {
    border-radius: 50px;
}

.skeleton-bone-rounded {
    border-radius: 12px;
}

.skeleton-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Skeleton Top Bar */
.skeleton-topbar {
    background: var(--navy);
    padding: 10px 0;
}

.skeleton-topbar .skeleton-container {
    display: flex;
    align-items: center;
}

.skeleton-topbar .skeleton-bone {
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 37%, rgba(255,255,255,0.04) 63%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.6s ease-in-out infinite;
}

/* Skeleton Navbar */
.skeleton-navbar {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}

.skeleton-navbar .skeleton-container {
    display: flex;
    align-items: center;
}

.skeleton-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

/* Skeleton Hero */
.skeleton-hero {
    background: linear-gradient(135deg, #0d3d5e 0%, #0a2e47 40%, #0f172a 100%);
    padding: 100px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.skeleton-hero .skeleton-bone {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 37%, rgba(255,255,255,0.05) 63%);
    background-size: 800px 100%;
    animation: skeletonShimmer 1.6s ease-in-out infinite;
}

.skeleton-hero-content {
    max-width: 600px;
}

.skeleton-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.skeleton-hero-stats {
    display: flex;
    gap: 40px;
}

.skeleton-stat-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Skeleton Cards Section */
.skeleton-cards-section {
    padding: 80px 0 40px;
}

.skeleton-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.skeleton-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.skeleton-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
}

/* Skeleton Responsive */
@media (max-width: 991.98px) {
    .skeleton-topbar,
    .skeleton-nav-links {
        display: none !important;
    }

    .skeleton-hero {
        min-height: 50vh;
        padding: 60px 0;
    }

    .skeleton-hero-stats {
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .skeleton-cards-grid {
        grid-template-columns: 1fr;
    }

    .skeleton-hero-buttons {
        flex-direction: column;
    }

    .skeleton-hero-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .skeleton-stat-group {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-400);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar-info i {
    color: var(--primary);
    font-size: 12px;
}

.top-bar-social a {
    color: var(--gray-400);
    margin-left: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

/* ---------- Navigation ---------- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    z-index: 1050;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 24px;
    color: var(--navy) !important;
}

.brand-icon {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text {
    letter-spacing: -0.5px;
}

.brand-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 8px 18px !important;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.btn-appointment {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    box-shadow: 0 4px 15px rgba(10, 111, 170, 0.3);
    transition: var(--transition);
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(10, 111, 170, 0.4);
    color: var(--white) !important;
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 111, 170, 0.85) 0%, rgba(8, 78, 122, 0.80) 40%, rgba(15, 23, 42, 0.90) 100%);
    z-index: 1;
}

.hero-section > .container {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--secondary);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #6DCFF6 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: #0ea472;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    color: var(--white);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    font-weight: 500;
}

/* Hero Right Side */
.hero-image-wrapper {
    position: relative;
    height: 500px;
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(10, 111, 170, 0.3) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobMorph 8s ease-in-out infinite;
}

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

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    animation: floatCard 6s ease-in-out infinite;
    white-space: nowrap;
}

.hero-card i {
    font-size: 24px;
    color: var(--secondary);
}

.hero-card strong {
    display: block;
    font-size: 14px;
}

.hero-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-card-1 {
    top: 60px;
    right: 20px;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 220px;
    left: 0;
    animation-delay: 2s;
}

.hero-card-3 {
    bottom: 80px;
    right: 40px;
    animation-delay: 4s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 6px; }
    50% { opacity: 0.3; top: 18px; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Section Headers ---------- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 16px auto 0;
}

.section-header .section-badge {
    margin-bottom: 16px;
}

/* ---------- Background Utilities ---------- */
.bg-light-medical {
    background: linear-gradient(180deg, var(--gray-50) 0%, #f0f9ff 100%);
}

/* ---------- Service Cards ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 20px;
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 32px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-icon-bg {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--secondary-light);
    z-index: 0;
    transition: var(--transition);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 16px;
}

.service-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ---------- About Preview ---------- */
.about-image-grid {
    position: relative;
    padding: 20px;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 20px;
    text-align: center;
    font-weight: 600;
    color: var(--white);
}

.img-placeholder i {
    font-size: 48px;
}

.img-placeholder-1 {
    background: var(--gradient-primary);
    min-height: 350px;
}

.img-placeholder-2 {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--teal) 100%);
    min-height: 200px;
}

.about-experience-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.exp-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 600;
    line-height: 1.3;
}

/* About Feature Items */
.about-feature-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.feature-check {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--secondary-light);
    color: var(--secondary);
    font-size: 18px;
    font-weight: 700;
}

.about-feature-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 15px;
}

.about-feature-item p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ---------- Buttons ---------- */
.btn-primary-medical {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    box-shadow: 0 4px 15px rgba(10, 111, 170, 0.3);
    transition: var(--transition);
}

.btn-primary-medical:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(10, 111, 170, 0.4);
    color: var(--white);
}

/* ---------- Why Choose Us ---------- */
.choose-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.choose-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.choose-card:hover .choose-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.choose-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.choose-card p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 0;
}

/* ---------- Doctor Cards ---------- */
.doctor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.doctor-image {
    position: relative;
    overflow: hidden;
}

.doctor-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
    color: var(--primary);
    font-size: 80px;
}

.doctor-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.doctor-card:hover .doctor-social {
    transform: translateY(0);
}

.doctor-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}

.doctor-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.doctor-info {
    padding: 20px;
    text-align: center;
}

.doctor-info h5 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 18px;
}

.doctor-specialty {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.doctor-rating {
    color: #f59e0b;
    font-size: 13px;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.testimonial-quote {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--gray-600);
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 22px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--navy);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ---------- CTA Section ---------- */
.cta-section {
    position: relative;
    background: var(--gradient-hero);
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 40%);
}

.cta-title {
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: #0ea472;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    color: var(--white);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---------- Page Header ---------- */
.page-header {
    position: relative;
    background: var(--gradient-hero);
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(10, 111, 170, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
}

.page-title {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 16px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Service Detail Cards ---------- */
.service-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-detail-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-detail-card:hover .service-detail-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.service-detail-card h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
}

.service-detail-card > p {
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.service-features li i {
    color: var(--secondary);
    font-size: 14px;
}

/* ---------- Process Cards ---------- */
.process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.process-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.process-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 0;
}

/* ---------- Value Cards ---------- */
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-slow);
    border: 1px solid var(--gray-200);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 28px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.value-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 0;
}

/* ---------- Mission Stats ---------- */
.mission-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
}

.mission-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 22px;
}

.mission-stat h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
}

.mission-stat p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 0;
}

.lead-text {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ---------- Timeline ---------- */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 20px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    top: 28px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
}

.timeline-content {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h5 {
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 0;
}

/* ---------- Contact Section ---------- */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    font-size: 22px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-info-card h6 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 15px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-title {
    font-weight: 700;
    font-size: 24px;
}

.form-subtitle {
    color: var(--gray-500);
    font-size: 15px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 111, 170, 0.1);
}

/* Map Placeholder */
.map-placeholder {
    background: linear-gradient(135deg, var(--primary-light) 0%, #dbeafe 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--primary);
}

.map-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
}

.map-placeholder h4 {
    color: var(--primary-dark);
}

.map-placeholder p {
    color: var(--gray-500);
}

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    background: var(--navy);
    color: var(--gray-400);
}

.footer-wave {
    position: relative;
    margin-top: -1px;
    color: var(--navy);
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--white) !important;
}

.footer-logo i {
    font-size: 32px;
    color: var(--primary);
}

.footer-logo .accent {
    color: var(--primary);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 10px;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(10, 111, 170, 0.3);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(10, 111, 170, 0.4);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 10px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--gray-200);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px !important;
        padding-right: 20px !important;
    }

    .timeline-dot {
        left: 11px !important;
        right: auto !important;
    }

    .cta-section {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 16px;
    }

    .about-experience-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-top: 16px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 8px;
    }
}

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

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