        /* ============================================
           DESIGN SYSTEM & CSS VARIABLES
           ============================================ */
        :root {
            --primary: #0072C6;
            --primary-light: #e8f4fd;
            --primary-dark: #005a9e;
            --secondary: #00A86B;
            --secondary-light: #e6f9f1;
            --accent: #FF6B35;
            --accent-light: #fff3ed;
            --dark: #1a1d29;
            --dark-2: #2d3142;
            --gray-900: #1e2a3a;
            --gray-800: #2d3748;
            --gray-700: #4a5568;
            --gray-600: #718096;
            --gray-500: #a0aec0;
            --gray-400: #cbd5e0;
            --gray-300: #e2e8f0;
            --gray-200: #edf2f7;
            --gray-100: #f7fafc;
            --white: #ffffff;
            --gradient-1: linear-gradient(135deg, #0072C6 0%, #00A86B 100%);
            --gradient-2: linear-gradient(135deg, #0072C6 0%, #4A90D9 100%);
            --gradient-3: linear-gradient(135deg, #00A86B 0%, #00D4AA 100%);
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--gray-800);
            background-color: var(--white);
            overflow-x: hidden;
        }

        /* ============================================
           SECTION TITLES
           ============================================ */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title .badge-label {
            display: inline-block;
            padding: 6px 20px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
            line-height: 1.3;
        }

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

        /* ============================================
           NAVBAR
           ============================================ */
        .navbar {
            background: transparent;
            padding: 12px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1050;
            border-bottom: 1px solid transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 8px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            border-bottom: 1px solid var(--gray-200);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 22px;
            font-weight: 800;
            color: white !important;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .navbar-brand {
            color: var(--primary) !important;
        }

        .navbar-brand .brand-icon {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .navbar-brand .brand-icon {
            background: var(--gradient-1);
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px !important;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar.scrolled .nav-link {
            color: var(--gray-700) !important;
        }

        .nav-link:hover,
        .nav-link.active {
            color: white !important;
            background: rgba(255, 255, 255, 0.15);
        }

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

        .btn-nav-login {
            background: white;
            color: var(--primary) !important;
            padding: 8px 24px !important;
            border-radius: var(--radius-sm);
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-nav-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
            color: var(--primary) !important;
        }

        .navbar.scrolled .btn-nav-login {
            background: var(--gradient-1);
            color: white !important;
        }

        .navbar.scrolled .btn-nav-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 114, 198, 0.35);
            color: white !important;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            position: relative;
            min-height: 600px;
            overflow: hidden;
        }

        .hero-swiper {
            width: 100%;
            height: 780px;
        }

        .hero-slide {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .hero-slide-bg {
            position: absolute;
            inset: 0;
            background: var(--gradient-1);
            z-index: 0;
        }

        .hero-slide-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
        }

        .hero-slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 114, 198, 0.85) 0%, rgba(0, 168, 107, 0.7) 100%);
            z-index: 1;
        }

        .hero-content {
            top: -60px;
            position: relative;
            z-index: 2;
            color: white;
            max-width: 650px;
        }

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

        .hero-content h1 {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .hero-content p {
            font-size: 18px;
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 32px;
        }

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

        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: white;
            color: var(--primary);
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            border: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
            color: var(--primary);
        }

        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: white;
            color: white;
        }

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

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

        /* Hero decoration */
        .hero-decoration {
            position: absolute;
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            z-index: 1;
        }

        .hero-decoration::before {
            content: '';
            position: absolute;
            inset: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        /* ============================================
           QUICK ACCESS SECTION
           ============================================ */
        .quick-access {
            margin-top: -200px;
            position: relative;
            z-index: 10;
            padding-bottom: 60px;
        }

        .quick-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 30px 24px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--gray-200);
            text-decoration: none;
            display: block;
            height: 100%;
        }

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

        .quick-card .icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 26px;
            transition: all 0.3s ease;
        }

        .quick-card:hover .icon-wrap {
            transform: scale(1.1);
        }

        .quick-card h5 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .quick-card p {
            font-size: 13px;
            color: var(--gray-600);
            margin: 0;
            line-height: 1.5;
        }

        /* ============================================
           LAYANAN SECTION
           ============================================ */
        .section-layanan {
            padding: 100px 0;
            background: var(--white);
        }

        .layanan-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .layanan-card .card-img-wrap {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: var(--gradient-2);
        }

        .layanan-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .layanan-card:hover .card-img-wrap img {
            transform: scale(1.08);
        }

        .layanan-card .card-img-wrap .icon-overlay {
            position: absolute;
            bottom: -24px;
            left: 24px;
            width: 48px;
            height: 48px;
            background: var(--gradient-1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            box-shadow: 0 4px 12px rgba(0, 114, 198, 0.3);
            z-index: 2;
        }

        .layanan-card .card-body {
            padding: 36px 24px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .layanan-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .layanan-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
            flex: 1;
        }

        .layanan-card .badge-unggulan {
            display: inline-block;
            padding: 4px 12px;
            background: var(--accent-light);
            color: var(--accent);
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        /* ============================================
           ABOUT / TENTANG SECTION
           ============================================ */
        .section-about {
            padding: 100px 0;
            background: var(--gray-100);
            position: relative;
            overflow: hidden;
        }

        .section-about::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 114, 198, 0.04) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
        }

        .about-content h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 24px;
            line-height: 1.3;
        }

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

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 24px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: white;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-sm);
        }

        .about-feature-item i {
            color: var(--secondary);
            font-size: 18px;
        }

        .about-feature-item span {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
        }

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

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

        .about-image-wrap .main-img img {
            width: 100%;
            height: 420px;
            object-fit: cover;
        }

        .about-image-wrap .main-img .placeholder-img {
            width: 100%;
            height: 420px;
            background: var(--gradient-1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-image-wrap .main-img .placeholder-img i {
            font-size: 120px;
            color: rgba(255, 255, 255, 0.15);
        }

        /* Stats counter */
        .stats-row {
            padding: 60px 0 0;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
        }

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

        .stat-card .stat-icon {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 24px;
        }

        .stat-card .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 4px;
        }

        .stat-card .stat-label {
            font-size: 14px;
            color: var(--gray-600);
            font-weight: 500;
        }

        /* ============================================
           DOKTER SECTION
           ============================================ */
        .section-dokter {
            padding: 100px 0;
            background: var(--white);
        }

        .dokter-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-align: center;
        }

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

        .dokter-card .foto-wrap {
            height: 260px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
        }

        .dokter-card .foto-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .dokter-card:hover .foto-wrap img {
            transform: scale(1.05);
        }

        .dokter-card .foto-wrap .placeholder-foto {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-2);
        }

        .dokter-card .foto-wrap .placeholder-foto i {
            font-size: 80px;
            color: rgba(255, 255, 255, 0.2);
        }

        .dokter-card .card-body {
            padding: 20px;
        }

        .dokter-card h5 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .dokter-card .spesialisasi {
            font-size: 13px;
            color: var(--primary);
            font-weight: 600;
            display: inline-block;
            padding: 4px 14px;
            background: var(--primary-light);
            border-radius: 50px;
        }

        .dokter-swiper .swiper-button-next,
        .dokter-swiper .swiper-button-prev {
            width: 44px;
            height: 44px;
            background: white;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            color: var(--primary);
        }

        .dokter-swiper .swiper-button-next::after,
        .dokter-swiper .swiper-button-prev::after {
            font-size: 16px;
            font-weight: 700;
        }

        /* ============================================
           FASILITAS SECTION
           ============================================ */
        .section-fasilitas {
            padding: 100px 0;
            background: var(--gray-100);
        }

        .fasilitas-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

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

        .fasilitas-card .img-wrap {
            height: 200px;
            overflow: hidden;
            background: var(--gradient-3);
        }

        .fasilitas-card .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .fasilitas-card:hover .img-wrap img {
            transform: scale(1.08);
        }

        .fasilitas-card .img-wrap .placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fasilitas-card .img-wrap .placeholder i {
            font-size: 60px;
            color: rgba(255, 255, 255, 0.3);
        }

        .fasilitas-card .card-body {
            padding: 24px;
        }

        .fasilitas-card h5 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .fasilitas-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
            margin: 0;
        }

        /* ============================================
           PAKET MEDIS SECTION
           ============================================ */
        .section-paket {
            padding: 100px 0;
            background: var(--white);
        }

        .paket-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .paket-card .card-header-custom {
            padding: 24px 24px 0;
        }

        .paket-card .card-header-custom .img-wrap {
            height: 180px;
            overflow: hidden;
            border-radius: var(--radius-md);
            background: var(--gradient-1);
        }

        .paket-card .card-header-custom .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .paket-card .card-header-custom .img-wrap .placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .paket-card .card-header-custom .img-wrap .placeholder i {
            font-size: 50px;
            color: rgba(255, 255, 255, 0.3);
        }

        .paket-card .card-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .paket-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .paket-card .price {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .paket-card .price small {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray-600);
        }

        .paket-card .description {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .paket-card .fasilitas-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            flex: 1;
        }

        .paket-card .fasilitas-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            font-size: 14px;
            color: var(--gray-700);
            border-bottom: 1px solid var(--gray-200);
        }

        .paket-card .fasilitas-list li:last-child {
            border-bottom: none;
        }

        .paket-card .fasilitas-list li i {
            color: var(--secondary);
            margin-top: 2px;
        }

        /* ============================================
           BERITA SECTION
           ============================================ */
        .section-berita {
            padding: 100px 0;
            background: var(--gray-100);
        }

        .berita-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .berita-card .img-wrap {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .berita-card .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .berita-card:hover .img-wrap img {
            transform: scale(1.08);
        }

        .berita-card .img-wrap .placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-2);
        }

        .berita-card .img-wrap .placeholder i {
            font-size: 50px;
            color: rgba(255, 255, 255, 0.2);
        }

        .berita-card .img-wrap .kategori-tag {
            position: absolute;
            top: 16px;
            left: 16px;
            padding: 4px 14px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .berita-card .card-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .berita-card .meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 12px;
            font-size: 13px;
            color: var(--gray-500);
        }

        .berita-card .meta i {
            margin-right: 4px;
        }

        .berita-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .berita-card p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .berita-card .read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            margin-top: 16px;
            transition: all 0.3s ease;
        }

        .berita-card .read-more:hover {
            gap: 10px;
            color: var(--primary-dark);
        }

        /* ============================================
           GALERI SECTION
           ============================================ */
        .section-galeri {
            padding: 100px 0;
            background: var(--white);
        }

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

        .galeri-item {
            border-radius: var(--radius-md);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            aspect-ratio: 1;
        }

        .galeri-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
            aspect-ratio: auto;
        }

        .galeri-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .galeri-item:hover img {
            transform: scale(1.1);
        }

        .galeri-item .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .galeri-item:hover .overlay {
            opacity: 1;
        }

        .galeri-item .overlay .info {
            color: white;
        }

        .galeri-item .overlay .info h5 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .galeri-item .overlay .info span {
            font-size: 12px;
            opacity: 0.8;
        }

        .galeri-item .video-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
        }

        .galeri-item .placeholder-galeri {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-1);
        }

        .galeri-item .placeholder-galeri i {
            font-size: 40px;
            color: rgba(255, 255, 255, 0.2);
        }

        /* ============================================
           KERJASAMA SECTION
           ============================================ */
        .section-kerjasama {
            padding: 80px 0;
            background: var(--gray-100);
        }

        .kerjasama-swiper .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
        }

        .kerjasama-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px 24px;
            background: white;
            border-radius: var(--radius-md);
            height: 90px;
            width: 100%;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

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

        .kerjasama-item img {
            max-height: 50px;
            max-width: 140px;
            object-fit: contain;
            filter: grayscale(40%);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .kerjasama-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        .kerjasama-item .placeholder-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            color: var(--gray-500);
        }

        .kerjasama-item .placeholder-logo i {
            font-size: 28px;
        }

        .kerjasama-item .placeholder-logo span {
            font-size: 11px;
            font-weight: 600;
            text-align: center;
        }

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

        .section-cta::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            top: -200px;
            right: -100px;
        }

        .section-cta::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            bottom: -150px;
            left: -100px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .cta-content h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-content p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 36px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 0;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-brand .brand-icon {
            width: 44px;
            height: 44px;
            background: var(--gradient-1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .footer-brand h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin: 0;
        }

        .footer-desc {
            color: var(--gray-500);
            line-height: 1.8;
            font-size: 14px;
            margin-bottom: 24px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .footer-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gray-500);
            text-decoration: none;
            font-size: 14px;
            padding: 6px 0;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--primary);
            padding-left: 6px;
        }

        .footer-link i {
            font-size: 10px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 18px;
        }

        .footer-contact-item .icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            background: rgba(0, 114, 198, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
        }

        .footer-contact-item .text {
            font-size: 14px;
            color: var(--gray-500);
            line-height: 1.6;
        }

        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-500);
            font-size: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 60px;
            padding: 24px 0;
        }

        .footer-bottom p {
            color: var(--gray-600);
            font-size: 14px;
            margin: 0;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 38px;
            }

            .section-title h2,
            .about-content h2 {
                font-size: 30px;
            }

            .cta-content h2 {
                font-size: 32px;
            }

            .galeri-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .galeri-item:nth-child(1) {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .hero-swiper {
                height: 500px;
            }

            .hero-content h1 {
                font-size: 30px;
            }

            .hero-content p {
                font-size: 16px;
            }

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

            .quick-access {
                margin-top: -40px;
            }

            .section-layanan,
            .section-about,
            .section-dokter,
            .section-fasilitas,
            .section-paket,
            .section-berita,
            .section-galeri {
                padding: 60px 0;
            }

            .section-title {
                margin-bottom: 40px;
            }

            .galeri-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .galeri-item:nth-child(1) {
                grid-column: span 2;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .stat-card {
                margin-bottom: 16px;
            }
        }

        @media (max-width: 576px) {
            .galeri-grid {
                grid-template-columns: 1fr 1fr;
            }

            .galeri-item:nth-child(1) {
                grid-column: span 2;
            }
        }

        /* ============================================
           SCROLL TO TOP
           ============================================ */
        .scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 114, 198, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .scroll-top-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0, 114, 198, 0.5);
        }

        /* ============================================
           ANIMATIONS
           ============================================ */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }
