* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Cairo', sans-serif;
  background: #F7F5F1;
  color: #1C1C1E;
  direction: rtl;
}

/* ── NAV ── */
nav {
  background: #F7F5F1;
  border-bottom: 1px solid #E0DDD8;
  padding: 0 5%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #1C1C1E;
  text-decoration: none;
}
.nav-logo span { color: #1B6B5A; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1B6B5A; }

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

.lang-btn {
  background: transparent;
  border: 1px solid #E0DDD8;
  border-radius: 6px;
  padding: 7px 14px;
  font-family: 'Cairo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.05em;
}
.lang-btn:hover { border-color: #1B6B5A; color: #1B6B5A; }

.nav-cta {
  background: #1C1C1E;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.nav-cta:hover { background: #333; }

/* ── HERO ── */
.hero {
  padding: 80px 5% 0;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #E0DDD8;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  color: #1B6B5A;
  font-weight: 700;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1B6B5A;
  flex-shrink: 0;
}

.hero-h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #1C1C1E;
  margin-bottom: 22px;
}

.hero-h1 .accent {
  color: #1B6B5A;
  position: relative;
  display: inline-block;
}
.hero-h1 .accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 3px;
  background: #C8A96E;
  border-radius: 2px;
}

.hero-sub {
  font-size: 17px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: #1B6B5A;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: #145448; }

.btn-outline {
  background: transparent;
  color: #1C1C1E;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Cairo', sans-serif;
  border: 1.5px solid #D0CCC6;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #1B6B5A; color: #1B6B5A; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 12px;
  color: #999;
  flex-wrap: wrap;
}
.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1B6B5A;
  flex-shrink: 0;
}

/* ── HERO VISUAL ── */
.hero-visual {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.phone-frame {
  background: #1C1C1E;
  border-radius: 32px;
  padding: 10px;
  width: 220px;
}
.phone-screen {
  background: #F7F5F1;
  border-radius: 24px;
  overflow: hidden;
}

.phone-map {
  background: #E8F0EC;
  height: 130px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-grid-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}
.map-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid #1B6B5A;
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.3; }
  50%       { transform: scale(1.1); opacity: 0.15; }
}
.map-pin {
  width: 32px;
  height: 32px;
  background: #1B6B5A;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.map-pin-inner {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  transform: rotate(45deg);
}

.phone-info { padding: 14px; }
.phone-biz-name { font-size: 13px; font-weight: 700; color: #1C1C1E; margin-bottom: 2px; }
.phone-biz-cat  { font-size: 11px; color: #999; margin-bottom: 8px; }
.phone-stars    { display: flex; align-items: center; gap: 3px; margin-bottom: 10px; }
.star {
  width: 10px; height: 10px;
  background: #C8A96E;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}
.phone-rating { font-size: 11px; font-weight: 600; margin-right: 4px; }
.phone-btn {
  background: #1B6B5A;
  color: #fff;
  border-radius: 6px;
  padding: 8px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  border: none;
  width: 100%;
  cursor: pointer;
}

.floating-cards { width: 220px; display: flex; flex-direction: column; gap: 10px; }
.fcard {
  background: #fff;
  border: 1px solid #E8E5DF;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fcard-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fcard-text { flex: 1; min-width: 0; }
.fcard-label { font-size: 10px; color: #999; }
.fcard-val   { font-size: 13px; font-weight: 700; color: #1C1C1E; }
.fcard-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── MARQUEE ── */
.marquee-wrap {
  background: #1C1C1E;
  padding: 16px 0;
  margin-top: 64px;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-size: 13px;
  color: #555;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.marquee-item strong { color: #fff; font-weight: 600; }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: #1B6B5A; flex-shrink: 0; }

/* ── SERVICES ── */
.services {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.sec-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1B6B5A;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sec-title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #1C1C1E;
  margin-bottom: 8px;
  line-height: 1.15;
}

.sec-sub {
  font-size: 16px;
  color: #888;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.scard {
  border: 1px solid #E8E5DF;
  border-radius: 16px;
  padding: 24px 20px;
  background: #fff;
  transition: transform 0.2s, border-color 0.2s;
  cursor: default;
}
.scard:hover { transform: translateY(-4px); border-color: #1B6B5A; }

.scard.scard-featured { border-color: #C8A96E; background: #FFFCF6; }
.scard.scard-featured:hover { border-color: #C8A96E; }

.scard-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #E8F0EC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.scard-icon svg {
  width: 22px; height: 22px;
  stroke: #1B6B5A;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scard-icon.scard-icon-accent { background: #FFF8EE; }
.scard-icon.scard-icon-accent svg { stroke: #C8A96E; }

.scard-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: #1C1C1E; }
.scard-desc  { font-size: 13px; color: #888; line-height: 1.8; margin-bottom: 14px; }
.scard-price {
  font-size: 12px; font-weight: 700;
  color: #1B6B5A;
  background: #E8F0EC;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}
.scard-price.scard-price-accent {
  color: #7a5020;
  background: #FFF0D4;
}

/* ── FULL PACKAGE STRIP ── */
.pkg-strip {
  background: #1B6B5A;
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pkg-tag {
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.pkg-strip-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.pkg-strip-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

.pkg-strip-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.pkg-price-wrap { display: flex; align-items: baseline; gap: 6px; }
.pkg-price    { font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1; }
.pkg-currency { font-size: 16px; color: rgba(255,255,255,0.6); font-weight: 600; }

.btn-pkg {
  background: #fff;
  color: #1B6B5A;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.btn-pkg:hover { opacity: 0.9; }

.disclaimer {
  font-size: 12px;
  color: #aaa;
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.how {
  background: #E8F0EC;
  padding: 80px 5%;
}
.how-inner { max-width: 1200px; margin: 0 auto; }

.how-title {
  font-size: 40px;
  font-weight: 900;
  color: #1C1C1E;
  letter-spacing: -1.5px;
  margin-bottom: 56px;
  line-height: 1.15;
}
.how-title span { color: #1B6B5A; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 22px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: #C5D9CC;
}

.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #1B6B5A;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
  font-family: 'Cairo', sans-serif;
}
.step-title { font-size: 14px; font-weight: 700; color: #1C1C1E; margin-bottom: 8px; }
.step-desc  { font-size: 13px; color: #5a6b60; line-height: 1.7; }

.contact-wa { align-self: flex-start; }

/* ── CTA ── */
.cta-section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-box {
  background: #1B6B5A;
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.cta-h2 {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  flex-shrink: 0;
  min-width: 200px;
}
.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-wa:hover { opacity: 0.9; }

.btn-white-outline {
  background: transparent;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s;
}
.btn-white-outline:hover { border-color: rgba(255,255,255,0.7); }

/* ── CONTACT ── */
.contact-section {
  padding: 80px 5%;
  background: #fff;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #1C1C1E;
  margin-bottom: 12px;
  line-height: 1.15;
}
.contact-sub {
  font-size: 15px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 28px;
}
.contact-detail { display: flex; flex-direction: column; gap: 12px; }
.cd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1E;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  border: 1px solid #E0DDD8;
  border-radius: 10px;
  padding: 13px 16px;
  background: #F7F5F1;
  color: #1C1C1E;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  direction: rtl;
  resize: vertical;
}
.contact-form input { height: 48px; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #1B6B5A; background: #fff; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }

.form-btn { width: 100%; justify-content: center; font-size: 15px; padding: 15px; }

.form-status {
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.form-status.success { background: #E8F0EC; color: #1B6B5A; }
.form-status.error   { background: #FFF0D4; color: #7a5020; }

/* ── FOOTER ── */
footer {
  background: #111;
  padding: 28px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { font-size: 20px; font-weight: 900; color: #fff; }
.footer-logo span { color: #1B6B5A; }
.footer-copy { font-size: 12px; color: #444; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: #444; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #1B6B5A; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 5% 0;
  }
  .hero-visual { display: none; }
  .hero-h1 { font-size: 38px; letter-spacing: -1px; }

  .marquee-wrap { margin-top: 48px; }

  .services { padding: 56px 5%; }
  .sec-title { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .pkg-strip { flex-direction: column; align-items: flex-start; }
  .pkg-strip-right { width: 100%; justify-content: space-between; }

  .how { padding: 56px 5%; }
  .how-title { font-size: 28px; margin-bottom: 40px; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-row::before { display: none; }

  .cta-section { padding: 48px 5%; }
  .cta-box { flex-direction: column; padding: 36px 28px; }
  .cta-h2 { font-size: 26px; }
  .cta-btns { width: 100%; }

  .contact-section { padding: 56px 5%; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-title { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }

  nav .nav-links { display: none; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}
