/* ============================================================
   SERVICE AIRSOFT PAGE
   ============================================================ */

/* Hero banner */
.svc-hero {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.svc-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section titles */
.svc-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
}
.svc-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 28px 0 12px;
}

/* Two-column grid */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Service info bullets */
.svc-features {
  list-style: disc;
  margin: 0 0 24px 18px;
  padding: 0;
}
.svc-features li {
  font-size: 14px;
  color: var(--main-color);
  line-height: 1.6;
  margin-bottom: 8px;
}
.svc-features li strong {
  color: #0f172a;
}

/* ── Price Tables ── */
.svc-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 14px;
}
.svc-price-table thead th {
  text-align: left;
  font-weight: 700;
  color: #0f172a;
  padding: 8px 12px;
  border-bottom: 2px solid var(--second-color);
  white-space: nowrap;
}
.svc-price-table tbody td {
  padding: 8px 12px;
  color: var(--main-color);
  border-bottom: 1px solid var(--light-100);
  line-height: 1.5;
}
.svc-price-table tbody td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  color: #0f172a;
}
.svc-price-table tbody tr:last-child td {
  border-bottom: none;
}

/* Separate table sections */
.svc-price-table--hours,
.svc-price-table--extra,
.svc-price-table--fixed {
  margin-top: 8px;
  border-top: 1px solid var(--light-100);
  padding-top: 4px;
}

/* Footnotes */
.svc-footnotes {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--light-100);
}
.svc-footnotes p {
  font-size: 12px;
  color: var(--dark-300);
  line-height: 1.6;
  margin-bottom: 4px;
}
.svc-tva-note {
  margin-top: 12px;
  font-size: 14px !important;
  color: #0f172a !important;
}

/* ── Service Steps (accordion) ── */
.svc-step-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-step {
  background: #fff;
  border: 1px solid var(--light-100);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.svc-step[open] {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.svc-step summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background-color 0.15s ease;
}
.svc-step summary:hover {
  background: var(--light-100);
}
.svc-step summary::-webkit-details-marker {
  display: none;
}
.svc-step summary::after {
  content: '›';
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-300);
  transition: transform 0.2s ease;
}
.svc-step[open] summary::after {
  transform: rotate(90deg);
}

.svc-step p {
  padding: 0 18px 16px;
  margin: 0;
  font-size: 14px;
  color: var(--main-color);
  line-height: 1.6;
}

/* ── Operations Grid ── */
.svc-operations {
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--light-100);
}

.svc-ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.svc-op-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--light-100);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-op-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.svc-op-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.svc-op-label {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white-color);
  background: #334155;
  text-align: center;
}
