@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Tajawal:wght@300;400;500;700;900&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
  --gold: #1A3263;
  --gold-light: #2C4E8A;
  --gold-shimmer: #4A6FB3;

  --gold-10: rgba(26,50,99,0.10);
  --gold-20: rgba(26,50,99,0.20);
  --gold-40: rgba(26,50,99,0.40);

  --bg-dark: #FBF5DD;
  --bg-deeper: #FFF6F6;
  --bg-warm: #FFFFFF;

  --white: #1A3263;
  --white-70: rgba(26,50,99,0.70);
  --white-50: rgba(26,50,99,0.50);
  --white-20: rgba(26,50,99,0.20);
  --white-04: rgba(26,50,99,0.04);

  --wa-green: #25D366;

  --radius: 16px;
  --radius-sm: 10px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Tajawal', sans-serif;
  direction: rtl;
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ========== ANIMATIONS ========== */
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197,160,89,0.6); transform: scale(1); }
  50%       { box-shadow: 0 0 0 12px rgba(197,160,89,0); transform: scale(1.04); }
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50%       { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
@keyframes phoneRing {
  0%,100%{ transform: rotate(0deg); }
  10%{ transform: rotate(-10deg); }
  20%{ transform: rotate(10deg); }
  30%{ transform: rotate(-8deg); }
  40%{ transform: rotate(8deg); }
  50%{ transform: rotate(0deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lockIn {
  0%  { transform: translateY(-20px) scaleY(1.1); opacity: 0; }
  60% { transform: translateY(4px) scaleY(0.97); opacity: 1; }
  100%{ transform: translateY(0) scaleY(1); opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes rotateMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes floatBadge {
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-10px); }
}
@keyframes shimmerLine {
  0%  { left: -100%; }
  100%{ left: 200%; }
}
@keyframes countdownTick {
  from{ transform:scale(1.2); }
  to  { transform:scale(1); }
}
@keyframes popupIn {
  from{ opacity:0; transform:scale(0.85) translateY(20px); }
  to  { opacity:1; transform:scale(1) translateY(0); }
}

/* ========== UTILITY CLASSES ========== */
.gold-text {
  background: linear-gradient(90deg, var(--gold), var(--gold-shimmer), var(--gold), var(--gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  color: #ffffff;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  animation: goldShimmer 3s linear infinite;
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(197,160,89,0.45);
}
.btn-gold:disabled {
  background: #333;
  color: #666;
  animation: none;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: white;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.40);
  background: #1fb855;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid var(--gold-40);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-outline-gold:hover {
  background: var(--gold-10);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.glass-card {
  background: var(--white-04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius);
}

.pulse-gold { animation: pulseRing 2s ease-in-out infinite; }
.pulse-green { animation: pulseGreen 2s ease-in-out infinite; }
.phone-ring { animation: phoneRing 2s ease-in-out infinite; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-40);
  background: var(--gold-10);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseRing 2s ease-in-out infinite;
}

.section-tag {
  display: inline-block;
  border: 1px solid var(--gold-40);
  background: var(--gold-10);
  color: var(--gold);
  padding: 5px 16px;
  border-radius: 50px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }

.section-header h2 {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-header p {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 560px;
  margin: 0 auto;
}

.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(to left, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 20px auto 0;
  position: relative;
  overflow: hidden;
}
.gold-divider::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60px; height: 100%;
  background: rgba(255,255,255,0.6);
  animation: shimmerLine 2.5s ease-in-out infinite;
}

/* ========== NAVBAR ========== */
nav {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-20);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-40);
  box-shadow: 0 0 14px rgba(197,160,89,0.30);
  transition: box-shadow 0.3s ease;
}
.nav-logo img:hover {
  box-shadow: 0 0 22px rgba(197,160,89,0.55);
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white-70);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: var(--gold-10);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wa-btn {
  width: 42px; height: 42px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.nav-wa-btn:hover {
  background: rgba(37,211,102,0.30);
  transform: scale(1.1);
}
.nav-wa-btn svg { width: 20px; height: 20px; fill: var(--wa-green); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; right: 0; left: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-20);
  padding: 24px;
  z-index: 999;
  animation: slideDown 0.3s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  color: var(--white-70);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); border-color: var(--gold-20); background: var(--gold-10); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--bg-deeper);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img-hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(40%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,160,89,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
135deg,
rgba(255,246,246,0.92) 0%,
rgba(251,245,221,0.75) 50%,
rgba(255,246,246,0.92) 100%
);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.hero-text { animation: fadeInUp 0.8s ease both; }
.hero-text .badge { margin-bottom: 28px; }
.hero-text h1 {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  animation: lockIn 0.9s ease 0.2s both;
}
.hero-text p {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.1rem;
  color: var(--white-70);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  display: block;
}
.hero-stat .num.gold-text { display: block; }
.hero-stat .lbl {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.85rem;
  color: var(--white-50);
  display: block;
  margin-top: -4px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
}
.hero-phone .ph-lbl {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.82rem;
  color: var(--white-50);
}
.hero-phone .ph-num {
  font-family: monospace;
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  direction: ltr;
}
.hero-phone svg { fill: var(--gold); width: 18px; height: 18px; }

/* Hero visual card */
.hero-visual { position: relative; animation: fadeInRight 0.8s ease 0.3s both; }
.hero-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gold-20);
}
.hero-img-wrap img {
  width: 100%;
  object-fit: cover;
  height: 440px;
  filter: brightness(0.8);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 50%);
}
.hero-float-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  animation: floatBadge 3s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(197,160,89,0.40);
}
.hero-discount-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--bg-deeper);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 30px rgba(197,160,89,0.35);
  animation: pulseRing 2s ease-in-out infinite;
}
.hero-discount-badge .pct {
  font-family: 'Cairo', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-discount-badge .pct-sub {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.65rem;
  color: var(--white-70);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.scroll-indicator.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.scroll-indicator span {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.78rem;
  color: var(--white-50);
  letter-spacing: 1px;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid var(--gold-40);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5px;
  overflow: hidden;
  box-sizing: border-box;
}
.scroll-mouse::after {
  content: '';
  width: 4px; height: 6px;
  background: var(--gold);
  border-radius: 4px;
  flex-shrink: 0;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0);    opacity: 1; }
  60%  { transform: translateY(12px); opacity: 0.3; }
  61%  { transform: translateY(0);    opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* ========== MARQUEE OFFER BANNER ========== */
.offer-marquee {
  background: var(--gold-10);
  border-top: 1px solid var(--gold-20);
  border-bottom: 1px solid var(--gold-20);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: rotateMarquee 22s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-light);
  flex-shrink: 0;
}
.marquee-track .sep { color: var(--gold-40); }

/* ========== SERVICES SECTION ========== */
.services-section { background: var(--bg-warm); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white-04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-10), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: var(--gold-40);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(197,160,89,0.12);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}
.service-icon-wrap svg { width: 30px; height: 30px; }
.service-card h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.93rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-cta {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.service-card:hover .service-cta { gap: 12px; }

/* ========== WHY US ========== */
.whyus-section { background: var(--bg-dark); }
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.whyus-visual { position: relative; }
.whyus-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gold-20);
  position: relative;
}
.whyus-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: brightness(0.75);
}
.whyus-stats-overlay {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 12px;
}
.whyus-stat-pill {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  text-align: center;
}
.whyus-stat-pill .n {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
}
.whyus-stat-pill .l {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.78rem;
  color: var(--white-50);
}
.whyus-text .badge { margin-bottom: 20px; }
.whyus-text h2 {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.4;
}
.features-list { display: flex; flex-direction: column; gap: 24px; }
.feature-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-28px);
  transition: all 0.5s ease;
}
.feature-row.revealed {
  opacity: 1;
  transform: translateX(0);
}
.feature-icon {
  width: 48px; height: 48px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.feature-info h4 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.feature-info p {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.65;
}
.whyus-btns { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

/* ========== BOOKING FORM ========== */
.booking-section { background: var(--bg-warm); }
.form-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 20px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white-70);
}
input, select, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  direction: rtl;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-40);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
}
input.valid-input { border-color: #22c55e; }
input.invalid-input { border-color: #ef4444; }
select option { background: #1a1a1a; color: white; }
textarea { resize: vertical; min-height: 100px; }
.input-feedback {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.82rem;
  margin-top: -4px;
}
.input-feedback.ok { color: #22c55e; }
.input-feedback.err { color: #ef4444; }

/* Upload area */
.upload-area {
  border: 2px dashed var(--gold-40);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.upload-area:hover { background: var(--gold-10); border-color: var(--gold); }
.upload-area svg { width: 36px; height: 36px; fill: var(--gold); margin: 0 auto 10px; }
.upload-area p { font-family: 'Tajawal', sans-serif; color: var(--white-50); font-size: 0.9rem; }
.upload-area .ua-hint { font-size: 0.78rem; color: var(--white-50); margin-top: 6px; }
.img-preview-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.img-preview-item {
  position: relative;
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--gold-20);
}
.img-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.img-preview-item .remove-img {
  position: absolute;
  top: 2px; right: 2px;
  background: rgba(0,0,0,0.75);
  border: none;
  color: white;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
  font-size: 1.05rem;
  padding: 16px;
  justify-content: center;
}

/* Success state */
.success-state {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.success-state .check-circle {
  width: 72px; height: 72px;
  background: var(--gold-10);
  border: 2px solid var(--gold-40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-state .check-circle svg { width: 36px; height: 36px; fill: var(--gold); }
.success-state h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}
.success-state p { font-family: 'Tajawal', sans-serif; color: var(--white-70); }

.active-buyers-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.9rem;
  color: var(--white-70);
}
.active-buyers-badge .green-dot {
  width: 10px; height: 10px;
  background: var(--wa-green);
  border-radius: 50%;
  animation: pulseGreen 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ========== AREAS SECTION ========== */
.areas-section { background: var(--bg-deeper); }
.areas-bg-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
.areas-bg-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(40%);
}
.areas-bg-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, var(--bg-deeper), rgba(10,10,10,0.5), var(--bg-deeper));
}
.areas-bg-overlay h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--white);
  text-align: center;
}
.emirate-block { margin-bottom: 40px; }
.emirate-block h4 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.emirate-block h4 svg { width: 16px; height: 16px; fill: var(--gold); }
.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.city-tag {
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--gold-20);
  background: var(--gold-10);
  color: var(--white-70);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: default;
  transition: all 0.3s ease;
}
.city-tag:hover {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  font-weight: 700;
}

/* ========== CONTACT SECTION ========== */
.contact-section { background: var(--bg-dark); }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card {
  padding: 40px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease;
}
.contact-card:hover { transform: translateY(-6px); }
.contact-card .icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-card svg { width: 28px; height: 28px; }
.contact-card h4 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white-50);
  margin-bottom: 8px;
}
.contact-card .val {
  font-family: monospace;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  direction: ltr;
}

