/* ═══════════════════════════════════════════
   AIRZONE PRO v2 — MAIN STYLESHEET
   Gold + White | RTL | Cairo Font
═══════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', Tahoma, Arial, sans-serif;
  background: var(--dark, #0c0c0c);
  color: #fff;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:root {
  --gold: #d4af37;
  --gold-light: #f5d66a;
  --gold-dark: #a08020;
  --dark: #0c0c0c;
  --dark2: #121212;
  --dark3: #1a1a1a;
  --text-muted: #aaaaaa;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ═════════════ UTILS ═════════════ */
.az-container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.az-section { padding: 90px 0; }
.az-bg-dark  { background: var(--dark); }
.az-bg-dark2 { background: var(--dark2); }
.az-bg-dark3 { background: var(--dark3); }
.az-bg-white { background: #ffffff; }
.az-gold { color: var(--gold); }
.az-section-head { text-align: center; margin-bottom: 56px; }
.az-label {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.az-section-title {
  font-size: clamp(26px,4vw,40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.az-dark-text { color: #111 !important; }
.az-section-sub { font-size: 17px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.az-dark-sub { color: #555 !important; }
.az-divider {
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ═════════════ BUTTONS ═════════════ */
.az-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.az-btn:hover { transform: translateY(-3px); }
.az-btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #111;
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}
.az-btn-gold:hover { box-shadow: 0 10px 30px rgba(212,175,55,0.6); }
.az-btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.az-btn-wa:hover { box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.az-btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.az-btn-outline:hover { background: rgba(212,175,55,0.1); }

/* ═════════════ NAVBAR ═════════════ */
.az-navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  height: 72px;
  transition: all 0.4s ease;
}
.az-navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.az-nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.az-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.az-nav-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 0 12px rgba(212,175,55,0.4);
}
.az-brand-icon { font-size: 30px; }
.az-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
}
.az-nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.az-nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.25s;
  cursor: pointer;
  display: block;
}
.az-nav-links a:hover { color: var(--gold); background: rgba(212,175,55,0.08); }
.az-nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light)) !important;
  color: #111 !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(212,175,55,0.35) !important;
}
.az-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.5) !important; background: rgba(212,175,55,.08) !important; }
.az-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.az-hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  border-radius: 2px;
}
.az-mobile-menu {
  display: none;
  position: fixed;
  top: 72px; right: 0; left: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 6px;
}
.az-mobile-menu.open { display: flex; }
.az-mm-link {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
}
.az-mm-link:hover { background: rgba(212,175,55,0.1); color: var(--gold); }
.az-mm-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111 !important;
  text-align: center;
  border-radius: 50px;
  font-weight: 800;
}

