 /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #f8fafc;
      color: #0f172a;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ===== CONTAINER ===== */
    .container-1 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      background: linear-gradient(160deg, #0b2b4a 0%, #0a3d6b 40%, #0f5a96 100%);
      color: #fff;
      padding: 80px 24px 70px;
      text-align: center;
      overflow: hidden;
      isolation: isolate;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 600px 400px at 20% 80%, rgba(56, 189, 248, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
      z-index: 0;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero .container-1 { position: relative; z-index: 1; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.4px;
      color: rgba(255,255,255,0.85);
      margin-bottom: 24px;
    }
    .hero-badge svg { width: 16px; height: 16px; fill: #38bdf8; }

    .hero h1 {
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .hero h1 span { color: #7dd3fc; }
    .hero p {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.75);
      max-width: 560px;
      margin: 0 auto 32px;
      font-weight: 400;
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      margin-top: 8px;
    }
    .hero-stats .stat {
      text-align: center;
    }
    .hero-stats .stat .num {
      font-size: 1.8rem;
      font-weight: 700;
      color: #7dd3fc;
    }
    .hero-stats .stat .label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 2px;
    }

    @media (max-width: 768px) {
      .hero { padding: 50px 20px 50px; }
      .hero h1 { font-size: 1.9rem; }
      .hero-stats { gap: 24px; }
      .hero-stats .stat .num { font-size: 1.4rem; }
    }

    /* ===== FILTER BAR ===== */
    .filter-section {
      position: sticky;
      top: 0;
      z-index: 50;
      padding: 16px 0;
      background: rgba(248, 250, 252, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .filter-bar-1 {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      background: #fff;
      border-radius: 16px;
      padding: 16px 20px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
    }
    .filter-bar-1 .country-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #f97316, #e11d48);
      color: #fff;
      padding: 8px 16px;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      white-space: nowrap;
    }
    .filter-bar-1 .country-badge svg { width: 18px; height: 18px; fill: currentColor; }
    .filter-bar-1 .input-group-1 {
      position: relative;
      flex: 1;
      min-width: 140px;
    }
    .filter-bar-1 .input-group-1 svg {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      fill: #94a3b8;
      pointer-events: none;
    }
    .filter-bar-1 select,
    .filter-bar-1 input[type="text"] {
      width: 100%;
      padding: 10px 14px 10px 42px;
      border: 1.5px solid #e2e8f0;
      border-radius: 10px;
      font-size: 0.9rem;
      font-family: inherit;
      background: #fff;
      color: #0f172a;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
    .filter-bar-1 select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }
    .filter-bar-1 select:focus,
    .filter-bar-1 input[type="text"]:focus {
      border-color: #0f5a96;
      box-shadow: 0 0 0 3px rgba(15, 90, 150, 0.12);
    }
    .filter-bar-1 .search-btn {
      padding: 10px 28px;
      background: linear-gradient(135deg, #0f5a96, #0a3d6b);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .filter-bar-1 .search-btn:hover { opacity: 0.9; }
    .filter-bar-1 .search-btn:active { transform: scale(0.97); }

    @media (max-width: 768px) {
      .filter-section { position: relative; }
      .filter-bar-1 { flex-direction: column; }
      .filter-bar-1 .input-group-1 { width: 100%; }
      .filter-bar-1 .search-btn { width: 100%; }
    }

    /* ===== FEATURES ===== */
    .features {
      padding: 60px 20px 20px;
      text-align: center;
    }
    .features .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #0f5a96;
      background: rgba(15, 90, 150, 0.08);
      padding: 4px 16px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .features h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #0b2b4a;
      letter-spacing: -0.02em;
      margin-bottom: 40px;
    }
    .features-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .feature-card {
      background: #fff;
      border-radius: 16px;
      padding: 28px 18px;
      width: 170px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 20px 40px rgba(0,0,0,0.08);
    }
    .feature-card .icon-wrap {
      width: 56px;
      height: 56px;
      margin: 0 auto 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #e8f4fd, #dbeafe);
      border-radius: 14px;
      transition: transform 0.3s;
    }
    .feature-card:hover .icon-wrap { transform: scale(1.1); }
    .feature-card .icon-wrap svg { width: 26px; height: 26px; fill: #0f5a96; }
    .feature-card h3 {
      font-size: 0.85rem;
      font-weight: 600;
      color: #0b2b4a;
      line-height: 1.3;
    }
    @media (max-width: 600px) {
      .features h2 { font-size: 1.4rem; }
      .feature-card { width: 145px; padding: 20px 12px; }
    }

    /* ===== RESULTS HEADER ===== */
    .results-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 8px;
    }
    .results-header .count {
      font-size: 0.9rem;
      color: #64748b;
    }
    .results-header .count strong { color: #0f172a; }

    /* ===== HOSPITAL CARDS ===== */
    .hospitals-section {
      padding: 20px 0 60px;
    }
    .hospitals-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 24px;
    }
    @media (max-width: 480px) {
      .hospitals-grid { grid-template-columns: 1fr; }
    }

    /* ===== HOSPITAL CARD ===== */
    .hospital-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
      display: flex;
      flex-direction: column;
      opacity: 0;
      transform: translateY(24px);
    }
    .hospital-card.visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .hospital-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.06), 0 24px 48px rgba(0,0,0,0.08);
    }
    .hospital-card .card-img-wrap {
      position: relative;
      height: 200px;
      overflow: hidden;
      background: #e2e8f0;
    }
    .hospital-card .card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .hospital-card:hover .card-img-wrap img { transform: scale(1.06); }
    .hospital-card .card-img-wrap .img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5));
      pointer-events: none;
    }
    .hospital-card .card-img-wrap .est-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(4px);
      padding: 4px 12px;
      border-radius: 8px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #0f172a;
    }
    .hospital-card .card-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .hospital-card .card-body .hospital-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: #0b2b4a;
      line-height: 1.3;
      margin-bottom: 4px;
      transition: color 0.2s;
    }
    .hospital-card .card-body .hospital-name:hover { color: #0f5a96; }
    .hospital-card .card-body .location {
      font-size: 0.85rem;
      color: #64748b;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .hospital-card .card-body .location svg { width: 14px; height: 14px; fill: #94a3b8; flex-shrink: 0; }
    .hospital-card .card-body .meta-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }
    .hospital-card .card-body .meta-tags .tag {
      background: #f1f5f9;
      color: #334155;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 500;
      border: 1px solid #e2e8f0;
    }
    .hospital-card .card-body .badges {
      display: flex;
      gap: 6px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .hospital-card .card-body .badges .badge {
      padding: 3px 10px;
      border-radius: 5px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.4px;
      background: #e8f4fd;
      color: #0f5a96;
      border: 1px solid #bfdbfe;
    }
    .hospital-card .card-body .badges .badge.jci {
      background: #fef3c7;
      color: #92400e;
      border-color: #fde68a;
    }
    .hospital-card .card-body .actions {
      display: flex;
      gap: 8px;
      margin-top: auto;
    }
    .hospital-card .card-body .actions .btn {
      flex: 1;
      padding: 10px 0;
      border-radius: 10px;
      font-size: 0.82rem;
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-family: inherit;
    }
    .hospital-card .card-body .actions .btn:active { transform: scale(0.97); }
    .hospital-card .card-body .actions .btn-primary {
      background: linear-gradient(135deg, #49B0C1);
      color: #fff;
    }
    .hospital-card .card-body .actions .btn-primary:hover { opacity: 0.92; }
    .hospital-card .card-body .actions .btn-secondary {
      background: #f0fdf4;
      color: #166534;
      border: 1px solid #bbf7d0;
    }
    .hospital-card .card-body .actions .btn-secondary:hover {
      background: #dcfce7;
    }
    .hospital-card .card-body .actions .btn-secondary svg { fill: #25D366; }

    /* ===== LOAD MORE ===== */
    .load-more-wrap {
      text-align: center;
      margin-top: 40px;
    }
    .load-more-btn {
      padding: 14px 52px;
      background: #fff;
      color: #0f5a96;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      font-size: 0.95rem;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.25s;
    }
    .load-more-btn:hover {
      border-color: #0f5a96;
      background: rgba(15, 90, 150, 0.04);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(15,90,150,0.08);
    }
    .load-more-btn:active { transform: translateY(0); }
    .load-more-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    /* ===== FOOTER ===== */
    .site-footer {
      background: #0b2b4a;
      color: #94a3b8;
      text-align: center;
      padding: 40px 20px;
      font-size: 0.85rem;
    }
    .site-footer a { color: #7dd3fc; }
    .site-footer a:hover { text-decoration: underline; }
    .site-footer .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 8px;
      flex-wrap: wrap;
    }

    /* ===== SKELETON LOADING ===== */
    .skeleton {
      background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
      border-radius: 8px;
    }
    @keyframes shimmer {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    .skeleton-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    .skeleton-card .sk-img { height: 200px; width: 100%; }
    .skeleton-card .sk-body { padding: 20px; }
    .skeleton-card .sk-body .sk-line {
      height: 14px;
      margin-bottom: 10px;
      width: 70%;
    }
    .skeleton-card .sk-body .sk-line.short { width: 45%; }
    .skeleton-card .sk-body .sk-line.long { width: 90%; }
    .skeleton-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 24px;
      margin-bottom: 24px;
    }
    @media (max-width: 480px) {
      .skeleton-grid { grid-template-columns: 1fr; }
    }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #f1f5f9; }
    ::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: #64748b; }