/* ============================================================
   ASHRAF BARBER SALOUN — Premium CSS
   Mobile-First · Bilingual Arabic + English
   Colors: Black · White · Red #c0392b · Gold #d4af37
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --bg2:       #111111;
  --bg3:       #1a1a1a;
  --card:      #161616;
  --border:    #2a2a2a;
  --white:     #ffffff;
  --off-white: #e8e8e8;
  --muted:     #888888;
  --red:       #c0392b;
  --red-light: #e74c3c;
  --gold:      #d4af37;
  --gold-light:#f0d060;
  --green-wa:  #25d366;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.7);
  --trans:     0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Arabic mode */
body.lang-ar {
  font-family: 'Amiri', 'Inter', sans-serif;
  direction: rtl;
  text-align: right;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ── Language Visibility ── */
body.lang-en .lang-ar-el { display: none !important; }
body.lang-ar .lang-en-el { display: none !important; }

/* ── Section Base ── */
.section { padding: 72px 0; }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--white);
}

body.lang-ar .section-title { font-family: 'Amiri', serif; }

.section-sub {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-wa);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 99px;
  transition: var(--trans);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: #1ebe57; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 27px;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--trans);
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── STICKY WHATSAPP ── */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px 14px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--trans);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-sticky i { font-size: 22px; }
.whatsapp-sticky:hover { background: #1ebe57; transform: scale(1.05); animation: none; }

body.lang-ar .whatsapp-sticky { right: auto; left: 20px; }

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s;
}
.header.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 12px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), #b8942a);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 900;
  color: #000;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--white); }
body.lang-ar .logo-name { font-family: 'Amiri', serif; font-size: 17px; }
.logo-sub { font-size: 9px; letter-spacing: 2px; color: var(--gold); margin-top: 2px; }

/* Nav */
.nav { display: none; }
.nav-list { display: flex; gap: 4px; }
.nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  transition: var(--trans);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 99px;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.lang-btn:hover { background: rgba(212,175,55,0.2); }

.btn-call-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: var(--trans);
}
.btn-call-header:hover { background: var(--red-light); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* Mobile nav panel */
@media (max-width: 767px) {
  .nav {
    display: block;
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: var(--bg2);
    border-left: 1px solid var(--border);
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    padding-top: 80px;
    overflow-y: auto;
  }
  .nav.open { right: 0; }
  body.lang-ar .nav { right: auto; left: -100%; border-left: none; border-right: 1px solid var(--border); }
  body.lang-ar .nav.open { left: 0; }
  .nav-list { flex-direction: column; padding: 20px; gap: 4px; }
  .nav-link { font-size: 16px; padding: 14px 16px; border-radius: 10px; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: 'Playfair Display', serif;
  line-height: 1.05;
}
body.lang-ar .hero-title { font-family: 'Amiri', serif; }

.title-line {
  font-size: clamp(42px, 10vw, 80px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}
.title-gold {
  font-size: clamp(32px, 7.5vw, 64px);
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(14px, 3.5vw, 17px);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
}
.stat-label { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }
.stat-sep {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  width: 2px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.3; transform: scaleY(0.5); }
}

/* ── ABOUT ── */
.about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--off-white);
  margin-bottom: 16px;
}
.about-text p { color: var(--muted); margin-bottom: 24px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--off-white);
}
.feature-item i { color: var(--gold); font-size: 16px; flex-shrink: 0; }

.about-cards { display: flex; flex-direction: column; gap: 14px; }
.info-tile {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.info-tile-icon {
  width: 44px; height: 44px;
  background: rgba(192,57,43,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.info-tile-body { display: flex; flex-direction: column; gap: 3px; }
.info-tile-body strong { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.info-tile-body span, .info-tile-body a { font-size: 14px; color: var(--off-white); }
.info-tile-body a:hover { color: var(--gold); }

/* ── WHY CHOOSE US ── */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: var(--trans);
}
.why-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.why-ico {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(192,57,43,0.05));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
  font-size: 20px;
  margin-bottom: 14px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
body.lang-ar .why-card h3 { font-family: 'Amiri', serif; font-size: 17px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── SERVICES ── */
.services { background: var(--bg2); }

.service-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.sf-img {
  position: relative;
  height: 260px;
}
.sf-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sf-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 99px;
}
body.lang-ar .sf-badge { left: auto; right: 14px; }

.sf-content { padding: 24px 20px; }
.sf-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}
body.lang-ar .sf-content h3 { font-family: 'Amiri', serif; font-size: 26px; }
.sf-content p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.sf-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
}
.sf-price span { font-size: 16px; color: var(--muted); margin-left: 4px; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--trans);
}
.svc-card:hover { border-color: rgba(212,175,55,0.3); transform: translateY(-2px); }
.svc-ico {
  width: 50px; height: 50px;
  background: rgba(192,57,43,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red-light);
  font-size: 20px;
  margin: 0 auto 12px;
}
.svc-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
body.lang-ar .svc-card h4 { font-family: 'Amiri', serif; font-size: 16px; }
.svc-card p { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.svc-price {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
}

/* ── KERATIN & PROTEIN ── */
.keratin-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.keratin-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.07), transparent 70%);
  pointer-events: none;
}

