:root {
  --primary: #0d8a84;
  --primary-dark: #0b5f5c;
  --secondary: #ffb703;
  --accent: #e63946;
  --text: #17324d;
  --muted: #6b7280;
  --bg: #f4fbfc;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(13, 138, 132, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.rtl-page {
  direction: rtl;
  text-align: right;
}

.rtl-page .nav-links {
  direction: rtl;
}

.rtl-page .contact-list {
  padding-right: 1rem;
  padding-left: 0;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1e6f8a 100%);
  color: var(--white);
  padding-bottom: 4rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 2rem;
  padding: 3rem 0 1rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-heading .eyebrow {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(13, 138, 132, 0.15);
}

h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-text {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  text-decoration: none;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
}

.pill.whatsapp {
  background: #25d366;
  color: white;
}

.phone-highlight {
  display: inline-block;
  background: var(--secondary);
  color: #10212d;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  margin-top: 0.7rem;
  box-shadow: 0 10px 24px rgba(255, 183, 3, 0.2);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--secondary);
  color: #10212d;
  box-shadow: 0 10px 25px rgba(255, 183, 3, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-photo-card {
  background: rgba(255, 255, 255, 0.16);
  padding: 0.7rem;
  border-radius: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.hero-photo-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 0.9rem;
  display: block;
}

.hero-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 1.3rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
}

.hero-card ul {
  padding-left: 1.1rem;
}

.zones-highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbfc 100%);
  color: var(--text);
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.zones-map {
  font-size: 2rem;
  background: var(--secondary);
  color: #10212d;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.section {
  padding: 4rem 0;
}

.alt-section {
  background: linear-gradient(135deg, #f1fbfb 0%, #ebf8f8 100%);
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.card {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(13, 138, 132, 0.2);
}

.service-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  margin: 1.2rem 0 1.4rem;
  align-items: center;
}

.service-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.service-hero-content {
  background: linear-gradient(135deg, #fdfefe 0%, #eef9fa 100%);
  padding: 1.3rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.platform-card {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 108, 107, 0.08);
  margin-top: 1rem;
}

.image-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.image-showcase img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 108, 107, 0.12);
}

.showcase-content {
  background: var(--white);
  padding: 1.4rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 108, 107, 0.08);
}

.equipments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.equipment-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.equipment-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.equipment-card h3 {
  padding: 1rem;
  text-align: center;
  color: var(--primary-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-card {
  background: linear-gradient(135deg, #ffffff 0%, #f1fbfc 100%);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
}

.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.zones-list span {
  background: var(--white);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 108, 107, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-list {
  padding-left: 1rem;
  color: var(--muted);
}

.contact-form {
  background: var(--white);
  padding: 1.3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d6e3e3;
  border-radius: 0.7rem;
  padding: 0.85rem 0.95rem;
  font: inherit;
}

.form-message {
  color: var(--primary);
  font-weight: 700;
}

.footer {
  background: #0f172a;
  color: #dbeafe;
  padding: 1.2rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .hero-content,
  .contact-grid,
  .cards,
  .equipments-grid,
  .recruit-grid,
  .image-showcase,
  .service-hero,
  .equipment-gallery,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 0.6rem;
  }
}
