/* ═══════════════════════════════════════════════════════════════ */
/* SERVICES PAGE TEMPLATE STYLES                                   */
/* ═══════════════════════════════════════════════════════════════ */

/* ═══════════════ BREADCRUMB SECTION ═══════════════ */
.breadcrumb-section {
  padding: 40px 20px;
  background: var(--color-white);
}

.breadcrumb-section .container {
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.breadcrumb-link {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--color-orange);
}

.breadcrumb-separator {
  color: var(--color-gray-blue);
  font-weight: 400;
}

.breadcrumb-current {
  color: var(--color-gray-blue);
  font-weight: 400;
}

/* ═══════════════ SERVICES CONTENT SECTION ═══════════════ */
.services-content {
  padding: 0 20px 20px;
  background: var(--color-white);
}

.services-content .container {
  margin: 0 auto;
}

/* ═══════════════ SERVICES GRID ═══════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0;
}

/* ═══════════════ SERVICE CARD ═══════════════ */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Service Image */
.service-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--color-light-gray);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* Service Body */
.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Service Title */
.service-body h3.service-title {
  font-size: 18px;
  color: var(--color-dark);
  margin: 0 0 16px 0;
  line-height: 1.4;
  font: var(--textH1Font);
  letter-spacing: -0.3px;
}

.service-body h3.service-title--secondary {
  font-family: var(--font-body);
  line-height: 34px;
  font-size: 30px;
}

.service-card .service-body h3.service-title--secondary {
  min-height: 62px;
}

/* Service Divider */
.service-divider {
  height: 1px;
  background: #d0d2d4;
  margin-bottom: 16px;
}

/* Service Price */
.service-price {
  font-size: 16px;
  color: var(--color-dark);
  margin: 0 0 20px 0;
  /* font-family: 'Wix Madefor Text', sans-serif; */
}

/* Book Now Button */
.book-now-btn {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.book-now-btn:hover {
  background: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
}

.book-now-btn:active {
  transform: translateY(0);
}

/* ═══════════════ RESPONSIVE DESIGN ═══════════════ */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-content {
    padding: 60px 20px;
  }

  .service-image {
    height: 220px;
  }

  .service-body {
    padding: 20px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-price {
    font-size: 18px;
  }

  .breadcrumb {
    font-size: 14px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-content {
    padding: 40px 16px;
  }

  .breadcrumb-section {
    padding: 24px 16px;
  }

  .service-image {
    height: 200px;
  }

  .service-body {
    padding: 16px;
  }

  .service-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .service-price {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .book-now-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .breadcrumb {
    font-size: 13px;
    gap: 8px;
  }
}

/* ═══════════════ CSS VARIABLES FALLBACK ═══════════════ */
:root {
  --color-white: #ffffff;
  --color-dark: #1b2030;
  --color-gray-blue: #6b7280;
  --color-light-gray: #e5e7eb;
  --color-orange: #ff5e00;
  --color-orange-hover: #e55000;
}
