/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #1B6CA8;
  --primary-dark: #145a8c;
  --accent:       #2EC4B6;
  --white:        #ffffff;
  --bg:           #f8fafc;
  --bg2:          #eef4fb;
  --text:         #1a2332;
  --text-muted:   #6b7a8d;
  --border:       #dde3ea;
  --shadow:       0 2px 16px rgba(27,108,168,0.09);
  --shadow-lg:    0 8px 40px rgba(27,108,168,0.15);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   0.28s ease;

  /* Spacing scale */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===================== CONTAINER ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ===================== SECTIONS ===================== */
.section { padding: var(--sp-2xl) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}

.section-badge {
  display: inline-block;
  background: var(--bg2);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary   { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--outline   { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); }

.btn--call      { background: #f0f7ff; color: var(--primary); border-color: var(--primary); }
.btn--call:hover { background: var(--primary); color: var(--white); }

.btn--whatsapp  { background: #25d366; color: var(--white); border-color: #25d366; }
.btn--whatsapp:hover { background: #1da851; border-color: #1da851; transform: translateY(-2px); }

.btn--lg   { padding: 15px 34px; font-size: 1.05rem; }
.btn--sm   { padding: 7px 16px;  font-size: 0.85rem; }
.btn--block { width: 100%; margin-top: 10px; }

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: 12px 0;
  min-height: 68px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27,108,168,0.3);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.25; }
.logo__text strong { font-size: 1.05rem; font-weight: 900; color: var(--primary); }
.logo__text small  { font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }

/* Nav */
.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: block;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: all var(--transition);
}
.nav__link:hover,
.nav__link.active { color: var(--primary); background: var(--bg2); }

/* Header CTA */
.header__cta { display: none; flex-shrink: 0; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
@media (min-width: 900px) { .hamburger { display: none; } }

/* Mobile nav */
@media (max-width: 899px) {
  .nav {
    display: none;
    position: fixed;
    top: 68px; right: 0; left: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 12px 16px 20px;
    z-index: 999;
  }
  .nav.open { display: block; }
  .nav__list { flex-direction: column; gap: 2px; }
  .nav__link { display: block; padding: 11px 14px; font-size: 1rem; border-radius: var(--radius-sm); }
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  background: #f0f6ff;
}

/* Blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero__blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,108,168,0.13) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.hero__blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,196,182,0.12) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.hero__dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(27,108,168,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Grid layout */
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0 80px;
  min-height: calc(100vh - 68px);
}
/* ---- Content (Right) ---- */
.hero__content { display: flex; flex-direction: column; gap: 0; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,108,168,0.08);
  border: 1px solid rgba(27,108,168,0.18);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  width: fit-content;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(46,196,182,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(46,196,182,0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(46,196,182,0.1); }
}

.hero__title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.9;
}
.hero__desc strong { color: var(--primary); }

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__btn-main {
  background: var(--primary);
  box-shadow: 0 6px 24px rgba(27,108,168,0.3);
}
.hero__btn-main:hover {
  background: var(--primary-dark);
  box-shadow: 0 10px 30px rgba(27,108,168,0.4);
  transform: translateY(-3px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  font-weight: 600;
}
.btn--ghost:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: fit-content;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 22px;
  gap: 2px;
}
.stat strong { font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat span   { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.stat__divider {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- Visual (Left) ---- */
.hero__visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center circle */
.hero__circle {
  position: relative;
  width: 220px; height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__circle-inner {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), #2563b0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 12px 40px rgba(27,108,168,0.35);
  gap: 4px;
  overflow: hidden;
}
.hero__circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.hero__circle-emoji {
  font-size: 3rem;
  line-height: 1;
  color: rgba(255,255,255,0.95);
}
.hero__circle-emoji i { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2)); }
.hero__circle-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  text-align: center;
  line-height: 1.4;
}
.hero__circle-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 2px dashed rgba(27,108,168,0.2);
  animation: rotate 20s linear infinite;
}
.hero__circle-ring--2 {
  inset: -40px;
  border-style: solid;
  border-color: transparent rgba(46,196,182,0.15) transparent rgba(46,196,182,0.15);
  animation-direction: reverse;
  animation-duration: 15s;
}
@keyframes rotate { to { transform: rotate(360deg); } }

