/* css for service details page */

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #fbbf16;
  --theme2: #fbbf16;
  --header: #121315;
  --text: #666666;
  --border: #D4DCED;
  --border-2: #D4DCED;
  --bg: #1E2023;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-header {
  background: var(--header);
  color: var(--white);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
}

.service-card-header i {
  color: var(--theme);
  margin-right: 8px;
}

/* For the active/popular service */
.service-card.active {
  border-color: var(--theme);
  border-width: 2px;
}

.service-card.active .service-card-header {
  background: var(--theme);
  color: var(--black);
}

.service-card.active .service-card-header i {
  color: var(--black);
}

.badge-status {
  font-size: 11px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.service-card.active .badge-status {
  background: rgba(0, 0, 0, 0.1);
  color: var(--black);
}

.service-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-spec-table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.service-spec-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.service-spec-table tr:last-child td {
  border-bottom: none;
}

.spec-label {
  color: var(--text);
  font-weight: 500;
  text-align: left;
}

.spec-value {
  color: var(--header);
  font-weight: 600;
  text-align: right;
}

.service-card-desc {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.btn-enquire {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--theme);
  color: var(--black);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-enquire:hover {
  background: var(--header);
  color: var(--white);
}

/* Technical Details Section styling */
.technical-badge {
  font-size: 11px;
  background-color: rgba(251, 191, 22, 0.15);
  color: var(--theme);
  letter-spacing: 1px;
}

.theme-accent {
  color: var(--theme);
}

.technical-details-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.technical-details-table thead th {
  background-color: var(--header);
  color: var(--white);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 15px;
  border: none;
}

.technical-details-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--header);
}

.technical-details-table tbody tr:nth-child(even) {
  background-color: #fcfdfe;
}

.technical-details-table tbody tr:last-child td {
  border-bottom: none;
}

.price-call-action {
  color: var(--theme);
  font-weight: 700;
}

.price-phone {
  color: var(--theme);
  font-weight: 700;
  text-decoration: none;
}

.price-phone:hover {
  text-decoration: underline;
}

.narrative-description p {
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 15px;
}