/* ═══════════════════════════════════════════════════════════
   روق الدار — Rawaq Aldar  |  Arabic RTL stylesheet
   Same look & feel as the original site, adapted to Arabic
═══════════════════════════════════════════════════════════ */

:root {
  --primary: #0d5c46;
  --primary-light: #14694f;
  --accent: #d4a017;
  --accent-light: #fbf1d9;
  --green: #25d366;
  --green-dark: #20bd5a;
  --white: #ffffff;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --muted: #64748b;
  --light: #f1f5f9;
  --shadow-card: 0 4px 24px rgba(13, 92, 70, .08);
  --shadow-btn: 0 4px 16px rgba(13, 92, 70, .2);
  --shadow-nav: 0 2px 20px rgba(13, 92, 70, .06);
  --radius: .75rem;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  direction: rtl;
  text-align: right;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif; }

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

a { color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

section[id] { scroll-margin-top: 90px; }

/* ═══════════════ NAV ═══════════════ */
nav {
  background: var(--white);
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-weight: 800;
  font-size: 16px;
  color: var(--primary);
  line-height: 1.25;
}
.nav-logo-text small { display: block; font-size: 11px; font-weight: 600; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-links > a,
.nav-dropdown-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 9px 13px;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  white-space: nowrap;
  font-family: 'Cairo', sans-serif;
}
.nav-links > a:hover { color: var(--primary); background: var(--light); }
.nav-links a.active { color: var(--accent); }

.nav-dropdown { position: relative; }
.nav-dropdown-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 5px; }
.nav-dropdown-btn:hover { color: var(--primary); background: var(--light); }
.dd-arrow {
  display: inline-block;
  font-size: 10px;
  transition: transform .25s ease;
}
.nav-dropdown:hover .dd-arrow,
.nav-dropdown.open .dd-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-width: 240px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--accent-light); color: var(--primary); }
.nav-dropdown-menu a.current { color: var(--accent); }

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: var(--shadow-btn);
  transition: background .15s, transform .15s !important;
}
.nav-cta:hover { background: var(--primary-light) !important; transform: translateY(-1px); }

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #2b2200;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow-btn);
  transition: all .25s;
  white-space: nowrap;
}
.nav-call:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.nav-call svg { width: 17px; height: 17px; }
.nav-call-mobile {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #2b2200;
  align-items: center;
  justify-content: center;
}
.nav-call-mobile svg { width: 18px; height: 18px; }

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 92, 70, .9) 0%, rgba(13, 92, 70, .78) 40%, rgba(13, 92, 70, .55) 100%);
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  animation: float 14s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 130px 24px 60px;
  text-align: center;
  color: #fff;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-badge .star { color: #fbbf24; }
.hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.hero h1 .hl { color: var(--accent); }
.hero .hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  max-width: 580px;
  margin: 18px auto 0;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all .25s;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #2b2200; box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: #fff; color: var(--primary); transform: translateY(-2px); }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border: 2px solid rgba(255, 255, 255, .45); }