.cta-banner {
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(197,160,89,0.15) 0%, rgba(197,160,89,0.05) 50%, rgba(197,160,89,0.15) 100%);
  border: 1px solid var(--gold-20);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(197,160,89,0.15) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.05rem;
  color: var(--white-70);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
footer {
  background: var(--bg-deeper);
  padding-top: 64px;
  border-top: 1px solid var(--gold-20);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  margin-bottom: 0;
}
.footer-brand img {
  height: 72px;
  width: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-20);
  margin-bottom: 16px;
  box-shadow: 0 0 16px rgba(197,160,89,0.20);
}
.footer-brand p {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.05rem;
  color: #1A3263;
  line-height: 2;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-20);
  background: var(--gold-10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover { border-color: var(--gold); background: var(--gold-20); }
.footer-social svg { width: 18px; height: 18px; fill: var(--gold); }
.footer-col h4 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-20);
}
.footer-col ul li a,
.footer-col ul li span {
  font-family: 'Tajawal', sans-serif;
  font-size: 1rem;
  color: #1A3263;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: #1A3263;
}
.footer-col ul li a::before {
  content: '›';
  color: #1A3263;
}

.footer-shimmer-divider {
  height: 1px;
  background: linear-gradient(to left, transparent, var(--gold-40), transparent);
  margin: 0;
  position: relative;
  overflow: hidden;
}
.footer-shimmer-divider::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(197,160,89,0.9), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.85rem;
  color:#0D530E;
}
.footer-credit {
  font-family: 'Cairo', sans-serif;
  font-size: 0.85rem;
  color: #1A3263;
}
.footer-credit a { color: var(--gold); font-weight: 700; }
.footer-credit a:hover { color: var(--gold-light); }

