/* ============================================
   AHMAD NATOUR — PREMIUM REAL ESTATE WEBSITE
   Arabic RTL / Luxury Minimal Design
   ============================================ */

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

:root {
  --white: #ffffff;
  --off-white: #faf9f7;
  --light: #f4f2ef;
  --black: #0d0d0d;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --gray-light: #e8e5e0;
  --gold: #b8963e;
  --gold-light: #d4af6a;
  --gold-pale: #f5ead8;
  --green: #1e3a2f;
  --green-mid: #2d5a45;
  --green-light: #e8f0eb;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-ar: 'Tajawal', 'Arial', sans-serif;

  --nav-h: 76px;
  --section-pad: 128px; /* 16px * 8 */
  --container: 1160px;
  --radius: 4px;
  --radius-lg: 12px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 128px;

  --shadow-sm: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-ar);
  background: var(--white);
  color: var(--black);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.fade-up { opacity: 0; animation: fadeUp 0.8s forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }
.delay-5 { animation-delay: 0.75s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1.visible { transition-delay: 0.1s; }
.reveal.delay-2.visible { transition-delay: 0.2s; }
.reveal.delay-3.visible { transition-delay: 0.3s; }
.reveal.delay-4.visible { transition-delay: 0.4s; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ar);
  font-weight: 700;
}
.logo-ar {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0;
  flex-shrink: 0;
}
.logo-divider {
  width: 1px;
  height: 20px;
  background: var(--gray-light);
}
.logo-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-inline-start: auto;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .logo-text { color: var(--white); }
.navbar:not(.scrolled) .logo-divider { background: rgba(255,255,255,0.3); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-inline-start: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: var(--white); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px 24px 28px;
  border-top: 1px solid var(--gray-light);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--light);
}
.mobile-cta {
  margin-top: 16px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green) 0%, #122619 40%, #0a1a10 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,62,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,62,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-bg-lines::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,62,0.12) 0%, transparent 70%);
}
.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) clamp(20px, 5vw, 60px) 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-image-wrap {
  display: flex;
  justify-content: center;
}
.hero-img-frame {
  position: relative;
  width: clamp(260px, 35vw, 400px);
  aspect-ratio: 3/4;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  filter: brightness(0.92) contrast(1.05);
}
.hero-img-accent {
  position: absolute;
  inset: -0px -0px -0px 0px;
  border: 1.5px solid rgba(184,150,62,0.4);
  border-radius: var(--radius-lg);
  z-index: 1;
}
.hero-content {
  color: var(--white);
}
.hero-label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 400;
}
.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
  margin-right: 0;
}
.hero-headline {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
}
.hero-headline em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}
.hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions {
  margin-bottom: 50px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1.5px solid var(--gold);
  cursor: pointer;
  font-family: var(--font-ar);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--white);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(184,150,62,0.3);
}
.btn-primary:active {
  transform: translateY(-1px);
}
.nav-cta:hover, .mobile-cta:hover {
  transform: scale(1.02);
  transition: transform 0.2s ease;
}
.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}
.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  margin: 0 28px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  animation: scrollLine 2s ease infinite;
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
section { padding: var(--section-pad) 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-tag::before { right: 100%; margin-right: -20px; }
.section-tag::after  { left: 100%; margin-left: -20px; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 500;
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-sm);
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   SERVICES / SEGMENTATION
   ============================================ */
.services {
  background: var(--off-white);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-mid));
  transform: scaleX(0);
  transition: transform var(--transition-slow);
  transform-origin: right;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}
.service-card:hover .card-icon {
  background: var(--green);
  color: var(--white);
}
.card-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}
.card-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  flex: 1;
}
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  margin-top: 8px;
  transition: gap var(--transition), color var(--transition);
}
.card-cta:hover {
  gap: 14px;
  color: var(--gold);
}

/* ============================================
   WHY SECTION
   ============================================ */
.why {
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-intro {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 520px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.4;
}
.why-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.why-visual {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.quote-block {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
.quote-block::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(184,150,62,0.08);
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
  display: block;
}
.quote-block blockquote {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.quote-block cite {
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-style: normal;
}
.trust-badges {
  display: flex;
  gap: 16px;
}
.badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: all var(--transition);
}
.badge:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  background: var(--black);
  color: var(--white);
}
.process .section-tag { color: var(--gold-light); }
.process .section-title { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,0.5); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 32px;
  position: relative;
}
.step-connector {
  position: absolute;
  top: 56px;
  left: 0;
  width: 1px;
  height: 40%;
  background: rgba(184,150,62,0.2);
}
.step-number {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  color: rgba(184,150,62,0.25);
  line-height: 1;
  margin-bottom: 24px;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 56px;
  left: -1px;
  width: 100%;
  height: 1px;
  background: rgba(184,150,62,0.15);
}

/* ============================================
   AREAS SECTION
   ============================================ */
.areas {
  background: var(--off-white);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.area-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: height var(--transition-slow);
}
.area-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.area-card:hover::after { height: 100%; }
.area-num {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
}
.area-info { flex: 1; }
.area-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.area-desc {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.area-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.area-tag-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-light);
  padding: 4px 12px;
  border-radius: 20px;
}
.area-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  transition: letter-spacing var(--transition);
}
.area-link:hover { letter-spacing: 0.05em; }

/* ============================================
   INSIGHTS SECTION
   ============================================ */
.insights {
  background: var(--white);
}
.insights-header {
  margin-bottom: 56px;
}
.insights-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.insight-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.insight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.insight-card:hover::before { opacity: 1; }
.insight-card:hover .insight-icon,
.insight-card:hover h4,
.insight-card:hover p { color: var(--white); position: relative; z-index: 1; }
.insight-icon {
  color: var(--gold);
  margin-bottom: 20px;
  transition: color var(--transition);
}
.insight-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  transition: color var(--transition);
}
.insight-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.8;
  transition: color var(--transition);
}
.insight-card:hover p { color: rgba(255,255,255,0.75); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--off-white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.contact .btn-primary {
  background: var(--green);
  border-color: var(--green);
  margin-bottom: 32px;
  font-size: 15px;
}
.contact .btn-primary:hover {
  background: transparent;
  color: var(--green);
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--gold); }
.contact-link-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
  flex-shrink: 0;
}
.contact-link:hover .contact-link-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.contact-social {
  padding-top: 20px;
}
.social-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
  font-weight: 600;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateX(-4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-copy { font-size: 13px; }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2.5s ease-out infinite;
  z-index: -1;
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-visual { position: static; }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step::after { display: none; }
  .step-connector { display: none; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 40px);
    gap: 36px;
  }
  .hero-image-wrap { order: -1; }
  .hero-img-frame {
    width: clamp(200px, 55vw, 300px);
    aspect-ratio: 3/4;
  }
  .hero-divider { margin: 0 auto 28px; }
  .hero-actions { display: flex; justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }

  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .insights-cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; }

  .section-tag::before, .section-tag::after { display: none; }

  .whatsapp-float { bottom: 20px; left: 20px; width: 54px; height: 54px; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 38px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .stat-sep { display: none; }
  .service-card { padding: 32px 24px; }
  .area-card { padding: 28px 24px; }
  .process-step { padding: 28px 20px; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   CONSULTATION FORM COMPONENT
   ============================================ */
.contact-form-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.consultation-form {
  display: grid;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-ar);
  font-size: 15px;
  transition: border-color var(--transition);
  background: var(--off-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-submit {
  margin-top: var(--space-sm);
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .form-container {
    padding: var(--space-md);
  }
}
