:root {
  --bg: #fbfbfc;
  --panel: #ffffff;
  --text: #111111;
  --muted: #6b6b72;
  --line: #e9e9ef;
  --red: #e31717;
  --red-soft: rgba(227, 23, 23, 0.1);
  --shadow: 0 20px 60px rgba(17, 17, 17, 0.06);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-shell { min-height: 100vh; }
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; position: sticky; top: 0; background: rgba(251,251,252,.88);
  backdrop-filter: blur(16px); z-index: 20; border-bottom: 1px solid rgba(233,233,239,0.7);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.4rem; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px;
  background: var(--text); color: #fff; font-weight: 800;
}
.nav { display: flex; align-items: center; gap: 26px; color: var(--muted); }
.nav a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 50px; padding: 0 22px; border-radius: 999px; border: 1px solid var(--line);
  font-weight: 600; transition: .2s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-dark { background: var(--text); color: #fff; border-color: var(--text); }
.btn-light { background: #fff; color: var(--text); }
.btn-block { width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1.08fr .92fr; gap: 42px; }
.hero { padding: 56px 0 52px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: .14em; color: var(--red);
  font-weight: 700; margin-bottom: 16px;
}
.hero-title, h1, h2, h3 { letter-spacing: -0.04em; margin: 0; }
.hero-title { font-size: clamp(3rem, 6vw, 5.2rem); line-height: .95; max-width: 11ch; }
.hero-sub {
  color: var(--muted); font-size: 1.12rem; line-height: 1.7; max-width: 56ch; margin: 22px 0 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px;
}
.stat-card, .service-card, .booking-card, .steps, .dashboard-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.card-shadow { box-shadow: var(--shadow); }
.stat-card { padding: 18px; }
.stat-card strong { display: block; font-size: 1.15rem; }
.stat-card span { color: var(--muted); font-size: .92rem; }
.hero-visual { display: flex; justify-content: center; }
.dashboard-card { padding: 26px; width: 100%; }
.dashboard-head { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.tiny-label { margin: 0 0 8px; color: var(--muted); font-size: .74rem; letter-spacing: .12em; }
.live-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px;
  background: var(--red-soft); color: var(--red); font-size: .84rem; font-weight: 600;
}
.live-badge i, .dot { width: 9px; height: 9px; border-radius: 50%; background: #28c76f; display: inline-block; }
.dot.red { background: var(--red); }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mini-box { border: 1px solid var(--line); border-radius: 18px; padding: 18px; background: #f8f8fa; }
.mini-box.wide { grid-column: 1 / -1; }
.mini-box span { display: block; color: var(--muted); font-size: .88rem; margin-bottom: 8px; }
.mini-box strong { font-size: 1.2rem; }
.activity-list { margin-top: 18px; display: grid; gap: 12px; }
.activity-row { padding: 14px 16px; border: 1px solid var(--line); border-radius: 16px; color: #2b2b31; background: #fff; }
.section { padding: 56px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 26px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.4rem); max-width: 10ch; }
.section-head p, .book-copy, .micro-note { color: var(--muted); line-height: 1.7; }
.narrow { max-width: 740px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 24px; min-height: 240px; }
.service-index {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 50%; background: var(--red-soft); color: var(--red); font-weight: 700; margin-bottom: 28px;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.service-card p { color: var(--muted); line-height: 1.7; }
.how-section { align-items: start; }
.steps { padding: 18px; display: grid; gap: 10px; }
.step {
  display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 18px;
  background: #fff; border: 1px solid var(--line);
}
.step strong {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--text); color: #fff; font-size: .98rem;
}
.region-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.region-tags span {
  padding: 12px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: #25252b; font-weight: 500;
}
.booking-card { padding: 28px; align-items: start; }
.booking-form { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 8px; }
label span { font-weight: 600; font-size: .92rem; }
input, textarea {
  width: 100%; border: 1px solid var(--line); background: #fff; color: var(--text); border-radius: 16px;
  padding: 15px 16px; font: inherit; outline: none; transition: border-color .18s ease, box-shadow .18s ease;
}
input:focus, textarea:focus { border-color: rgba(227,23,23,.35); box-shadow: 0 0 0 4px rgba(227,23,23,.08); }
.form-message { min-height: 20px; color: var(--red); font-size: .95rem; margin: 2px 4px 0; }
.phone-input-group { display: flex; gap: 10px; }
.country-select {
  width: 120px; flex-shrink: 0; cursor: pointer;
  border: 1px solid var(--line); border-radius: 16px; background: #fff;
  padding: 0 32px 0 16px; font: inherit; outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6b72' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.country-select:focus { border-color: rgba(227,23,23,.35); box-shadow: 0 0 0 4px rgba(227,23,23,.08); }
body.rtl .country-select { background-position: left 14px center; padding: 0 16px 0 32px; text-align: right; }
.micro-note { margin-top: 18px; font-size: .9rem; }
.footer {
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
  padding: 28px 0 44px; color: var(--muted);
}
.footer strong { color: var(--text); display: block; margin-bottom: 6px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--text); }
.problem-section { padding-top: 18px; }
@media (max-width: 980px) {
  .grid-2, .cards-3, .field-row, .stats-row { grid-template-columns: 1fr; }
  .nav { display: none; }
  .section-head { align-items: start; flex-direction: column; }
  .hero { padding-top: 34px; }
}
@media (max-width: 640px) {
  .topbar { padding: 18px 0; }
  .brand-mark { width: 38px; height: 38px; }
  .container { width: min(100% - 24px, 1160px); }
  .hero-title { max-width: 100%; }
  .booking-card, .dashboard-card { padding: 20px; }
  .btn { width: 100%; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: start; }
}

.topbar-actions { display:flex; align-items:center; gap:12px; }
.lang-toggle { min-width: 64px; }
body.rtl { font-family: 'Tajawal','Inter',system-ui,sans-serif; }
body.rtl .topbar, body.rtl .hero, body.rtl .section-head, body.rtl .footer { direction: rtl; }
body.rtl .brand { flex-direction: row-reverse; }
body.rtl .nav { direction: rtl; }
body.rtl .hero-sub, body.rtl .book-copy, body.rtl .micro-note, body.rtl .service-card p, body.rtl .section-head p { text-align: right; }
body.rtl .dashboard-head, body.rtl .step, body.rtl .activity-row, body.rtl .footer-links, body.rtl .hero-actions, body.rtl .region-tags { direction: rtl; }
body.rtl label, body.rtl .booking-form, body.rtl .section-head.narrow, body.rtl .section-head { text-align: right; }
body.rtl input, body.rtl textarea { text-align: right; }
body.rtl .stats-row, body.rtl .mini-grid, body.rtl .cards-3, body.rtl .field-row { direction: rtl; }
@media (max-width: 980px) { .topbar-actions { width: 100%; justify-content: flex-end; } }


.hidden { display: none !important; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo { width: 64px; height: 64px; border-radius: 18px; object-fit: cover; border: 1px solid var(--line); background: #fff; }
.footer-mark { flex-shrink: 0; }

.social-section { padding-top: 10px; }
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.social-link {
  display: grid;
  gap: 10px;
  padding: 22px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(227,23,23,.22);
}
.social-platform {
  font-weight: 700;
  font-size: 1.05rem;
}
.social-handle {
  color: var(--muted);
  font-size: .94rem;
  word-break: break-all;
}
body.rtl .social-link { text-align: right; }

@media (max-width: 980px) {
  .social-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .social-links-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 980px) {
  .topbar {
    gap: 14px;
    flex-wrap: wrap;
  }
  .topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }
  body.rtl .topbar-actions {
    justify-content: flex-end;
  }
  .hero-sub {
    font-size: 1rem;
    margin: 18px 0 24px;
  }
  .section {
    padding: 42px 0;
  }
  .section-head h2 {
    max-width: 100%;
  }
  .service-card {
    min-height: unset;
  }
  .booking-card {
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
  }
  .brand {
    width: 100%;
  }
  .brand-text {
    font-size: 1.15rem;
  }
  .topbar-actions .btn,
  .topbar-actions .lang-toggle {
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }
  .hero {
    padding: 22px 0 28px;
  }
  .hero-title {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
    line-height: .98;
  }
  .eyebrow {
    margin-bottom: 12px;
    font-size: .72rem;
  }
  .stats-row {
    margin-top: 20px;
    gap: 10px;
  }
  .stat-card, .mini-box, .step, .activity-row, .service-card, .booking-card {
    border-radius: 20px;
  }
  .mini-box strong {
    font-size: 1.05rem;
  }
  .dashboard-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-head {
    margin-bottom: 18px;
  }
  .section-head h2 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
  }
  .field-row {
    gap: 12px;
  }
  input, textarea {
    padding: 14px 14px;
    font-size: 16px;
  }
  .footer-links {
    gap: 12px;
  }
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  transform: scale(1.2);
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Branding Logo Adjustments */
.brand-logo {
  height: clamp(34px, 6vw, 54px);
  width: auto;
  display: block;
}

.hidden {
  display: none !important;
}