/* ========== FLOATING BUTTONS ========== */
.float-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
}
.float-wa a {
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s ease;
  animation: pulseGreen 2s ease-in-out infinite;
}
.float-wa a:hover { transform: scale(1.1); }
.float-wa svg { width: 30px; height: 30px; fill: white; }
.float-wa .tooltip {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.9);
  border: 1px solid rgba(37,211,102,0.35);
  color: white;
  font-family: 'Cairo', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.float-wa:hover .tooltip { opacity: 1; }

.float-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
}
.float-phone a {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(197,160,89,0.45);
  transition: transform 0.3s ease;
  animation: phoneRing 2s ease-in-out infinite;
}
.float-phone a:hover { transform: scale(1.1); animation: none; }
.float-phone svg { width: 26px; height: 26px; fill: #ffffff; }
.float-phone .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.9);
  border: 1px solid var(--gold-40);
  color: white;
  font-family: 'Cairo', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.float-phone:hover .tooltip { opacity: 1; }

/* ========== OFFER POPUP ========== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.popup-card {
  background: #FFF6F6;
  border: 1px solid var(--gold-20);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: popupIn 0.45s ease both;
}
.popup-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  color: var(--white-70);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.popup-close:hover { background: var(--gold-20); color: white; }
.popup-discount {
  font-family: 'Cairo', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.popup-discount small {
  font-size: 1.2rem;
  display: block;
  color: var(--white-70);
  margin-top: 4px;
}
.popup-card h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}
.popup-card p {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  color: var(--white-70);
  margin-bottom: 24px;
}
.countdown-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.countdown-box {
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 56px;
  text-align: center;
}
.countdown-box .cd-num {
  font-family: 'Cairo', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.countdown-box .cd-lbl {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.72rem;
  color: var(--white-50);
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: var(--bg-deeper);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,160,89,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(197,160,89,0.08) 0%, transparent 70%);
}
.page-hero h1 {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-family: 'Tajawal', sans-serif;
  font-size: 1.1rem;
  color: var(--white-70);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: var(--white-50);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--white-70); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold-40); }

/* ========== PAGE TRANSITION ========== */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageFadeIn 0.3s ease-out both; }