.btn-ghost:hover { background: #fff; color: var(--primary); transform: translateY(-2px); }
.btn-navy { background: var(--primary); color: #fff; box-shadow: var(--shadow-btn); }
.btn-navy:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-wa { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(37, 211, 102, .3); }
.btn-wa:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--accent-light); transform: translateY(-2px); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}
.hero-trust .ti { color: #fbbf24; font-size: 15px; }

/* ═══════════════ HERO BOOKING BAR ═══════════════ */
#hbb-outer {
  position: relative;
  z-index: 12;
  padding: 0 16px 0;
  transform: translateY(-70px);
  margin-bottom: -70px;
}
#hbb {
  max-width: 1020px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28), 0 4px 16px rgba(0, 0, 0, .12);
  overflow: hidden;
}
.hbb-top {
  background: linear-gradient(90deg, #0d5c46 0%, #0e6b51 60%, #d4a017 100%);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hbb-top-title { font-size: 15px; font-weight: 800; color: #fff; }
.hbb-top-sub { font-size: 12px; color: rgba(255, 255, 255, .7); font-weight: 600; }
.hbb-badges { display: flex; gap: 6px; }
.hbb-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.hbb-badge-green { background: #22c55e; color: #fff; }
.hbb-badge-amber { background: #f59e0b; color: #fff; }

.hbb-body { padding: 22px 24px 18px; }
.hbb-row {
  display: grid;
  grid-template-columns: 2fr 1.6fr 1.3fr 1.3fr auto;
  gap: 12px;
  align-items: end;
}
.hbb-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}
.hbb-field label .lico { font-size: 14px; }
.hbb-field select,
.hbb-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  font-family: 'Cairo', sans-serif;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}
.hbb-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230a2463' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 13px center;
  padding-left: 36px;
  cursor: pointer;
}
.hbb-field select:focus,
.hbb-field input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 160, 23, .12);
}
.hbb-field input::placeholder { color: #94a3b8; font-weight: 500; }
.hbb-btn {
  padding: 13px 26px;
  background: linear-gradient(135deg, #0d5c46 0%, #117a5c 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .22s;
  box-shadow: 0 6px 20px rgba(13, 92, 70, .35);
}
.hbb-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(13, 92, 70, .45); }
.hbb-btn svg { width: 16px; height: 16px; }

.hbb-trust {
  display: flex;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding: 11px 24px;
  background: #fafbfd;
  flex-wrap: wrap;
  gap: 6px 0;
}
.hbb-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #64748b;
  font-weight: 600;
  padding: 0 0 0 18px;
  margin: 0 0 0 18px;
  border-left: 1px solid #e2e8f0;
}
.hbb-trust-item:last-child { border-left: none; margin-left: 0; }
.hbb-trust-item .ti { font-size: 14px; }
.hbb-trust-item strong { color: var(--primary); }

/* ═══════════════ SERVICES GRID ═══════════════ */
.ar-services { background: var(--bg); padding: 70px 0; }
.ar-svc-head { text-align: center; margin-bottom: 40px; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3.6vw, 38px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  margin: 14px auto 0;
}
.ar-svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.ar-svc-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(13, 92, 70, .06);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.ar-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(13, 92, 70, .14);
  border-color: var(--accent);
}
.ar-svc-card .ar-svc-img { width: 100%; height: 120px; object-fit: cover; display: block; background: var(--accent-light); }
.ar-svc-card .ar-svc-name {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--primary);
  padding: 14px 14px 16px;
  line-height: 1.4;
  text-align: center;
}

