
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #f5f7fb;
      color: #111827;
      padding: 20px;
    }

    .container {
      max-width: 1150px;
      margin: auto;
    }

    .card {
      background: white;
      border-radius: 26px;
      border: 1px solid #e8ecf3;
      margin-bottom: 18px;
      overflow: hidden;
    }



    /* contact */

    .contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info {
  text-align: center;
}

.location-name {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

.address {
  margin-top: 14px;
  color: #64748b;
  font-size: 20px;
  line-height: 1.8;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-btn {
  background: white;
  border: 2px solid #dbe4f2;
  border-radius: 20px;

  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 12px;

  text-decoration: none;

  transition: 0.2s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  border-color: #2563eb;
}

.contact-btn img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.contact-btn span {
  color: #2563eb;
  font-size: 18px;
  font-weight: 700;
}

  /* Footer */

  .footer-wrap {

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 18px;

  margin-top: 28px;
  padding: 10px 6px 36px;

}

.footer-brand {

  display: flex;
  align-items: center;
  gap: 14px;

}

.hosted-text {

  color: #64748b;
  font-size: 16px;
  font-weight: 500;

}

.brand-box {

  display: flex;
  align-items: center;
  gap: 10px;

  background: white;

  border: 1px solid #dbe4f2;

  border-radius: 16px;

  padding: 10px 16px;

}

.brand-box img {

  width: 34px;
  height: 34px;

  object-fit: contain;

}

.brand-box span {

  color: #2563eb;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;

}

.updated-chip {

  display: flex;
  align-items: center;
  gap: 10px;

  background: #f8faff;

  border: 1px solid #e2e8f0;

  border-radius: 14px;

  padding: 10px 16px;

}

.updated-chip img {

  width: 18px;
  height: 18px;

  object-fit: contain;

}

.updated-chip span {

  color: #64748b;
  font-size: 15px;
  font-weight: 600;

}
    /* HERO */

    .hero {
      padding-bottom: 30px;
    }

    .badge-strip {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      padding: 22px;
    }

    .top-badge {
      border: 1px solid #e3e9f5;
      background: white;
      padding: 10px 16px;
      border-radius: 14px;
      font-size: 14px;
      font-weight: 600;
      color: #334155;
    }

    .banner img {
      width: 100%;
      display: block;
    }

    .profile-section {
      text-align: center;
      margin-top: -20px;
      padding: 0 20px;
    }

    .profile-logo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid #2563eb;
      background: white;
    }

    .library-name {
      margin-top: 18px;
      font-size: 56px;
      font-weight: 800;
      color: #0f172a;
    }

    .phone {
      margin-top: 10px;
      font-size: 28px;
      color: #475569;
    }

    .category {
      display: inline-block;
      margin-top: 16px;
      background: #eef4ff;
      color: #2563eb;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
    }

    .meta {
      margin-top: 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      color: #475569;
      font-size: 24px;
    }

    .open {
      color: #2563eb;
      font-weight: 600;
    }

    .whatsapp-btn {
      margin-top: 30px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: white;
      padding: 22px 38px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 26px;
      font-weight: 600;
    }

    /* COMMON */

    .section {
      padding: 34px;
    }

    .section-title {
      font-size: 42px;
      font-weight: 800;
      margin-bottom: 28px;
      color: #0f172a;
    }

    /* FACILITIES */

    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 24px;
    }

    .facility {
      text-align: center;
    }

    .facility-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: #f4f7ff;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;
  margin-bottom: 12px;
}

.facility-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

    .facility-name {
      font-size: 18px;
      font-weight: 600;
      color: #334155;
    }

    /* OFFER */

    .offer-note {
      color: #64748b;
      margin-top: -12px;
      margin-bottom: 24px;
      font-size: 18px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 22px;
    }

    .price-card {
      background: #f8faff;
      border-radius: 24px;
      padding: 26px;
      text-align: center;
      position: relative;
      border: 2px solid transparent;
    }

    .popular {
      border-color: #2563eb;
      background: white;
    }

    .popular-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: #2563eb;
      color: white;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
    }

    .plan-name {
      font-size: 22px;
      font-weight: 700;
      color: #0f172a;
    }

    .plan-tag {
      margin-top: 14px;
      display: inline-block;
      background: #eef4ff;
      color: #2563eb;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
    }

    .price {
      margin-top: 20px;
      font-size: 48px;
      font-weight: 800;
    }

    /* Shift  */
    .shift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.shift-card {
  background: #f8faff;
  border: 1px solid #e6edf8;
  border-radius: 22px;
  padding: 22px;
  transition: 0.2s ease;
}

