﻿:root {
  --brand-deep: #00648e;
  --brand-amber: #eb911c;
  --brand-sky: #00aaec;
  --brand-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  overflow-x: clip;
}

html[lang="ar"] body {
  font-family: 'Tajawal', sans-serif;
}

.emph {
  font-weight: 800;
  color: var(--brand-deep);
}

.emph-amber {
  font-weight: 800;
  color: #ffd67a;
}

.emph-amber-dark {
  font-weight: 800;
  color: var(--brand-amber);
}

.emph-white {
  font-weight: 800;
  color: #ffffff;
}

.card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.92));
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 100, 142, 0.12);
  box-shadow: 0 14px 34px rgba(2, 72, 109, 0.09);
}

.card h3 {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.card p {
  margin-top: 0.4rem;
  color: #475569;
  line-height: 1.65;
}

.service-card {
  padding: 0;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 100, 142, 0.12);
}

.service-card h3,
.service-card p {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.service-card h3 {
  margin-top: 1rem;
}

.service-card p {
  margin-top: 0.45rem;
  padding-bottom: 1.25rem;
}

.icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.8rem;
  background: linear-gradient(160deg, rgba(0,170,236,0.2), rgba(235,145,28,0.2));
  color: var(--brand-deep);
}

.separator-wave svg {
  display: block;
  width: 100%;
  height: 68px;
}

.price-card {
  background: linear-gradient(135deg, #ffffff, #f5fbff);
  border: 1px solid rgba(0, 100, 142, 0.12);
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(2, 72, 109, 0.08);
  overflow: hidden;
}

.price-head {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0.25rem 0 0.9rem;
}

.price-head i {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.7rem;
  background: linear-gradient(160deg, rgba(0, 170, 236, 0.18), rgba(235, 145, 28, 0.2));
  color: var(--brand-deep);
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.price-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.price-table th {
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #475569;
  background: #eef7fd;
  padding: 0.65rem 0.6rem;
}

.price-table td {
  padding: 0.62rem 0.6rem;
  border-bottom: 1px solid #e8eef3;
  font-size: 0.92rem;
  color: #1e293b;
  white-space: nowrap;
}

.price-table td:first-child {
  white-space: normal;
  min-width: 160px;
  max-width: 220px;
  overflow-wrap: anywhere;
}

.price-table tbody tr:hover td {
  background: #f8fcff;
}

html[dir="rtl"] .mr-2 {
  margin-right: 0;
  margin-left: .5rem;
}

html[dir="rtl"] .ml-2 {
  margin-left: 0;
  margin-right: .5rem;
}

html[dir="rtl"] .price-table th,
html[dir="rtl"] .price-table td {
  text-align: right;
}

@media (max-width: 640px) {
  .price-card {
    padding: 0.8rem;
  }

  .price-table th,
  .price-table td {
    font-size: 0.82rem;
    padding: 0.55rem 0.45rem;
  }

  .price-table td:first-child {
    min-width: 130px;
    max-width: 170px;
  }
}