/* ═══════════════ SECTION COMMON ═══════════════ */
.section { padding: 80px 0; }
.section-alt { background: #fff; }
.section-head { text-align: center; margin-bottom: 50px; }

/* ═══════════════ SERVICES CARDS ═══════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(13, 92, 70, .15); }
.svc-card .svc-img { height: 180px; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-card .svc-body { padding: 22px; }
.svc-card h3 { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.svc-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.svc-link svg { width: 15px; height: 15px; transition: transform .25s; }
.svc-link:hover svg { transform: translateX(-4px); }

/* ═══════════════ ABOUT ═══════════════ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--muted); font-size: 15.5px; margin-bottom: 14px; }
.about-stats { display: flex; flex-wrap: wrap; gap: 40px; margin: 28px 0 30px; }
.stat .num { font-size: 38px; font-weight: 800; color: var(--accent); }
.stat .lbl { font-size: 14px; color: var(--muted); font-weight: 600; }
.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: rotate(-2deg);
}
.about-img img { width: 100%; height: 420px; object-fit: cover; }

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how-card {
  position: relative;
  background: var(--light);
  border-radius: 22px;
  padding: 38px 30px 32px;
  transition: all .3s;
}
.how-card:hover { background: #fff; box-shadow: var(--shadow-card); transform: translateY(-4px); }
.how-num {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 58px;
  font-weight: 800;
  color: rgba(212, 160, 23, .18);
  user-select: none;
  line-height: 1;
}
.how-icon {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.how-icon svg { width: 28px; height: 28px; }
.how-card h3 { font-size: 19px; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.how-card p { font-size: 14px; color: var(--muted); }

/* ═══════════════ AREAS ═══════════════ */
.areas-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.area-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: all .25s;
  cursor: default;
}
.area-chip:hover { background: var(--accent-light); color: var(--accent); }
.area-chip svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* ═══════════════ TESTIMONIALS ═══════════════ */
.testi-section { background: var(--primary); }
.testi-section .section-title { color: #fff; }
.testi-section .section-sub { color: rgba(255, 255, 255, .7); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  position: relative;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 30px;
  transition: all .3s;
}
.testi-card:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .22); }
.testi-quote {
  position: absolute;
  top: 8px;
  right: 22px;
  font-size: 72px;
  line-height: 1;
  color: rgba(212, 160, 23, .35);
  font-family: serif;
}
.testi-stars { display: flex; gap: 3px; color: #fbbf24; margin-bottom: 16px; position: relative; z-index: 1; }
.testi-stars svg { width: 16px; height: 16px; fill: #fbbf24; }
.testi-card blockquote { color: rgba(255, 255, 255, .92); font-size: 14.5px; line-height: 1.8; margin-bottom: 18px; font-style: italic; }
.testi-name { font-weight: 800; color: #fff; font-size: 15px; }
.testi-loc { font-size: 13px; color: rgba(255, 255, 255, .55); }

/* ═══════════════ FAQ ═══════════════ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 20px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  text-align: right;
}
.faq-q .chev { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 4px 20px; font-size: 14.5px; color: var(--muted); line-height: 1.8; }

/* ═══════════════ CONTACT CTA ═══════════════ */
.contact-cta { background: var(--accent-light); padding: 90px 0; }
.contact-cta h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.contact-cta p { color: var(--muted); font-size: 16px; max-width: 540px; margin: 0 auto 34px; }

/* ═══════════════ BOOKING FORM ═══════════════ */
.booking-section { background: var(--bg); }
.booking-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 44px;
  max-width: 900px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field label { display: block; font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.form-field label .req { color: #ef4444; }
.form-field select,
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--light);
  outline: none;
  font-family: 'Cairo', sans-serif;
  transition: all .2s;
}
.form-field select:focus,
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, .18);
}
.form-field.full { grid-column: 1 / -1; }
.form-field textarea { resize: vertical; }
.form-submit {
  width: 100%;
  margin-top: 6px;
  background: var(--primary);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  padding: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-btn);
  transition: all .25s;
}
.form-submit:hover { background: var(--primary-light); transform: translateY(-2px); }
.form-submit svg { width: 18px; height: 18px; }
.form-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ═══════════════ FOOTER ═══════════════ */
footer { background: var(--primary); color: rgba(255, 255, 255, .75); }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
.footer-logo img { height: 44px; width: auto; }
.footer-logo .fl-text { color: #fff; font-weight: 800; font-size: 17px; }
.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .25s;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #2b2200; }
.footer-social svg { width: 16px; height: 16px; }
footer h4 { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 18px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 11px; }
footer ul a { color: rgba(255, 255, 255, .7); text-decoration: none; font-size: 14px; transition: color .2s; }
footer ul a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-contact a { color: #fff; text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

/* ═══════════════ FLOATING BUTTONS ═══════════════ */
.floats { position: fixed; bottom: 26px; left: 22px; display: flex; flex-direction: column; gap: 14px; z-index: 999; }
.float-item { position: relative; display: flex; align-items: center; }
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .22);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0, 0, 0, .3); }
.float-btn svg { width: 28px; height: 28px; fill: #fff; }
.float-wa-btn { background: var(--green); }
.float-call-btn { background: var(--primary); }
.float-tip {
  position: absolute;
  left: 72px;
  background: rgba(15, 23, 42, .88);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  font-family: 'Cairo', sans-serif;
}
.float-item:hover .float-tip { opacity: 1; }
.float-pulse {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  opacity: .35;
  animation: pulse 2.5s infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .35; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ═══════════════ PAGE HERO (inner pages) ═══════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #14694f 50%, #0a2f24 100%);
  padding: 66px 24px 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(26px, 5vw, 40px); font-weight: 800; color: #fff; margin-bottom: 14px; position: relative; }
.page-hero p { font-size: 16px; color: rgba(255, 255, 255, .78); max-width: 640px; margin: 0 auto 26px; line-height: 1.8; position: relative; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; position: relative; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .92);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}
.badge span { font-size: 15px; }

.page-wrap { max-width: 1080px; margin: 0 auto; padding: 52px 20px 90px; }

/* ═══════════════ INNER PAGE BLOCKS ═══════════════ */
.page-title { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.page-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.7; max-width: 680px; }

.intro-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; margin-bottom: 56px; }
.intro-text h2 { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 14px; line-height: 1.4; }
.intro-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.intro-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); }
.intro-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 56px; }
.audience-card { background: var(--card); border-radius: 16px; padding: 26px; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.audience-card .aud-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.audience-card h3 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.audience-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

.card { background: var(--card); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 56px; }
.feature-card { background: var(--card); border-radius: 14px; padding: 22px; border: 1px solid var(--border); box-shadow: var(--shadow-card); }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.feature-card h3 { font-size: 15.5px; font-weight: 800; color: var(--primary); margin-bottom: 7px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

.checklist-wrap { margin-bottom: 56px; }
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.6; }
.check-item .tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

.steps-wrap { margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { text-align: center; padding: 24px 16px; background: var(--card); border-radius: 14px; border: 1px solid var(--border); }
.step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step-card h4 { font-size: 14.5px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.step-card p { font-size: 12.5px; color: var(--muted); line-height: 1.65; }

.pricing-card { display: flex; align-items: center; gap: 20px; margin-bottom: 56px; flex-wrap: wrap; }
.pricing-card .info-icon { font-size: 30px; flex-shrink: 0; }
.pricing-card h3 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.pricing-card p { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 680px; }

.faq-wrap2 { margin-bottom: 56px; }
.faq-item2 { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item2:last-child { border-bottom: none; }
.faq-q2 { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.faq-a2 { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #14694f 100%);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  color: #fff;
}
.cta-band h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.cta-band p { font-size: 14px; color: rgba(255, 255, 255, .8); margin-bottom: 24px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all .2s;
  font-family: 'Cairo', sans-serif;
}
.cta-btn:hover { transform: translateY(-2px); }
.cta-btn svg { width: 18px; height: 18px; fill: #fff; }
.cta-btn.wa { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(37, 211, 102, .3); }
.cta-btn.call { background: rgba(255, 255, 255, .12); color: #fff; border: 1.5px solid rgba(255, 255, 255, .3); }
.cta-btn.call svg { fill: #fff; }
.cta-btn.book { background: #fff; color: var(--primary); }

.related-wrap { margin-bottom: 56px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card {
  display: block;
  background: var(--card);
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all .15s;
}
.related-card:hover { border-color: var(--accent); background: var(--accent-light); transform: translateY(-2px); }
.related-card .rel-name { font-size: 13.5px; font-weight: 800; color: var(--primary); display: block; }
.related-card .rel-arrow { font-size: 12px; color: var(--accent); margin-top: 4px; display: block; }

/* ═══════════════ ABOUT PAGE ═══════════════ */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.value-card { background: var(--card); border-radius: 16px; padding: 28px; border: 1px solid var(--border); box-shadow: var(--shadow-card); text-align: center; }
.value-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }
.value-card h3 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.team-card { background: var(--card); border-radius: 16px; padding: 30px 26px; border: 1px solid var(--border); box-shadow: var(--shadow-card); text-align: center; }
.team-ava { width: 76px; height: 76px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 28px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.team-card h3 { font-size: 17px; font-weight: 800; color: var(--primary); }
.team-card .role { font-size: 13px; color: var(--accent); font-weight: 700; margin-top: 2px; }

/* ═══════════════ CONTACT PAGE ═══════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h2 { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.contact-info p { color: var(--muted); font-size: 15px; margin-bottom: 26px; line-height: 1.85; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: all .2s;
}
.contact-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.contact-card .cc-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .cc-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 15px; font-weight: 800; color: var(--primary); }
.contact-card p { font-size: 14px; color: var(--muted); margin: 0; }
.contact-card:hover p { color: var(--text); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1180px) {
  .ar-svc-grid { grid-template-columns: repeat(4, 1fr); }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1160px) {
  nav { position: sticky; top: 0; z-index: 1000; }
  .nav-inner { position: static; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 20px 34px rgba(13, 92, 70, .14);
    padding: 12px 18px 22px;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 1001;
  }
  .nav-links.open { display: flex; }
  .nav-links > a {
    font-size: 15px;
    padding: 13px 14px;
    border-radius: 10px;
    text-align: right;
    box-sizing: border-box;
    width: 100%;
  }
  .nav-dropdown { width: 100%; box-sizing: border-box; }
  .nav-dropdown-btn {
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
    padding: 13px 14px;
    border-radius: 10px;
    box-sizing: border-box;
    transition: background .2s, color .2s;
  }
  .nav-dropdown.open .nav-dropdown-btn {
    background: var(--light);
    color: var(--primary);
    font-weight: 700;
  }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    box-sizing: border-box;
    box-shadow: none;
    border: none;
    border-radius: 12px;
    background: #f4f8f7;
    padding: 6px 8px;
    min-width: 0;
    margin-top: 4px;
    margin-bottom: 6px;
    border-right: 3px solid var(--primary);
  }
  .nav-dropdown-menu a {
    white-space: normal;
    font-size: 14px;
    padding: 11px 14px;
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%;
  }
  .nav-dropdown-menu a:hover,
  .nav-dropdown-menu a:active {
    background: rgba(13, 92, 70, 0.08);
    color: var(--primary);
  }
  .nav-cta {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  .nav-mobile-btn { display: flex; }
  .nav-call { display: none; }
  .nav-call-mobile { display: flex; }
}

@media (max-width: 900px) {
  #hbb-outer { padding: 0 12px; transform: translateY(-40px); margin-bottom: -40px; }
  .hbb-body { padding: 18px 16px 14px; }
  .hbb-row { grid-template-columns: 1fr 1fr; }
  .hbb-btn { grid-column: 1 / -1; padding: 14px; font-size: 15px; width: 100%; justify-content: center; }
  .hbb-badges { display: none; }
  .hbb-trust {
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
  }
  .hbb-trust-item {
    border-left: none !important;
    margin: 0 !important;
    padding: 5px 12px !important;
    background: #f1f5f9;
    border-radius: 20px;
    font-size: 12px;
  }
  .ar-svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; gap: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-split { grid-template-columns: 1fr; }
  .intro-img img { min-height: 240px; }
  .audience-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .nav-inner { height: 64px; padding: 0 14px; }
  .nav-logo img { height: 38px; }
  .nav-logo-text { font-size: 14px; }
  .nav-logo-text small { font-size: 10px; }
  .nav-call-mobile { width: 38px; height: 38px; }
  .nav-links { max-height: calc(100vh - 64px); }
  .section { padding: 56px 0; }
  .page-hero { padding: 48px 20px 56px; }
  .ar-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  #hbb-outer { transform: translateY(-30px); margin-bottom: -30px; }
  .hbb-row { grid-template-columns: 1fr; gap: 10px; }
  .hbb-top { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hbb-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px 14px;
  }
  .hbb-trust-item {
    justify-content: center;
    text-align: center;
    font-size: 11.5px;
    padding: 7px 10px !important;
  }
  .hbb-trust-item:last-child {
    grid-column: 1 / -1;
  }
  .feature-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .value-grid, .team-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 26px 20px; }
  .hero-trust { gap: 12px; flex-direction: column; }
  .floats { bottom: 20px; left: 16px; }
  .about-img img { height: 300px; }
}
