:root {
  --brand-dark: #114853;
  --brand-main: #1ea6a6;
  --brand-accent: #4ea19d;
  --brand-soft: #dff3f1;
  --brand-gold: #dfb249;
  --brand-gold-soft: #f6ead0;
  --text: #16333a;
  --muted: #648087;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: rgba(17, 72, 83, 0.1);
  --shadow: 0 24px 60px rgba(17, 72, 83, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(30, 166, 166, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(223, 178, 73, 0.14), transparent 22%),
    linear-gradient(180deg, #f8fcfb 0%, #f4f8f7 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 252, 251, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 72, 83, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
  transform: translateY(-4px);
}

.brand-copy strong {
  display: block;
  font-size: 1.12rem;
  color: var(--brand-dark);
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--brand-dark);
  font-weight: 700;
}

.nav-links a:hover {
  background: rgba(78, 161, 157, 0.12);
  color: var(--brand-accent);
}

.nav-links .cta {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-main));
  color: #fff;
  box-shadow: 0 14px 30px rgba(30, 166, 166, 0.2);
}

.hero {
  padding: 34px 0 18px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 24px;
  align-items: stretch;
}

.hero-card,
.hero-visual,
.section-card,
.contact-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card {
  padding: 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 420px;
  height: 420px;
  background: url("../img/logo.webp") no-repeat center/contain;
  opacity: 0.045;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: -1;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gold);
  box-shadow: 0 0 0 5px rgba(223, 178, 73, 0.16);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 166, 166, 0.08);
  border: 1px solid rgba(30, 166, 166, 0.16);
  box-shadow: 0 10px 24px rgba(17, 72, 83, 0.05);
  color: var(--brand-dark);
  width: fit-content;
}

.trust-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-main);
  box-shadow: 0 0 0 5px rgba(30, 166, 166, 0.12);
  flex: 0 0 auto;
}

.trust-badge strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.2;
}

.trust-badge span {
  display: none;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 22px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.18;
  color: var(--brand-dark);
}

.hero-card p {
  margin-top: 18px;
  max-width: 640px;
  color: var(--muted);
  line-height: 1.95;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 180ms ease;
}

.btn:hover,
.whatsapp-btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-main));
  box-shadow: 0 16px 30px rgba(30, 166, 166, 0.2);
}

.btn-secondary {
  color: var(--brand-dark);
  background: rgba(30, 166, 166, 0.08);
  border: 1px solid rgba(30, 166, 166, 0.12);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-stat {
  padding: 18px;
  border-radius: 20px;
  background: rgba(78, 161, 157, 0.1);
  border: 1px solid rgba(78, 161, 157, 0.16);
}

.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.mini-stat strong {
  color: var(--brand-dark);
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 72, 83, 0.12), rgba(17, 72, 83, 0.6)),
    linear-gradient(270deg, rgba(17, 72, 83, 0.78), rgba(17, 72, 83, 0.14));
}

.floating {
  position: absolute;
  right: 24px;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 14px;
}

.glass {
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(17, 72, 83, 0.2);
}

.glass h2 {
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.glass p {
  color: var(--muted);
  line-height: 1.8;
}

.tamara-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  width: fit-content;
  margin-bottom: 14px;
}

.tamara-badge svg {
  width: 118px;
  height: auto;
  display: block;
}

.payment-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.musaned-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(30, 166, 166, 0.1);
  color: var(--brand-dark);
  font-weight: 800;
  border: 1px solid rgba(30, 166, 166, 0.16);
}

.musaned-badge::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-main);
  box-shadow: 0 0 0 5px rgba(30, 166, 166, 0.14);
}

.section {
  padding: 18px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.three-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.section-card {
  padding: 30px;
}

.section-card h2 {
  font-size: 2rem;
  color: var(--brand-dark);
  margin-bottom: 14px;
}

.section-card p {
  color: var(--muted);
  line-height: 1.95;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(30, 166, 166, 0.12);
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-main);
}

.section-lead {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.95;
}

.feature-list,
.info-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature-item,
.info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(78, 161, 157, 0.08);
  border: 1px solid rgba(78, 161, 157, 0.14);
}

.feature-item strong,
.info-item strong {
  color: var(--brand-dark);
  font-size: 1rem;
}

.feature-item span,
.info-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.payment-card {
  background:
    linear-gradient(145deg, rgba(223, 178, 73, 0.18), rgba(255, 255, 255, 0.98)),
    #fff;
  padding: 24px;
}