/* ========== AREAS PAGE ========== */
.areas-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.emirates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ========== MOBILE MENU WA BUTTON ========== */
.mobile-menu .wa-menu-link {
  background: rgba(37,211,102,0.12) !important;
  border-color: rgba(37,211,102,0.40) !important;
  color: #25d366 !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 4px;
  font-weight: 700 !important;
}
.mobile-menu .wa-menu-link:hover {
  background: rgba(37,211,102,0.25) !important;
  border-color: rgba(37,211,102,0.70) !important;
  color: #25d366 !important;
  transform: none;
}

/* ========== SERVICES ICON GRID ========== */
.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.services-icon-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  padding: 28px 12px 20px;
  text-align: center;
  border-radius: 18px;
  transition: all 0.3s ease;
  cursor: default;
}
.services-icon-tile:hover {
  border-color: var(--gold-40);
  transform: translateY(-6px);
  background: var(--gold-10);
}
.sit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.services-icon-tile p {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--white);
  margin: 0;
}

/* Services CTA card (bottom of teaser section) */
.services-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px 40px;
  border-radius: 20px;
}
.services-cta-card h3 {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 8px;
}
.services-cta-card p {
  font-family: 'Tajawal', sans-serif;
  color: var(--white-70);
  font-size: 0.97rem;
}
.services-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* Service detail cards (services.html) */
.svc-detail-card {
  display: grid;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-20);
  backdrop-filter: blur(20px);
}
.svc-detail-card.icon-right { grid-template-columns: 280px 1fr; }
.svc-detail-card.icon-left  { grid-template-columns: 1fr 280px; }
.svc-detail-icon {
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.svc-detail-body {
  padding: 48px 40px;
}
.svc-detail-body .section-tag { margin-bottom: 14px; }
.svc-detail-body h3 {
  font-family: 'Cairo', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.svc-detail-body > p {
  font-family: 'Tajawal', sans-serif;
  color: var(--white-70);
  line-height: 1.9;
  margin-bottom: 24px;
}
.svc-detail-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.svc-detail-body ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: 'Tajawal', sans-serif;
  color: var(--white-70);
}
.svc-detail-body ul li::before {
  content: '✓';
  color: var(--gold);
  flex-shrink: 0;
}
.svc-detail-icon p {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ========== RESPONSIVE ========== */
html, body { overflow-x: hidden; }

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .whyus-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .scroll-indicator { display: none; }
  .nav-links, .nav-actions .btn-gold { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 32px 20px; }
  .cta-banner h2 { font-size: 1.3rem; }
  .form-wrap { padding: 32px 20px; }
/* تحسين الفوتر على الموبايل */
.footer-brand p {
    font-size: 1rem;
    color: #1A3263;
    line-height: 2;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #1A3263;
}

.footer-col ul li a,
.footer-col ul li span {
    font-size: 1rem;
    color: #1A3263;
    font-weight: 500;
}

.footer-col ul li a::before {
    color: #1A3263;
}

.footer-bottom p {
    color: #0D530E !important;
    font-size: 1rem;
    font-weight: 500;
}

.footer-credit a {
    color: #1A3263;
    font-weight: 700;
}

.footer-social svg {
    fill: #1A3263;
}


  /* Areas stats → 2 columns on mobile */
  .areas-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 40px; }
  .emirates-grid { grid-template-columns: 1fr; }

  /* Services icon grid → 2 columns on mobile */
  .services-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Services CTA card → stack on mobile */
  .services-cta-card {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 20px;
  }
  .services-cta-btns { flex-direction: row; flex-wrap: wrap; }

  /* Service detail cards → single column on mobile */
  .svc-detail-card.icon-right,
  .svc-detail-card.icon-left { grid-template-columns: 1fr; }
  .svc-detail-icon { display: none; }
  .svc-detail-body { padding: 28px 20px; }
  .svc-detail-body h3 { font-size: 1.25rem; }

  /* Whyus visual hidden on mobile */
  .whyus-visual { display: none; }
  .whyus-text h2 { font-size: 1.4rem; }

  /* Hero adjustments */
  .hero-text h1 { font-size: 1.8rem; }
  .hero-phone { flex-wrap: wrap; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 1.4rem; }

  /* Page hero */
  .page-hero { padding: 120px 0 56px; }
  .page-hero h1 { font-size: 1.7rem; }

  /* Areas grid */
  .areas-bg-img { height: 160px; }
}

@media (max-width: 480px) {
  .hero-btns, .cta-btns, .whyus-btns { flex-direction: column; }
  .hero-stats { gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 0 14px; }
  .popup-card { padding: 32px 20px; }
  .popup-discount { font-size: 3rem; }
  .countdown-wrap { gap: 8px; }
  .countdown-box { min-width: 44px; padding: 8px 10px; }
  .countdown-box .cd-num { font-size: 1.3rem; }
  .services-cta-btns { flex-direction: column; }
}
