/* استيراد الخطوط العربية الاحترافية */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');

/* إعدادات عامة */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Tajawal', 'Almarai', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  direction: rtl;
  text-align: right;
  background: #ffffff;
  color: #2d3748;
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* الألوان الأساسية - تصميم احترافي أبيض وأزرق */
:root {
  /* الألوان الأساسية */
  --primary-color: #1976d2;
  --primary-light: #42a5f5;
  --primary-dark: #1565c0;
  --secondary-color: #2196f3;
  --secondary-light: #64b5f6;
  --secondary-dark: #1976d2;
  
  /* الألوان المميزة */
  --accent-color: #2196f3;
  --accent-light: #64b5f6;
  --accent-dark: #1976d2;
  --gold-color: #ff9800;
  --gold-light: #ffb74d;
  --gold-dark: #f57c00;
  
  /* ألوان الحالة */
  --success-color: #4caf50;
  --danger-color: #f44336;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  
  /* الألوان المتدرجة */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #424242;
  --gray-800: #212121;
  --gray-900: #000000;
  
  /* تدرجات احترافية */
  --gradient-primary: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
  --gradient-gold: linear-gradient(135deg, #ff9800 0%, #ffb74d 100%);
  --gradient-accent: linear-gradient(135deg, #2196f3 0%, #64b5f6 100%);
  --gradient-success: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  
  /* الظلال */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 35px rgba(0, 0, 0, 0.2);
  --shadow-heavy: 0 16px 40px rgba(0, 0, 0, 0.25);
  
  /* الانتقالات */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s ease;
  
  /* الحدود */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
}

/* الهيدر المحدث - أبيض احترافي مع خلفية خفيفة */
.header {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: var(--shadow-md);
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}

.header::before {
  display: none;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  padding: 8px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.logo-icon:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius-lg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-text .main-title {
  color: var(--gray-800);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.logo-text .main-title:hover {
  color: var(--primary-color);
}

.logo-text a {
  color: inherit;
  text-decoration: none;
}

/* اسم الشركة خارج الصناديق */
.company-name-outside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 8px;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.company-full-name {
  color: var(--primary-color);
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.company-subtitle {
  color: var(--gray-600);
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  font-weight: 400;
}

/* Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--gray-50);
  border-radius: 50px;
  padding: 8px 15px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-menu li {
  margin: 0;
}

.nav-menu li a {
  color: var(--gray-700);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  transition: var(--transition);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.95rem;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-menu li a i {
  font-size: 1rem;
}

/* تحسينات الهاتف المحمول */
@media (max-width: 968px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 15px 0;
  }

  .logo {
    justify-content: center;
  }
  
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    padding: 6px 12px;
  }

  .nav-menu li a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .nav-menu li a {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .nav-menu li a span {
    display: none;
  }
}

/* Hero Section - مع خلفية سعودية جميلة */
.hero-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%), 
              url(/images/hero-family.jpg) center / cover no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--gray-800);
  padding: 100px 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(248,249,250,0.3) 100%);
  z-index: 1;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 50px;
  border-radius: var(--border-radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--gray-800);
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 40px;
  color: var(--gray-700);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* أزرار Hero */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  min-width: 180px;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #1565c0 0%, #3f51b5 100%);
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(21, 101, 192, 0.5);
  background: linear-gradient(135deg, #0d47a1 0%, #303f9f 100%);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, #3f51b5 0%, #5e35b1 100%);
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(63, 81, 181, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #303f9f 0%, #512da8 100%);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(63, 81, 181, 0.5);
}

.btn-marketing {
  background: linear-gradient(135deg, #5e35b1 0%, #7b1fa2 100%);
  color: white;
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(94, 53, 177, 0.3);
}

.btn-marketing:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(94, 53, 177, 0.5);
  color: white;
  background: linear-gradient(135deg, #512da8 0%, #6a1b9a 100%);
}

/* شريط البحث - تصميم محسن مع الخلفية */
.search-bar {
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--border-radius-xl);
  margin: -80px auto 60px;
  max-width: 1100px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  position: relative;
  z-index: 3;
}

.search-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.form-control {
  padding: 12px 15px;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  font-family: 'Tajawal', sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
  transform: translateY(-1px);
}

/* المدن والإحصائيات */
.kingdom-properties {
  padding: 80px 0;
  background: var(--gray-50);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: var(--gray-700);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--gray-600);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.city-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--gray-200);
  position: relative;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.city-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.city-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.6;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.city-card:hover .city-image::before {
  opacity: 0.8;
}

.city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.4) 70%,
    transparent 100%
  );
  color: var(--white);
  z-index: 3;
}