.shift-card:hover {
  transform: translateY(-2px);
}

.shift-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.shift-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  border: 1px solid #dbe6f7;
}

.shift-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.shift-title {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
}

.shift-time {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.shift-desc {
  margin-top: 18px;
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
}

    /* LOCATION */

    .location-wrap {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 26px;
      align-items: center;
    }

    .map img {
      width: 100%;
      border-radius: 20px;
    }

    .location-name {
      font-size: 36px;
      font-weight: 800;
    }

    .address {
      margin-top: 14px;
      color: #64748b;
      line-height: 1.8;
      font-size: 20px;
    }

    .direction-btn {
      margin-top: 24px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 2px solid #dbe4f2;
      padding: 16px 24px;
      border-radius: 16px;
      text-decoration: none;
      color: #0f172a;
      font-weight: 700;
      font-size: 18px;
    }

    /* ACTIONS */

    .actions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 0 34px 34px;
    }

    .action-btn {
      border: 2px solid #dbe4f2;
      border-radius: 18px;
      padding: 20px;
      text-align: center;
      text-decoration: none;
      color: #2563eb;
      font-size: 22px;
      font-weight: 700;
      background: white;
    }

    .footer {
      text-align: center;
      color: #64748b;
      padding-bottom: 30px;
      font-size: 18px;
    }

    .footer span {
      color: #2563eb;
      font-weight: 700;
    }

    /* MObile */

    @media (max-width: 768px) {

  body {
    padding: 8px;
  }

  .container {
    width: 100%;
  }

  .card {
    border-radius: 22px;
    margin-bottom: 14px;
  }

  /* HERO */

  .hero {
    padding-bottom: 22px;
  }

  .badge-strip {
    gap: 8px;
    padding: 14px;
  }

  .top-badge {
    font-size: 11px;
    padding: 7px 12px;
    border-radius: 10px;
  }

  .banner img {
    border-radius: 0;
  }

  .profile-section {
    margin-top: -14px;
    padding: 0 16px;
  }

  .profile-logo {
    width: 88px;
    height: 88px;
    border-width: 4px;
  }

  .library-name {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 14px;
  }

  .phone {
    font-size: 17px;
    margin-top: 8px;
  }

  .category {
    margin-top: 12px;
    padding: 8px 14px;
    font-size: 13px;
  }

  .meta {
    margin-top: 16px;
    gap: 8px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;

    padding: 16px;
    margin-top: 24px;

    font-size: 16px;
    border-radius: 18px;
  }

  /* COMMON */

  .section {
    padding: 20px 16px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  /* FACILITIES */

  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .facility-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    margin-bottom: 8px;
  }

  .facility-icon img {
    width: 24px;
    height: 24px;
  }

  .facility-name {
    font-size: 13px;
    line-height: 1.4;
  }

  /* OFFER */

  .offer-note {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .price-card {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .plan-name {
    font-size: 16px;
    line-height: 1.4;
  }

  .plan-tag {
    margin-top: 10px;
    font-size: 11px;
    padding: 6px 10px;
  }

  .price {
    font-size: 30px;
    margin-top: 14px;
  }

  .popular-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  /* SHIFTS */

  .shift-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shift-card {
    padding: 18px;
    border-radius: 18px;
  }

  .shift-header {
    gap: 12px;
  }

  .shift-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    flex-shrink: 0;
  }

  .shift-icon img {
    width: 24px;
    height: 24px;
  }

  .shift-title {
    font-size: 17px;
  }

  .shift-time {
    font-size: 13px;
    line-height: 1.5;
  }

  .shift-desc {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.6;
  }

  /* CONTACT */

  .contact-wrap {
    gap: 22px;
  }

  .location-name {
    font-size: 24px;
  }

  .address {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 10px;
  }

  .contact-actions {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .contact-btn {
    padding: 16px 10px;
    border-radius: 16px;
    gap: 10px;
  }

  .contact-btn img {
    width: 22px;
    height: 22px;
  }

  .contact-btn span {
    font-size: 14px;
  }

  /* FOOTER */

  .footer-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    gap: 14px;

    padding: 4px 0 26px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 10px;
  }

  .hosted-text {
    font-size: 13px;
  }

  .brand-box {
    padding: 10px 14px;
    border-radius: 14px;
  }

  .brand-box img {
    width: 28px;
    height: 28px;
  }

  .brand-box span {
    font-size: 15px;
  }

  .updated-chip {
    padding: 8px 14px;
    border-radius: 12px;
  }

  .updated-chip img {
    width: 14px;
    height: 14px;
  }

  .updated-chip span {
    font-size: 12px;
  }

}

 