.seo-card {
  background:
    linear-gradient(135deg, rgba(30, 166, 166, 0.14), rgba(255, 255, 255, 0.96)),
    #fff;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.keyword-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(78, 161, 157, 0.1);
  border: 1px solid rgba(78, 161, 157, 0.14);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.seo-article {
  min-height: 100%;
}

.seo-article p {
  margin-top: 10px;
}

.seo-checklist {
  background:
    linear-gradient(180deg, rgba(223, 178, 73, 0.12), rgba(255, 255, 255, 0.98)),
    #fff;
}

.fill-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.fill-list li {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(78, 161, 157, 0.08);
  border: 1px solid rgba(78, 161, 157, 0.14);
  color: var(--muted);
  line-height: 1.9;
}

.fill-list strong {
  color: var(--brand-dark);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.payment-method {
  padding: 16px;
  border-radius: 18px;
  background: rgba(78, 161, 157, 0.06);
  border: 1px solid rgba(78, 161, 157, 0.12);
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 18px;
  border-radius: 14px;
  margin-bottom: 0;
}

.payment-logo.tamara {
  background: #111111;
}

.payment-logo.tamara svg {
  width: 126px;
  max-width: 100%;
  height: auto;
  display: block;
}

.payment-logo.sadad {
  background: #ffffff;
  border: 1px solid rgba(17, 72, 83, 0.08);
  padding: 12px 18px;
}

.payment-logo.sadad img {
  width: 116px;
  max-width: 100%;
  height: auto;
  display: block;
}

.license-card {
  background:
    linear-gradient(180deg, rgba(30, 166, 166, 0.06), rgba(255, 255, 255, 0.98)),
    #fff;
  min-height: 100%;
}

.license-card .info-list {
  gap: 14px;
}

.license-card .info-item {
  min-height: 76px;
  border-radius: 16px;
}

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

.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.map-copy {
  padding: 24px 26px 26px;
}

.map-copy h2 {
  font-size: 1.8rem;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.map-copy p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.contact-card {
  padding: 30px;
}

.contact-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-block {
  padding: 22px;
  border-radius: 24px;
  background: rgba(78, 161, 157, 0.07);
  border: 1px solid rgba(78, 161, 157, 0.13);
}

.contact-block h3 {
  font-size: 1.2rem;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.phone-item {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 92px;
}

.phone-entry {
  display: grid;
  gap: 4px;
  text-align: right;
}

.phone-entry strong {
  color: var(--brand-dark);
  font-size: 1rem;
  line-height: 1.3;
}

.phone-number {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
  direction: rtl;
  unicode-bidi: plaintext;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.88rem;
  min-width: 80px;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.18);
}

.contact-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-head h2 {
  font-size: 2rem;
  color: var(--brand-dark);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.faq-shell {
  background:
    linear-gradient(180deg, rgba(30, 166, 166, 0.08), rgba(255, 255, 255, 0.98)),
    #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.faq-item {
  padding: 22px;
  border-radius: 22px;
  background: rgba(78, 161, 157, 0.07);
  border: 1px solid rgba(78, 161, 157, 0.12);
}

.faq-item h3 {
  color: var(--brand-dark);
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.9;
}

.footer {
  padding: 26px 0 42px;
}

.footer-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 26px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 72, 83, 0.08);
}

.footer-shell strong {
  color: var(--brand-dark);
}

.footer-shell span {
  color: var(--muted);
}

.footer-note {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer-right {
  position: absolute;
  right: 30px;
  text-align: right;
}

.footer-center {
  text-align: center;
}

.footer-left {
  position: absolute;
  left: 30px;
  text-align: left;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {

  .hero-shell,
  .section-grid,
  .three-grid,
  .seo-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 40;
  }

  body {
    padding-top: 148px;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 10px 0 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 0;
    transform: translateY(-3px);
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.86rem;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 8px;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .hero-card,
  .section-card,
  .contact-card,
  .glass {
    padding: 22px;
  }

  .hero-meta,
  .steps,
  .contact-sections,
  .payment-methods {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .info-item,
  .footer-shell,
  .contact-head {
    align-items: flex-start;
  }

  .feature-item,
  .info-item {
    flex-direction: column;
  }

  .phone-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-shell {
    min-height: auto;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-shell strong,
  .footer-shell span,
  .footer-note,
  .footer-right,
  .footer-center,
  .footer-left {
    position: static;
    width: 100%;
    text-align: center;
  }

}