.kt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.kt-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}
.kt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(212,175,55,0.3); }

.kt-visual {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.kt-keratin { background: linear-gradient(135deg, #0d1a2e, #1a2d40); }
.kt-protein { background: linear-gradient(135deg, #1a1208, #2d2010); }

.kt-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.15), transparent 70%);
}

.kt-big-ico {
  font-size: 52px;
  color: var(--gold);
  opacity: 0.9;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 16px rgba(212,175,55,0.5));
  animation: float-ico 3s ease-in-out infinite;
}
@keyframes float-ico {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.kt-strands {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.kt-strands span {
  display: block;
  width: 3px;
  background: linear-gradient(to top, var(--gold), transparent);
  border-radius: 2px;
  animation: strand-anim 2s ease-in-out infinite;
}
.kt-strands span:nth-child(1) { height: 30px; animation-delay: 0s; }
.kt-strands span:nth-child(2) { height: 40px; animation-delay: 0.2s; }
.kt-strands span:nth-child(3) { height: 25px; animation-delay: 0.4s; }
.kt-strands span:nth-child(4) { height: 38px; animation-delay: 0.1s; }
.kt-strands span:nth-child(5) { height: 28px; animation-delay: 0.3s; }
@keyframes strand-anim {
  0%,100% { opacity: 0.6; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.1); }
}

.kt-body { padding: 22px 20px; }
.kt-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}
body.lang-ar .kt-body h3 { font-family: 'Amiri', serif; font-size: 24px; }
.kt-body p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

.kt-benefits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.kt-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--off-white);
}
.kt-benefits li i { color: var(--gold); font-size: 12px; }

.kt-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.kt-price {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--gold);
}

/* ── PRICING ── */
.pricing-section { background: var(--bg2); }
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}
.price-row {
  display: flex;
  align-items: center;
  padding: 16px 22px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
  transition: var(--trans);
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(255,255,255,0.03); }
.pr-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(255,255,255,0.1);
  margin: 0 8px;
}
.pr-val {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
}
.gold-row .pr-val, .gold-val {
  color: var(--gold) !important;
}
.gold-row { background: rgba(212,175,55,0.04); }

/* ── SPECIAL OFFER ── */
.offer-section { background: var(--bg); }
.offer-box {
  background: linear-gradient(135deg, #1a0f00, #2d1a00);
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}
.offer-box::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
}
.offer-box::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(192,57,43,0.12), transparent 70%);
}

.offer-fire { font-size: 40px; margin-bottom: 8px; }
.offer-top-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 900;
  margin-bottom: 8px;
}
body.lang-ar .offer-title { font-family: 'Amiri', serif; }
.offer-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.offer-combo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.combo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  min-width: 72px;
}
.combo-item i { font-size: 20px; color: var(--gold); }
.combo-plus {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

.offer-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.offer-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}
.offer-new {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.offer-new small { font-size: 22px; }
.offer-save {
  font-size: 13px;
  font-weight: 700;
  color: var(--red-light);
  background: rgba(192,57,43,0.15);
  padding: 3px 12px;
  border-radius: 99px;
}

.btn-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 99px;
  transition: var(--trans);
  position: relative; z-index: 1;
}
.btn-offer:hover { background: #1ebe57; transform: scale(1.03); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

/* ── GALLERY ── */
.gallery-section { background: var(--bg2); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
}
.gi-main { aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--trans);
}
.gallery-item:hover .gi-overlay { opacity: 1; }
.gi-overlay span { font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }

.gallery-cta { text-align: center; margin-top: 28px; }

/* ── REVIEWS ── */
.reviews-section { background: var(--bg); }
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.r-stars { font-size: 22px; color: var(--gold); letter-spacing: 2px; }
.r-score {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
}
.r-count { font-size: 13px; color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.rv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--trans);
}
.rv-card:hover { border-color: rgba(212,175,55,0.25); transform: translateY(-2px); box-shadow: var(--shadow); }

.rv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rv-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--red), #8b1a12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.rv-meta { flex: 1; }
.rv-meta strong { display: block; font-size: 14px; margin-bottom: 2px; }
.rv-stars { font-size: 12px; color: var(--gold); letter-spacing: 1px; }
.rv-google { color: var(--muted); font-size: 14px; }
.rv-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; font-style: italic; }

/* ── SOCIAL ── */
.social-section { background: var(--bg2); }
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.soc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  transition: var(--trans);
  text-align: center;
}
.soc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.soc-ico { font-size: 28px; }
.soc-card .soc-name { font-size: 15px; font-weight: 700; color: var(--white); }
.soc-card .soc-action, .soc-card .soc-handle { font-size: 12px; color: rgba(255,255,255,0.65); }

.soc-fb { background: linear-gradient(135deg, #1a1f3a, #0f1a2e); border-color: rgba(59,89,152,0.4); }
.soc-fb .soc-ico { color: #4267B2; }
.soc-fb:hover { border-color: #4267B2; }

.soc-ig { background: linear-gradient(135deg, #1a0a1a, #2d0d20); border-color: rgba(225,48,108,0.3); }
.soc-ig .soc-ico { color: #E1306C; }
.soc-ig:hover { border-color: #E1306C; }

.soc-tt { background: linear-gradient(135deg, #0a0a0a, #1a0a12); border-color: rgba(255,255,255,0.15); }
.soc-tt .soc-ico { color: #fff; }
.soc-tt:hover { border-color: rgba(255,255,255,0.4); }

.soc-wa { background: linear-gradient(135deg, #0a1a12, #0f2d1a); border-color: rgba(37,211,102,0.3); }
.soc-wa .soc-ico { color: var(--green-wa); }
.soc-wa:hover { border-color: var(--green-wa); }

/* ── CONTACT ── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.ct-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.ct-icon {
  width: 44px; height: 44px;
  background: rgba(192,57,43,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 18px;
  flex-shrink: 0;
}
.green-ico { color: var(--green-wa) !important; background: rgba(37,211,102,0.1) !important; }
.ct-card h4 { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.ct-card p, .ct-card a { font-size: 14px; color: var(--off-white); }
.ct-card a:hover { color: var(--gold); }

.ct-action-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-call-big {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--radius);
  min-width: 130px;
  transition: var(--trans);
}
.btn-call-big:hover { background: var(--red-light); transform: translateY(-2px); }

.btn-wa-big {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--green-wa);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: var(--radius);
  min-width: 130px;
  transition: var(--trans);
}
.btn-wa-big:hover { background: #1ebe57; transform: translateY(-2px); }

.map-container { position: relative; }
.map-container iframe { display: block; border-radius: var(--radius); }
.map-dir-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--off-white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius);
  transition: var(--trans);
}
.map-dir-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand .ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.ft-socials { display: flex; gap: 10px; }
.ft-socials a {
  width: 38px; height: 38px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 15px;
  transition: var(--trans);
}
.ft-socials a:hover { color: var(--gold); border-color: rgba(212,175,55,0.4); }

.footer-links h4, .footer-contact h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links ul a {
  font-size: 13px;
  color: var(--muted);
  transition: var(--trans);
  display: flex;
  gap: 4px;
}
.footer-links ul a:hover { color: var(--white); }

.ft-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.ft-info-row i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.ft-info-row a { color: var(--muted); }
.ft-info-row a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   TABLET — 600px+
   ============================================================ */
@media (min-width: 600px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-main { grid-column: span 2; }
  .kt-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   DESKTOP — 900px+
   ============================================================ */
@media (min-width: 900px) {
  .nav { display: block; }
  .hamburger { display: none; }

  .hero-content { padding-top: 120px; padding-bottom: 80px; }

  .about-grid { grid-template-columns: 1.2fr 1fr; align-items: center; }

  .service-featured { grid-template-columns: 1fr 1fr; }
  .sf-img { height: auto; min-height: 360px; }

  .contact-grid { grid-template-columns: 1fr 1.3fr; align-items: start; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(4, 1fr); }
  .social-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   LARGE DESKTOP — 1100px+
   ============================================================ */
@media (min-width: 1100px) {
  .section { padding: 96px 0; }
  .gallery-grid { grid-template-columns: 2fr 1fr 1fr; }
  .gi-main { grid-column: 1; aspect-ratio: unset; }
  .gallery-item:not(.gi-main) { aspect-ratio: 1; }
}

/* ============================================================
   ARABIC RTL OVERRIDES
   ============================================================ */
body.lang-ar .hero-content { align-items: flex-end; }
body.lang-ar .hero-eyebrow { flex-direction: row-reverse; }
body.lang-ar .feature-item { flex-direction: row-reverse; }
body.lang-ar .info-tile { flex-direction: row-reverse; text-align: right; }
body.lang-ar .why-card { text-align: right; }
body.lang-ar .svc-card { text-align: right; }
body.lang-ar .kt-benefits li { flex-direction: row-reverse; }
body.lang-ar .kt-price-row { flex-direction: row-reverse; }
body.lang-ar .rv-header { flex-direction: row-reverse; }
body.lang-ar .ct-card { flex-direction: row-reverse; text-align: right; }
body.lang-ar .ft-info-row { flex-direction: row-reverse; text-align: right; }
body.lang-ar .ft-logo { flex-direction: row-reverse; }
body.lang-ar .offer-combo { flex-direction: row-reverse; }
body.lang-ar .nav-list { text-align: right; }
body.lang-ar .header-inner { flex-direction: row-reverse; }
body.lang-ar .hero-stats { flex-direction: row-reverse; }
body.lang-ar .footer-brand .ft-logo { flex-direction: row-reverse; }
body.lang-ar .ft-socials { flex-direction: row-reverse; }
body.lang-ar .hero-cta { flex-direction: row-reverse; }