/* Floating cards */
.hero__card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(27,108,168,0.12);
  border: 1px solid var(--border);
  padding: 14px 16px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Main card — top right */
.hero__card--main {
  top: 24px; left: -10px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  animation-delay: 0s;
}
.hero__card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(27,108,168,0.25);
}
.hero__card-body { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.hero__card-body span   { font-size: 0.72rem; color: var(--text-muted); }
.hero__card-body strong { font-size: 0.85rem; font-weight: 800; color: var(--text); }
.hero__card-badge {
  background: #fef9c3;
  color: #854d0e;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  flex-shrink: 0;
}

/* Booking card — bottom left */
.hero__card--booking {
  bottom: 60px; left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  animation-delay: 1s;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.hero__card--booking:hover { box-shadow: 0 12px 40px rgba(27,108,168,0.2); }
.hero__card--booking div  { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.hero__card--booking span { font-size: 0.72rem; color: var(--text-muted); }
.hero__card--booking strong { font-size: 0.85rem; font-weight: 800; color: var(--text); }
.hero__card-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__card-dot--green {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse 2s infinite;
}

/* Review card — top left */
.hero__card--review {
  top: 80px; right: -20px;
  max-width: 180px;
  animation-delay: 2s;
}
.hero__card-stars {
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: flex;
  gap: 2px;
}
.hero__card-stars i { font-size: 0.78rem; }
.hero__card--review p    { font-size: 0.78rem; color: var(--text); font-style: italic; line-height: 1.5; margin-bottom: 5px; }
.hero__card--review span { font-size: 0.72rem; color: var(--text-muted); font-weight: 700; }

/* Decorative dots */
.hero__visual-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__visual-dot--1 {
  width: 12px; height: 12px;
  background: var(--accent);
  top: 40px; right: 60px;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}
.hero__visual-dot--2 {
  width: 8px; height: 8px;
  background: var(--primary);
  bottom: 80px; right: 40px;
  opacity: 0.4;
  animation: float 4s ease-in-out infinite 0.5s;
}
.hero__visual-dot--3 {
  width: 16px; height: 16px;
  background: #fbbf24;
  bottom: 140px; left: 30px;
  opacity: 0.35;
  animation: float 5s ease-in-out infinite 1s;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 60px;
    text-align: center;
    min-height: unset;
  }
  .hero__badge  { margin: 0 auto 22px; }
  .hero__desc   { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats  { margin: 0 auto; }
  .hero__visual { height: 360px; }
  .hero__circle { width: 180px; height: 180px; }
  .hero__circle-inner { width: 130px; height: 130px; }
  .hero__circle-emoji { font-size: 2.2rem; }
}

@media (max-width: 560px) {
  .hero__grid { padding: 48px 0 52px; }
  .hero__title { font-size: 2rem; }
  .hero__visual { height: 300px; }
  .hero__card { padding: 10px 12px; }
  .hero__card--main    { min-width: 150px; max-width: 170px; top: 10px; left: 0; right: auto; }
  .hero__card--booking { min-width: 145px; max-width: 165px; bottom: 20px; left: 0; right: auto; }
  .hero__card--review  { max-width: 140px; right: 0; left: auto; top: 50px; }
  .hero__stats { flex-wrap: wrap; width: 100%; }
  .stat { flex: 1; min-width: 80px; padding: 12px 14px; }
  .stat strong { font-size: 1.3rem; }
  .stat__divider { display: none; }
}

@media (max-width: 380px) {
  .hero__card--main,
  .hero__card--booking,
  .hero__card--review { display: none; }
  .hero__visual { height: 220px; }
}

/* ===================== SERVICES ===================== */
.services { background: var(--bg); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-md);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--bg2), #dbeafe);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.65rem;
  color: var(--primary);
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(27,108,168,0.1);
}
.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 8px 24px rgba(27,108,168,0.28);
  transform: scale(1.08);
}
.service-card h3    { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.service-card p     { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; }

/* ===================== BRANCHES ===================== */
.branches { background: var(--white); }

.branches__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
@media (max-width: 900px) { .branches__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .branches__grid { grid-template-columns: 1fr; } }

.branch-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border: 2px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.branch-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); }

.branch-card--featured {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-color: var(--primary);
}
.branch-card--featured .branch-card__area,
.branch-card--featured .branch-card__info p { color: rgba(255,255,255,0.78); }
.branch-card--featured h3 { color: var(--white); }
.branch-card--featured .branch-card__num { color: rgba(255,255,255,0.35); }

.branch-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.branch-card__header { margin-bottom: 16px; }
.branch-card__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.branch-card h3     { font-size: 1.2rem; font-weight: 900; margin-bottom: 2px; }
.branch-card__area  { font-size: 0.83rem; color: var(--text-muted); }

.branch-card__info  { margin-bottom: 20px; flex: 1; }
.branch-card__info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.branch-card__info p i {
  width: 18px;
  text-align: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.branch-card--featured .branch-card__info p i { color: rgba(255,255,255,0.7); }

.branch-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.branch-card__actions .btn--call,
.branch-card__actions .btn--whatsapp { flex: 1; min-width: 0; }

/* ===================== REVIEW SECTION ===================== */
.review-section { background: var(--bg); }

.review-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
@media (max-width: 900px) { .review-cards__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .review-cards__grid { grid-template-columns: 1fr; } }

.rcard {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all var(--transition);
}
.rcard:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.rcard--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, #f0fffe 0%, #e6faf8 100%);
}
.rcard--featured:hover { border-color: var(--accent); }

.rcard__badge {
  position: absolute;
  top: -13px; right: 20px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.rcard__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rcard__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(27,108,168,0.25);
}
.rcard__name {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 3px;
  color: var(--text);
}
.rcard__loc {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.rcard__loc i { color: var(--primary); font-size: 0.75rem; }

.rcard__avg {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.rcard__avg-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.rcard__avg-stars { display: flex; gap: 2px; }
.rcard__avg-stars i { color: #f59e0b; font-size: 0.8rem; }
.rcard__avg-count { font-size: 0.78rem; color: var(--text-muted); margin-right: auto; }

.rcard__prompt {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: -4px;
}

/* Interactive stars */
.rcard__stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  direction: ltr;
}
.rcard__star {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  font-size: 1.7rem;
  color: #d1d5db;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}
.rcard__star:hover,
.rcard__star.hovered,
.rcard__star.selected { color: #f59e0b; transform: scale(1.2); }
.rcard__star.selected { transform: scale(1.1); }

/* Thankyou state */
.rcard__thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}
.rcard__thanks.show { display: flex; }
.rcard__thanks-emoji { font-size: 2.2rem; }
.rcard__thanks-text { font-size: 0.9rem; font-weight: 700; color: var(--primary); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rcard__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--white);
  border: 2px solid #4285f4;
  color: #4285f4;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  margin-top: auto;
}
.rcard__btn:hover {
  background: #4285f4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66,133,244,0.3);
}
.rcard__cta-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg2);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: auto;
  border: 1px dashed var(--primary);
}
.rcard__cta-hint:hover {
  background: var(--primary);
  color: white;
  border-style: solid;
}
.rcard__cta-hint i { font-size: 0.9rem; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== QR SECTION ===================== */
.qr-section { background: var(--bg); }

.qr-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  justify-items: center;
}
@media (max-width: 900px) { .qr-cards__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .qr-cards__grid { grid-template-columns: 1fr; } }

.qr-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  border: 2px solid var(--border);
  width: 100%;
  max-width: 300px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qr-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.qr-card__logo {
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.qr-card__logo i { font-size: 1.1rem; color: var(--accent); }
.qr-code-box    { display: flex; justify-content: center; margin-bottom: 16px; }
.qr-code-box canvas,
.qr-code-box img { border-radius: 8px; }
.qr-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.qr-card p  { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px; line-height: 1.6; }

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-badge { background: rgba(255,255,255,0.18); color: var(--white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-md);
}
.review-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.review-card__stars i { color: #f59e0b; font-size: 0.9rem; }
.review-card p {
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.88);
  font-style: italic;
}
.review-card__author { display: flex; flex-direction: column; gap: 1px; }
.review-card__author strong { font-weight: 800; font-size: 0.95rem; }
.review-card__author span   { font-size: 0.8rem; color: var(--accent); }

/* ===================== CONTACT ===================== */
.contact { background: var(--bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-xl);
  align-items: start;
}
@media (max-width: 768px) { .contact__grid { grid-template-columns: 1fr; gap: var(--sp-lg); } }

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact__item > span {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--bg2), #dbeafe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(27,108,168,0.1);
}
.contact__item div    { display: flex; flex-direction: column; gap: 3px; }
.contact__item strong { font-weight: 800; font-size: 0.95rem; }
.contact__item a      { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.contact__item a:hover{ text-decoration: underline; }

.contact__form { display: flex; flex-direction: column; gap: 14px; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  direction: rtl;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { border-color: var(--primary); }
.contact__form textarea { resize: vertical; min-height: 120px; }

/* ===================== FOOTER ===================== */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-lg);
  padding-bottom: 48px;
}
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand .logo__icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 4px 12px rgba(27,108,168,0.4);
}
.footer__brand .logo__text strong { color: var(--white); }
.footer__brand .logo__text small  { color: rgba(255,255,255,0.45); }
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.85;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__links ul li { margin-bottom: 8px; }
.footer__links ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer__links ul li a:hover { color: var(--accent); }

.footer__contact { display: flex; flex-direction: column; gap: 8px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
}
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===================== SCROLL TOP ===================== */
.scroll-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover   { background: var(--primary-dark); transform: translateY(-3px); }

/* ===================== ANIMATIONS ===================== */
.animate-in { opacity: 1 !important; transform: translateY(0) !important; }

/* ===================== RESPONSIVE — GLOBAL ===================== */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .section-header { margin-bottom: 36px; }

  .hero__actions .btn--lg { padding: 13px 24px; font-size: 0.95rem; }

  .branch-card { padding: 24px 20px 20px; }

  .footer__grid { gap: var(--sp-md); }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }

  .hero__actions { gap: 10px; }
  .hero__stats   { width: 100%; }
  .stat          { flex: 1; padding: 12px 10px; }
}

/* ===================== POST-BOOKING REVIEW WIDGET ===================== */
.post-review {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.post-review__inner {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 2px solid #bae6fd;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.post-review__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
}
.post-review__sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: -6px;
}
.post-review__stars {
  display: flex;
  gap: 8px;
  direction: ltr;
  margin: 4px 0;
}
.pr-star {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.2rem;
  color: #d1d5db;
  padding: 2px;
  line-height: 1;
  transition: color 0.15s, transform 0.15s;
}
.pr-star:hover,
.pr-star.hovered { color: #f59e0b; transform: scale(1.25); }
.pr-star.selected { color: #f59e0b; transform: scale(1.1); }
.pr-star:disabled { cursor: default; }

.post-review__thanks {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  color: #15803d;
  font-weight: 700;
  font-size: 0.95rem;
  animation: fadeInUp 0.4s ease;
}
.post-review__thanks-emoji { font-size: 1.6rem; }

/* ===================== PRINT QR ===================== */
@media print {
  body * { visibility: hidden; }
  .print-area, .print-area * { visibility: visible; }
  .print-area { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; }
}