/* ═════════════ HERO ═════════════ */
.az-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.az-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: azKenBurns 12s ease-in-out infinite alternate;
}
.az-slide.active { opacity: 1; }
.az-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 50%, rgba(10,10,10,0.95) 100%);
}
@keyframes azKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.az-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.az-hero-logo {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.5), 0 0 60px rgba(212,175,55,0.2);
  margin: 0 auto 28px;
  overflow: hidden;
  background: #111;
}
.az-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.az-hero-title {
  font-size: clamp(28px,5vw,58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 3px 20px rgba(0,0,0,0.6);
  transition: opacity 0.5s ease;
}
.az-hero-sub {
  font-size: clamp(16px,2.2vw,22px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  transition: opacity 0.5s ease;
}
.az-hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.az-hero-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.az-trust-item {
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
}
.az-hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.az-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(212,175,55,0.5);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.az-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

/* ═════════════ WHY US ═════════════ */
.az-why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.az-why-card {
  background: var(--dark3);
  border: 1px solid rgba(212,175,55,0.15);
  border-bottom: 3px solid var(--gold);
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
}
.az-why-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(212,175,55,0.12); }
.az-why-icon { font-size: 44px; margin-bottom: 18px; display: block; }
.az-why-card h3 { font-size: 20px; color: var(--gold); margin-bottom: 10px; }
.az-why-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ═════════════ SERVICES ═════════════ */
.az-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.az-service-card {
  background: var(--dark2);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.12);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.az-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,175,55,0.18);
  transform: translateY(-6px);
}
.az-svc-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.az-svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.az-service-card:hover .az-svc-img-wrap img { transform: scale(1.05); }
.az-svc-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--dark2), transparent);
}
.az-svc-icon-badge {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(212,175,55,0.3);
  z-index: 1;
}
.az-svc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.az-svc-body h3 { font-size: 21px; color: var(--gold); margin-bottom: 10px; }
.az-svc-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.az-svc-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.az-svc-btn {
  padding: 11px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
  display: block;
}
.az-svc-btn-wa { background: #25D366; color: #fff; }
.az-svc-btn-call { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #111; }
.az-svc-btn:hover { opacity: 0.88; transform: scale(1.02); }

/* ═════════════ ABOUT ═════════════ */
.az-about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.az-about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.az-about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), transparent 60%);
  border-radius: 26px;
  z-index: -1;
}
.az-about-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.az-about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: #111;
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.az-about-badge span { display: block; font-size: 28px; font-weight: 900; }
.az-about-text p { font-size: 17px; color: var(--text-muted); line-height: 1.9; margin-bottom: 20px; }
.az-about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.az-stat-box {
  background: var(--dark3);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.az-stat-num { font-size: 32px; font-weight: 900; color: var(--gold); display: block; }
.az-stat-lbl { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ═════════════ OFFERS ═════════════ */
.az-offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.az-offer-card {
  background: var(--dark2);
  border-radius: 22px;
  padding: 36px 28px;
  border: 1px solid rgba(212,175,55,0.2);
  position: relative;
  text-align: center;
  transition: all 0.3s;
}
.az-offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  border-radius: 22px 22px 0 0;
}
.az-offer-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(212,175,55,0.2); border-color: var(--gold); }
.az-offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #111;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 20px;
}
.az-offer-card h3 { font-size: 22px; color: #fff; margin-bottom: 12px; }
.az-offer-card > p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.az-offer-price { margin-bottom: 24px; }
.az-price-main { font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; }
.az-price-cur { font-size: 22px; font-weight: 700; }
.az-price-old { font-size: 18px; color: #666; text-decoration: line-through; margin-top: 4px; }

/* ═════════════ TESTIMONIALS ═════════════ */
.az-test-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.az-test-card {
  background: var(--dark3);
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(212,175,55,0.1);
  transition: all 0.3s;
}
.az-test-card:hover { border-color: rgba(212,175,55,0.35); box-shadow: 0 10px 30px rgba(212,175,55,0.1); transform: translateY(-4px); }
.az-test-quote { font-size: 60px; color: rgba(212,175,55,0.12); font-family: serif; line-height: 0.8; margin-bottom: 16px; display: block; }
.az-stars { color: var(--gold); font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.az-test-text { font-size: 15px; color: #ccc; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.az-test-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(212,175,55,0.12); padding-top: 16px; }
.az-test-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: #111; flex-shrink: 0;
}
.az-test-name { font-size: 16px; font-weight: 700; color: #fff; }
.az-test-city { font-size: 13px; color: var(--gold); }

/* ═════════════ WHITE SECTION OVERRIDES ═════════════ */
.az-bg-white { background: #fff; }
.az-bg-white .az-label { background: rgba(212,175,55,0.12); }
.az-bg-white .az-section-title { color: #111; }
.az-bg-white .az-section-sub  { color: #555; }

/* Why cards on white */
.az-bg-white .az-why-card {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.25);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.az-bg-white .az-why-card:hover { box-shadow: 0 14px 40px rgba(212,175,55,0.18); }
.az-bg-white .az-why-card p { color: #555; }

/* About on white */
.az-bg-white .az-about-text p { color: #444; }
.az-bg-white .az-stat-box {
  background: #f9f6ee;
  border: 1px solid rgba(212,175,55,0.3);
}
.az-bg-white .az-stat-lbl { color: #666; }
.az-bg-white .az-btn-outline { border-color: var(--gold-dark); color: var(--gold-dark); }

/* Testimonial cards on white */
.az-bg-white .az-test-card {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.az-bg-white .az-test-card:hover { box-shadow: 0 12px 36px rgba(212,175,55,0.18); }
.az-bg-white .az-test-text { color: #444; }
.az-bg-white .az-test-name { color: #111; }
.az-bg-white .az-test-author { border-top-color: rgba(212,175,55,0.2); }
.az-bg-white .az-test-quote { color: rgba(212,175,55,0.18); }

/* FAQ on white */
.az-bg-white .az-faq-item {
  background: #fff;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.az-bg-white .az-faq-item.open { border-color: var(--gold); box-shadow: 0 6px 24px rgba(212,175,55,0.12); }
.az-bg-white .az-faq-q-text { color: #111; }
.az-bg-white .az-faq-q:hover { background: rgba(212,175,55,0.05); }
.az-bg-white .az-faq-a { color: #555; }

/* Area tags on white */
.az-bg-white .az-area-tag {
  background: #f9f6ee;
  border-color: rgba(212,175,55,0.35);
}
.az-bg-white .az-area-tag:hover { background: rgba(212,175,55,0.12); }

/* ═════════════ ARTICLES (white bg) ═════════════ */
.az-articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.az-article-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.az-article-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(212,175,55,0.2); border-color: var(--gold); }
.az-article-img { height: 200px; overflow: hidden; }
.az-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.az-article-card:hover .az-article-img img { transform: scale(1.05); }
.az-article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.az-article-meta { display: flex; justify-content: space-between; margin-bottom: 12px; }
.az-article-cat { background: rgba(212,175,55,0.12); color: #7a6010; padding: 4px 12px; border-radius: 50px; font-size: 13px; font-weight: 700; }
.az-article-date { font-size: 13px; color: #999; }
.az-article-body h3 { font-size: 19px; color: #111; margin-bottom: 10px; line-height: 1.4; font-weight: 700; }
.az-article-body > p { font-size: 14px; color: #666; line-height: 1.7; flex: 1; margin-bottom: 18px; }
.az-article-link { color: #7a6010; font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.az-article-link:hover { color: var(--gold); }

/* ═════════════ FAQ ═════════════ */
.az-faq-list { max-width: 820px; margin: 0 auto; }
.az-faq-item {
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.az-faq-item.open { border-color: rgba(212,175,55,0.4); box-shadow: 0 6px 20px rgba(212,175,55,0.08); }
.az-faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.az-faq-q:hover { background: rgba(212,175,55,0.04); }
.az-faq-q-text { font-size: 17px; font-weight: 700; color: #fff; flex: 1; }
.az-faq-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}
.az-faq-item.open .az-faq-arrow { transform: rotate(45deg); background: rgba(212,175,55,0.2); }
.az-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}
.az-faq-item.open .az-faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ═════════════ AREAS ═════════════ */
.az-areas-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.az-area-tag {
  padding: 11px 24px;
  background: var(--dark3);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  transition: all 0.25s;
}
.az-area-tag:hover { background: rgba(212,175,55,0.1); box-shadow: 0 6px 16px rgba(212,175,55,0.2); transform: translateY(-2px); }

/* ═════════════ CTA BANNER ═════════════ */
.az-cta-banner {
  background: linear-gradient(135deg, #111 0%, #1a1a0a 50%, #111 100%);
  border-top: 1px solid rgba(212,175,55,0.25);
  border-bottom: 1px solid rgba(212,175,55,0.25);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.az-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 70%);
}
.az-cta-banner h2 { font-size: clamp(24px,4vw,42px); color: #fff; margin-bottom: 14px; font-weight: 800; position: relative; }
.az-cta-banner > .az-container > p { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; position: relative; }
.az-cta-btns { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; position: relative; }

/* ═════════════ CONTACT ═════════════ */
.az-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.az-contact-info h3 { font-size: 26px; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
.az-contact-info > p { font-size: 16px; color: var(--text-muted); margin-bottom: 30px; line-height: 1.7; }
.az-contact-links { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.az-contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--dark3);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.25s;
  direction: ltr;
}
.az-contact-link:hover { border-color: var(--gold); background: rgba(212,175,55,0.06); transform: translateX(-4px); }
.az-contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.az-icon-wa { background: rgba(37,211,102,0.15); }
.az-icon-call { background: rgba(212,175,55,0.15); }
.az-contact-form {
  background: var(--dark3);
  border-radius: 22px;
  padding: 36px;
  border: 1px solid rgba(212,175,55,0.15);
}
.az-contact-form h3 { font-size: 22px; color: var(--gold); margin-bottom: 24px; font-weight: 800; }
.az-form-group { margin-bottom: 18px; }
.az-form-group label { display: block; font-size: 14px; color: #ccc; margin-bottom: 8px; font-weight: 600; }
.az-form-group input, .az-form-group textarea, .az-form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark2);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-family: 'Cairo', sans-serif;
  transition: border-color 0.25s;
  outline: none;
  direction: rtl;
}
.az-form-group input:focus, .az-form-group textarea:focus, .az-form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.az-form-group textarea { height: 110px; resize: none; }
.az-form-group select option { background: #1a1a1a; }

/* ═════════════ FOOTER ═════════════ */
.az-footer { background: #000; border-top: 2px solid var(--gold); padding: 56px 0 30px; }
.az-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.az-footer-logo { width: 72px; height: 72px; border-radius: 50%; border: 2px solid var(--gold); margin-bottom: 16px; object-fit: cover; }
.az-footer-logo-placeholder { font-size: 50px; margin-bottom: 16px; }
.az-footer-brand h3 { font-size: 22px; color: var(--gold); font-weight: 800; margin-bottom: 10px; }
.az-footer-brand > p { font-size: 15px; color: #777; line-height: 1.7; margin-bottom: 16px; }
.az-footer-phone { color: #fff; font-size: 20px; font-weight: 700; direction: ltr; display: inline-block; }
.az-footer-col h4 { font-size: 17px; color: var(--gold); font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(212,175,55,0.2); }
.az-footer-col ul { list-style: none; }
.az-footer-col ul li { margin-bottom: 10px; }
.az-footer-col ul li a { color: #888; font-size: 15px; transition: color 0.2s; cursor: pointer; }
.az-footer-col ul li a:hover { color: var(--gold); }
.az-footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 24px; text-align: center; }
.az-footer-copy { font-size: 14px; color: #555; margin-bottom: 8px; }
.az-footer-designer { font-size: 14px; color: #666; }
.az-footer-designer a { color: var(--gold); font-weight: 700; transition: all 0.25s; }
.az-footer-designer a:hover { color: var(--gold-light); text-decoration: underline; }

/* ═════════════ FLOATING WA ═════════════ */
.az-float-wa {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 62px; height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  transition: all 0.3s;
  animation: azWaPulse 2.5s ease-in-out infinite;
}
.az-float-wa:hover { transform: scale(1.12) translateY(-4px); box-shadow: 0 10px 35px rgba(37,211,102,0.7); }
@keyframes azWaPulse {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ═════════════ RESPONSIVE ═════════════ */
@media (max-width: 1100px) {
  .az-why-grid { grid-template-columns: repeat(2,1fr); }
  .az-test-grid { grid-template-columns: repeat(2,1fr); }
  .az-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .az-services-grid, .az-offers-grid, .az-articles-grid { grid-template-columns: repeat(2,1fr); }
  .az-about-wrap, .az-contact-wrap { grid-template-columns: 1fr; }
  .az-about-img-wrap img { height: 360px; }
  .az-nav-links { display: none; }
  .az-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .az-services-grid, .az-offers-grid, .az-articles-grid, .az-test-grid, .az-why-grid, .az-about-stats { grid-template-columns: 1fr; }
  .az-hero-title { font-size: 28px; }
  .az-hero-btns { flex-direction: column; }
  .az-hero-btns .az-btn { width: 100%; }
  .az-cta-btns { flex-direction: column; align-items: center; }
  .az-footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .az-section { padding: 60px 0; }
}
