
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
/* HERO */
.hero-bg {
  position: relative;
  height: 90vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* CONTAINER */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

/* CONTENT */
.hero-content {
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: #fff;
}

/* TAG */
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* TITLE */
.hero-content h1 {
  font-size: 48px;
  margin: 15px 0;
  font-weight: 700;
}

/* TEXT */
.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* BUTTON */
.hero-buttons {
  display: flex;
  justify-content: center;
}

.btn-main {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-main:hover {
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 576px) {

  .hero-bg {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .btn-main {
    width: 100%;
    text-align: center;
  }
}


    body {
      font-family: 'Inter', sans-serif;
      background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
      color: #2d2f36;
      scroll-behavior: smooth;
    }

    /* primary color: #ff6b6b */
    :root {
      --primary: #ff6b6b;
      --primary-dark: #e55a5a;
      --primary-light: #ff8a8a;
      --primary-soft: #fff0f0;
      --accent-teal: #4ecdc4;
      --gray-dark: #2c3e50;
    }

    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #ffe0e0;
      border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 10px;
    }

   .services-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 2rem 3rem;
}

    /* animated header */
    .clinic-header {
      text-align: center;
      margin-bottom: 2.5rem;
      animation: fadeSlideDown 0.7s ease-out;
      position: relative;
    }
    .badge-clinic {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 0.3rem 1.4rem;
      border-radius: 60px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      margin-bottom: 1rem;
      box-shadow: 0 6px 14px rgba(255,107,107,0.3);
    }
    h1 {
      font-size: 2.9rem;
      font-weight: 800;
      background: linear-gradient(135deg, #ff6b6b, #e55a5a, #ff8e8e);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 0.3rem;
    }
    .tagline {
      font-size: 1.1rem;
      color: #5a4a4a;
      font-weight: 500;
      border-bottom: 2px solid var(--primary);
      display: inline-block;
      padding-bottom: 0.3rem;
    }
    .location-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      margin: 1.5rem 0 0;
    }
    .location-strip span {
      background: white;
      padding: 0.4rem 1.2rem;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 500;
      color: #ff6b6b;
      border: 1px solid rgba(255,107,107,0.3);
    }
    .location-strip i {
      color: var(--primary);
    }

    /* image row (hero alternative) */
    .img-showcase {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.2rem;
      margin: 2rem 0 1rem;
      border-radius: 2rem;
    }
    .img-card {
      flex: 1;
      min-width: 150px;
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(255,107,107,0.15);
      transition: all 0.3s ease;
    }
    .img-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      transition: transform 0.4s ease;
      display: block;
    }
    .img-card:hover img {
      transform: scale(1.03);
    }
    .img-card p {
      text-align: center;
      padding: 0.6rem;
      font-weight: 600;
      background: white;
      color: var(--primary-dark);
      font-size: 0.85rem;
    }

    /* section cards */
    .section-card {
      background: white;
      border-radius: 2rem;
      padding: 2rem 2rem;
      margin-bottom: 2.2rem;
      box-shadow: 0 20px 35px -12px rgba(255,107,107,0.12);
      transition: all 0.3s ease;
      border: 1px solid rgba(255,107,107,0.2);
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
    }
    .section-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 28px 36px -12px rgba(255,107,107,0.25);
      border-color: rgba(255,107,107,0.4);
    }
    .section-title {
      font-size: 1.9rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
      color: #ff6b6b;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 70px;
      height: 4px;
      background: var(--primary);
      border-radius: 4px;
    }
    .grid-services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.8rem;
      margin-top: 1rem;
    }
    .service-item {
      background: #fffbfb;
      border-radius: 1.5rem;
      padding: 1.5rem;
      transition: all 0.25s;
      border-left: 5px solid var(--primary);
      box-shadow: 0 5px 12px rgba(0,0,0,0.03);
    }
    .service-item i {
      font-size: 2.3rem;
      color: var(--primary);
      margin-bottom: 0.8rem;
    }
    .service-item h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      color: #1f2a3a;
    }
    .reason-list {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      margin-top: 1rem;
    }
    .reason-card {
      background: #fff5f5;
      border-radius: 1.2rem;
      padding: 1.2rem;
      flex: 1 1 200px;
      transition: 0.2s;
      border-bottom: 3px solid var(--primary-light);
    }
    .reason-card i {
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 0.6rem;
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
    }
    .why-point {
      background: white;
      border-radius: 1.2rem;
      padding: 1.2rem;
      text-align: center;
      box-shadow: 0 8px 18px rgba(255,107,107,0.08);
      border: 1px solid #ffe0e0;
    }
    .why-point i {
      font-size: 2rem;
      background: var(--primary-soft);
      padding: 12px;
      border-radius: 50%;
      color: var(--primary);
      margin-bottom: 0.8rem;
    }
    .btn-cta {
      display: inline-block;
      background: var(--primary);
      color: white;
      font-weight: 700;
      padding: 0.9rem 2rem;
      border-radius: 60px;
      text-decoration: none;
      transition: 0.3s;
      box-shadow: 0 8px 18px rgba(255,107,107,0.4);
      border: none;
      font-size: 1rem;
      cursor: pointer;
    }
    .btn-cta:hover {
      background: var(--primary-dark);
      transform: scale(1.02);
      box-shadow: 0 12px 22px rgba(255,107,107,0.5);
    }
    .flex-center {
      text-align: center;
      margin-top: 1.8rem;
    }
    footer {
      text-align: center;
      padding: 2rem 0 0.8rem;
      font-size: 0.85rem;
      color: #6b5a5a;
      border-top: 1px solid rgba(255,107,107,0.2);
      margin-top: 1rem;
    }
    @keyframes fadeSlideDown {
      0% { opacity: 0; transform: translateY(-35px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .section-card:nth-child(1) { animation-delay: 0.05s; }
    .section-card:nth-child(2) { animation-delay: 0.1s; }
    .section-card:nth-child(3) { animation-delay: 0.15s; }
    .section-card:nth-child(4) { animation-delay: 0.2s; }
    .section-card:nth-child(5) { animation-delay: 0.25s; }
    .section-card:nth-child(6) { animation-delay: 0.3s; }
    @media (max-width: 700px) {
      .container { padding: 1rem; }
      h1 { font-size: 2rem; }
      .section-title { font-size: 1.6rem; }
      .img-card img { height: 120px; }
    }
    .highlight-text {
      background: #fff2f2;
      padding: 1rem 1.5rem;
      border-radius: 1.5rem;
      margin: 1rem 0;
      border-left: 5px solid var(--primary);
    }
    .inline-img-icon {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }