/* ====== GLOBAL RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Vesper Libre", serif;
  background: radial-gradient(circle at top, rgba(3, 159, 200, 0.08), transparent 55%),
              linear-gradient(120deg, #f8fbff 0%, #ffffff 55%, #f0f7fb 100%);
  color: #000;
  overflow-x: hidden;
}

/* ====== HEADER ====== */
.navbar {
  width: 100%;
  height: 100px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #039fc8;
}

.logo-text p {
  font-size: 12px;
  color: #b9b9b9;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #71b247;
}

.nav-links a:hover {
  color: #039fc8;
}

.auth-buttons {
  display: flex;
  gap: 10px;
}

.auth-buttons button {
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  width: 100px;
  height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signup {
  background: #71b247;
  color: #fff;
}

.signup:hover {
  background: #5fa53b;
  transform: scale(1.05);
}

.signin {
  background: #fff;
  border: 1px solid #71b247;
  color: #71b247;
}

.signin:hover {
  background: #71b247;
  color: #fff;
  transform: scale(1.05);
}

/* ====== SERVICES SECTION ====== */
.services-section {
  padding: 60px 5%;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.section-subtitle {
  font-size: 15px;
  color: #4b5b68;
  margin-top: 6px;
  font-family: "Inter", sans-serif;
}

.urgent-banner {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 2px dashed rgba(3, 159, 200, 0.45);
  background: linear-gradient(90deg, rgba(3, 159, 200, 0.08), rgba(113, 178, 71, 0.08));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 26px rgba(3, 159, 200, 0.08);
}

.urgent-copy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.urgent-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(3, 159, 200, 0.18);
  color: #039fc8;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  flex: 0 0 auto;
}

.urgent-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0b1f2a;
  font-family: "Inter", sans-serif;
}

.urgent-subtitle {
  font-size: 13px;
  color: #3a4a58;
  font-family: "Inter", sans-serif;
}

.urgent-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.urgent-btn {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(3, 159, 200, 0.35);
  background: #fff;
  color: #039fc8;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: 0 10px 20px rgba(3, 159, 200, 0.1);
}

.urgent-btn.is-active {
  background: #039fc8;
  color: #fff;
  border-color: #039fc8;
  box-shadow: 0 14px 28px rgba(3, 159, 200, 0.22);
}

.urgent-btn.urgent-yes {
  background: rgba(113, 178, 71, 0.12);
  color: #4d8b2f;
  border-color: rgba(113, 178, 71, 0.45);
}

.urgent-btn.urgent-yes.is-active {
  background: #71b247;
  color: #fff;
  border-color: #71b247;
}

.urgent-btn.is-ghost {
  background: #fff;
}

hr {
  border: none;
  border-top: 2px solid #039fc8;
  margin: 15px 0 40px;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e4eff7;
  box-shadow: 0 12px 30px rgba(3, 159, 200, 0.08);
  margin-top: 12px;
  margin-bottom: 18px;
}

.search-field {
  position: relative;
}

.search-field input {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border-radius: 999px;
  border: 1px solid #d4e5f0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #f8fcff;
}

.search-field input:focus {
  border-color: #039fc8;
  box-shadow: 0 0 0 3px rgba(3, 159, 200, 0.15);
}


.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  border-radius: 999px;
  border: 1px solid #d4e5f0;
  padding: 8px 16px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0b1f2a;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill.active,
.filter-pill:hover {
  border-color: #039fc8;
  color: #039fc8;
  background: #eef9fd;
}

.filter-apply {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 18px;
  background: #039fc8;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 10px 20px rgba(3, 159, 200, 0.16);
}

.filter-apply:hover {
  background: #0289ad;
  transform: translateY(-1px);
}

.results-count {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #5b6b78;
  font-size: 13px;
  justify-self: end;
}

/* ====== SERVICES LIST ====== */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.service-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
  padding: 16px;
  gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(3, 159, 200, 0.08);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 15px;
}

.service-info {
  flex: 1;
}

.title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.service-info h2 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}

.service-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 10px;
}

.rec-badge {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(113, 178, 71, 0.15);
  color: #4d8b2f;
}

.rec-note {
  font-size: 13px;
  color: #6b7a88;
  font-family: "Inter", sans-serif;
}

.service-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-actions button,
.service-actions a {
  width: 150px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-book {
  background: #039fc8;
  color: #fff;
  box-shadow: 0 12px 22px rgba(3, 159, 200, 0.2);
}

.btn-book:hover {
  background: #0289ad;
  transform: translateY(-2px);
}

.btn-cart {
  background: #ffffff;
  color: #039fc8;
  border-color: #039fc8;
}

.btn-cart:hover {
  background: rgba(3, 159, 200, 0.08);
  transform: translateY(-2px);
}

.service-title-link {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-title-link:hover {
  color: #5a2d82;
}

/* ====== FADE-IN ANIMATION ====== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.9s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-card img {
    width: 100%;
    height: 200px;
  }

  .service-actions {
    flex-direction: row;
    justify-content: center;
  }

  .auth-buttons {
    display: none;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-header h1 {
    font-size: 24px;
  }

  .section-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .section-subtitle {
    grid-column: 1 / -1;
  }

  .header-actions {
    justify-self: end;
  }

  .service-actions button,
  .service-actions a {
    width: 130px;
    height: 40px;
  }

  .urgent-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 18px;
  }

  .urgent-actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .urgent-copy {
    gap: 10px;
  }

  .urgent-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
  }

  .urgent-title {
    font-size: 15px;
  }

  .urgent-subtitle {
    font-size: 12.5px;
    line-height: 1.5;
  }

  .urgent-btn {
    flex: 1 1 0;
    text-align: center;
  }

  .services-list {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .filter-bar {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .results-count {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .service-info p {
    font-size: 14px;
  }

  .filter-pills {
    width: 100%;
    justify-content: flex-start;
  }
}
.service-image.placeholder{
  width:200px;
  height:140px;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(3,159,200,.15), rgba(3,159,200,.05));
  color:#039fc8;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  text-transform:uppercase;
}

@media (max-width: 992px) {
  .service-image.placeholder{
    width:100%;
    height:200px;
  }
}