.city-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.city-count {
  font-size: 1rem;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
  backdrop-filter: blur(10px);
}

/* بطاقات العقارات - تصميم احترافي محسن */
.properties-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  margin-top: 40px;
  padding: 0 20px;
}

.property-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  backdrop-filter: blur(10px);
}

.property-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.property-image {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
  border-radius: 20px 20px 0 0;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(1.05) contrast(1.1) saturate(1.1);
}

.property-card:hover .property-image img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.15) saturate(1.15);
}

/* رقم العقار */
.property-id {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 3;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.property-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-badge.sale {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.property-badge.rent {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
}

/* علامة المميز */
.featured-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: featuredGlow 2s ease-in-out infinite alternate;
}

@keyframes featuredGlow {
  0% {
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
  }
  100% {
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.6);
  }
}

/* محتوى العقار */
.property-info,
.property-content {
  padding: 30px 25px;
  background: var(--white);
}

.property-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 12px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* تفاصيل العقار */
.property-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(25, 118, 210, 0.05);
  border-radius: 8px;
  border-right: 3px solid var(--primary-color);
}

.detail-label {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.detail-value {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.price-item {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(25, 118, 210, 0.05) 100%);
  border-right: 3px solid var(--primary-color);
}

.price-item .detail-value {
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-item small {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
}

.property-location {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.property-location i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.property-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.feature i {
  color: var(--primary-color);
  font-size: 1.3rem;
  background: rgba(25, 118, 210, 0.1);
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.price-value {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.price-period {
  font-size: 1rem;
  color: var(--gray-600);
  margin-right: 8px;
  font-weight: 600;
}

.view-details {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.view-details:hover {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
  color: var(--white);
}

/* Placeholder للصور غير المتوفرة */
.no-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 1.1rem;
  font-weight: 600;
}

.no-image-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--gray-400);
}

/* خدمة العملاء */
.customer-service-footer {
  padding: 60px 0;
  background: var(--gray-50);
  color: var(--gray-800);
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.service-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--gray-800);
}

.service-title i {
  margin-left: 15px;
  color: var(--primary-color);
}

.service-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray-600);
}

.service-contacts {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.service-contact {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 30px 20px;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 280px;
  max-width: 320px;
}

.service-contact:hover {
  background: var(--gray-50);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-contact i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-contact h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--gray-800);
}

.service-contact a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  transition: var(--transition);
}

.service-contact a:hover {
  color: var(--primary-dark);
}

.service-contact p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Footer - تصميم احترافي خفيف */
.footer {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  color: #334155;
  padding: 60px 0 30px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  opacity: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-section h3 {
  color: #1e293b;
  margin-bottom: 20px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
}

.footer-section p,
.footer-section li {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-section a:hover {
  color: #1e293b;
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
  text-align: center;
  color: #94a3b8;
  position: relative;
  z-index: 2;
}

.footer-bottom a {
  color: #1e293b;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* زر واتساب العائم */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: var(--shadow-heavy);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* التنقل المحمول */
.mobile-nav-bar {
    position: fixed;
  top: 0;
    left: 0;
    right: 0;
  background: var(--white);
  color: var(--gray-800);
  padding: 1rem;
  display: none;
  justify-content: space-between;
  align-items: center;
    z-index: 1000;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-nav-left,
.mobile-nav-right {
  flex: 1;
}

.mobile-nav-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.mobile-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.mobile-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-logo-text {
  display: flex;
  flex-direction: column;
}

.mobile-logo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
}

.mobile-logo-subtitle {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.mobile-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.mobile-hamburger span {
  width: 25px;
  height: 3px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-dropdown {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu-dropdown.active {
  max-height: 400px;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-list li:last-child {
  border-bottom: none;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
  background: var(--gray-100);
  color: var(--primary-color);
}

.mobile-menu-list a i {
  width: 20px;
  text-align: center;
  color: var(--primary-color);
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.mobile-menu-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

/* المدن وبطاقات العقارات */
.kingdom-properties-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: var(--gray-700);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.cities-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.city-card {
  height: 280px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.city-riyadh {
  background-image: url('/images/city/exploring-historic-modern-contrasts-riyadh-260nw-2469970031.png');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.city-jeddah {
  background-image: url('/images/city/jeddah-beach-saudi-arabia-red-260nw-2239364817.png');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.city-medina {
  background-image: url('/images/city/medina-saudi-arabia-full-name-260nw-2507636221.png');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.city-dammam {
  background-image: url('/images/city/king-abdulaziz-center-world-culture-260nw-2434526771.png');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.city-makkah {
  background-image: url('/images/city/makkah-clock-tower-260nw-795816949.png');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.city-asir {
  background-image: url('/images/city/ancient-rijal-alma-village-saudi-260nw-2497825805.png');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.city-riyadh, .city-jeddah, .city-makkah, .city-medina, .city-dammam, .city-asir {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  filter: brightness(1.1) contrast(1.05) !important;
  min-height: 280px !important;
}

.city-riyadh:hover, .city-jeddah:hover, .city-makkah:hover, .city-medina:hover, .city-dammam:hover, .city-asir:hover {
  filter: brightness(1.2) contrast(1.1) !important;
  transform: translateY(-8px) scale(1.02) !important;
}

.city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 80%, transparent 100%);
  padding: 35px 25px;
  color: var(--white);
}

.city-content {
  text-align: center;
}

.city-name {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.9), 0 2px 5px rgba(0,0,0,0.8);
}

.city-description {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0.95;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9);
  font-weight: 500;
}

.city-status {
  background: rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  display: inline-block;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  font-weight: 600;
}

.city-status.has-properties {
  background: rgba(76, 175, 80, 0.8);
}

.city-status.no-properties {
  background: rgba(158, 158, 158, 0.8);
}

/* زر طلب العقار العائم */
.request-property-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: var(--shadow-heavy);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.request-property-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

/* رخصة فال - تصميم احترافي خفيف */
.license-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
  padding: 40px;
  border-radius: var(--border-radius-xl);
  text-align: center;
  margin-bottom: 40px;
  border: 2px solid #e2e8f0;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(148, 163, 184, 0.1);
}

.license-section h4 {
  color: #1e293b;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}

.license-section h4 i {
  color: #3b82f6;
  margin-left: 10px;
}

.license-number {
  font-size: 2rem;
  font-weight: 900;
  color: #1e293b;
  margin: 15px 0;
  letter-spacing: 2px;
}

.license-section p {
  color: #64748b;
  margin-bottom: 25px;
  font-size: 1.1rem;
  font-weight: 500;
}

.license-details {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.license-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid #e2e8f0;
}

.license-item i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.license-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

/* تحسينات اتصال الفوتر */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #64748b;
}

.footer-contact-item i {
  color: #3b82f6;
  width: 20px;
  text-align: center;
}

.footer-contact-item a {
  color: #64748b;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: #3b82f6;
}

.footer-contact-item span {
  color: #64748b;
}

/* تحسينات للشاشات الصغيرة - محدثة */
@media (max-width: 968px) {
  .mobile-nav-bar {
    display: flex;
  }
  
  body {
    padding-top: 70px;
  }
  
  .header {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .search-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cities-grid,
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .floating-whatsapp,
  .request-property-btn {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .customer-service-footer {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
  
  .customer-service-footer .service-title {
    font-size: 2rem;
  }
  
  .customer-service-footer .service-contacts {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .customer-service-footer .service-contact {
    padding: 30px 20px;
    min-width: auto;
    max-width: 400px;
    width: 100%;
  }
  
  .customer-service-footer .service-contact i {
    font-size: 2rem;
  }
  
  .license-details {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 640px) {
  .search-bar {
    margin: -30px 15px 60px;
    padding: 30px 20px;
  }
  
  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
  
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .city-card {
    height: 200px;
  }
  
  .city-overlay {
    padding: 20px 15px;
  }
  
  .city-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .city-description {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .city-status {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  
  .customer-service-footer {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .customer-service-footer .service-title {
    font-size: 1.8rem;
  }
  
  .customer-service-footer .service-description {
    font-size: 1rem;
  }
  
  .customer-service-footer .service-contact {
    padding: 25px 15px;
    max-width: 100%;
  }
  
  .customer-service-footer .service-contact h4 {
    font-size: 1.1rem;
  }
  
  .customer-service-footer .service-contact a {
    font-size: 1.3rem;
  }
  
  .license-number {
    font-size: 1.5rem;
  }
}

/* تحسينات إضافية لبطاقات العقارات على الشاشات الصغيرة */
@media (max-width: 768px) {
  .properties-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }
  
  .property-card {
    border-radius: 16px;
  }
  
  .property-image {
    height: 240px;
  }
  
  .property-info,
  .property-content {
    padding: 25px 20px;
  }
  
  .property-title {
    font-size: 1.25rem;
  }
  
  .property-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .detail-item {
    padding: 10px 15px;
  }
  
  .property-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .price-value {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .property-image {
    height: 200px;
  }
  
  .property-info,
  .property-content {
    padding: 20px 16px;
  }
  
  .property-details {
    gap: 10px;
    padding: 15px 0;
  }
  
  .detail-item {
    padding: 8px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .property-features {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px 0;
  }
  
  .feature {
    flex-direction: row;
    justify-content: flex-start;
    text-align: right;
  }
  
  .feature i {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%), 
              url(/images/hero-family.jpg) center / cover no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--gray-800);
  padding: 100px 0;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* تحسينات خاصة بالجوال للـ Hero Section */
@media (max-width: 968px) {
  .hero-section {
    padding: 80px 0 60px;
    min-height: 60vh;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero-buttons .btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 25px;
    font-weight: 600;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 60px 0 40px;
    min-height: 50vh;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    gap: 12px;
    max-width: 280px;
  }
  
  .hero-buttons .btn {
    padding: 14px 18px;
    font-size: 1rem;
  }
}

/* Search Bar - تحسينات للجوال */
@media (max-width: 968px) {
  .search-bar {
    margin: -20px 20px 40px;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .search-form {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-group {
    margin-bottom: 0;
  }
  
  .form-label {
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .form-control {
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 12px;
  }
  
  .form-group button {
    padding: 14px 20px;
    font-size: 1.1rem;
    border-radius: 15px;
    font-weight: 600;
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .search-bar {
    margin: -15px 15px 30px;
    padding: 20px 15px;
    border-radius: 15px;
  }
  
  .form-control {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .form-group button {
    padding: 12px 18px;
    font-size: 1rem;
  }
}

/* تحسينات الجوال للصفحة الرئيسية */
@media (max-width: 968px) {
  /* Kingdom Properties Section */
  .kingdom-properties-section {
    padding: 60px 0;
  }
  
  .section-header {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  
  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .cities-grid-container {
    padding: 0 20px;
  }
  
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .city-card {
    height: 200px;
    border-radius: 15px;
  }
  
  .city-overlay {
    padding: 20px 15px;
  }
  
  .city-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  
  .city-description {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .city-status {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  /* Properties Section */
  .properties-section {
    padding: 60px 0;
  }
  
  .properties-section .section-title {
    padding: 0 20px;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
  }
  
  .properties-section .section-subtitle {
    padding: 0 20px;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 640px) {
  .floating-whatsapp,
  .request-property-btn {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .license-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  /* Kingdom Properties Section للشاشات الصغيرة */
  .kingdom-properties-section {
    padding: 50px 0;
  }
  
  .section-header {
    padding: 0 15px;
    margin-bottom: 25px;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .cities-grid-container {
    padding: 0 15px;
  }
  
  .cities-grid {
    gap: 12px;
  }
  
  .city-card {
    height: 180px;
    border-radius: 12px;
  }
  
  .city-overlay {
    padding: 15px 12px;
  }
  
  .city-name {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  
  .city-description {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  
  .city-status {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  
  /* Properties Section */
  .properties-section {
    padding: 50px 0;
  }
  
  .properties-section .section-title {
    padding: 0 15px;
    font-size: clamp(1.6rem, 5vw, 2rem);
  }
  
  .properties-section .section-subtitle {
    padding: 0 15px;
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  /* Customer Service Section */
  .customer-service-footer {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .customer-service-footer .service-title {
    font-size: 1.8rem;
  }
  
  .customer-service-footer .service-description {
    font-size: 1rem;
  }
  
  .customer-service-footer .service-contact {
    padding: 25px 15px;
    max-width: 100%;
  }
  
  .customer-service-footer .service-contact h4 {
    font-size: 1.1rem;
  }
  
  .customer-service-footer .service-contact a {
    font-size: 1.3rem;
  }
  
  .floating-whatsapp,
  .request-property-btn {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .license-number {
    font-size: 1.5rem;
  }
}