*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green-dark: #1a5c3a;
  --green-medium: #2d7a4a;
  --green-light: #3a9d5e;
  --gold: #c9a84c;
  --gold-light: #e0c56a;
  --gold-dark: #b8942e;
  --cream: #f5f0e8;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --danger: #dc2626;
  --warning: #f59e0b;
  --success: #16a34a;
  --info: #0ea5e9;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-sans: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}
a { color: var(--green-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-light); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
::selection { background: var(--green-dark); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 12px;
  font-weight: 700;
}
.section-title p {
  color: var(--gray-500);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.section-title .title-icon {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 16px;
  border-radius: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--green-dark); color: var(--white); }
.btn-primary:hover { background: var(--green-medium); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--green-dark); border: 2px solid var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--cream); color: var(--green-dark); }
.btn-sm { padding: 8px 18px; font-size: 0.9rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-green { color: var(--green-dark); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--gray-500); }
.fade-in { animation: fadeIn 0.6s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
}
.header-logo img, .header-logo .logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
}
.header-logo .logo-icon {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.header-logo span { color: var(--gold); }
.header-nav { display: flex; align-items: center; gap: 8px; }
.header-nav a {
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.header-nav a:hover, .header-nav a.active { color: var(--green-dark); background: var(--cream); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.mobile-toggle:hover { background: var(--gray-100); }

@media (max-width: 991px) {
  .header-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .header-nav.open { display: flex; }
  .header-nav a { width: 100%; padding: 12px 16px; }
  .mobile-toggle { display: flex; }
}

/* Hero */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f3d26 50%, #1a5c3a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
  animation: float 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--gray-50), transparent);
}
.hero-content { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero-text h1 span { color: var(--gold); }
.hero-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat h3 { font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.hero-stat p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin: 0; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mockup {
  width: 100%;
  max-width: 500px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 30px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-mockup-header span { color: var(--gold); font-weight: 700; font-size: 0.85rem; }
.hero-mockup-cards { display: flex; flex-direction: column; gap: 12px; }
.hero-mockup-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.hero-mockup-card .card-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.3);
  flex-shrink: 0;
}
.hero-mockup-card .card-info { flex: 1; min-width: 0; }
.hero-mockup-card .card-info h4 { font-size: 0.85rem; font-weight: 600; }
.hero-mockup-card .card-info p { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin: 0; }
.hero-mockup-card .card-badge {
  background: var(--gold);
  color: var(--gray-900);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}
.hero-mockup-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 12px 16px;
  background: rgba(37,211,102,0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: #25D366;
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text h1 { font-size: 2rem; }
  .hero { padding: 110px 0 60px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}

/* Problems Section */
.problems { background: var(--white); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.problem-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.problem-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(220,38,38,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.problem-card h4 { font-size: 1rem; margin-bottom: 6px; }
.problem-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* Solutions Section */
.solutions { background: var(--gray-50); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.solution-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-dark); }
.solution-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  color: var(--gold);
}
.solution-card h4 { font-size: 1rem; margin-bottom: 8px; }
.solution-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* Target Audience */
.audience { background: var(--white); }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.audience-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
}
.audience-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--green-dark);
}
.audience-card h4 { font-size: 1rem; margin-bottom: 8px; }
.audience-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* Features Section */
.features { background: var(--gray-50); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--green-dark); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.feature-card h4 { font-size: 1rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* How It Works */
.how-it-works { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step::after {
  content: '';
  position: absolute;
  top: 28px;
  right: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.step:last-child::after { display: none; }
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; max-width: 240px; margin: 0 auto; }

@media (max-width: 991px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step::after { display: none; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* Before & After */
.before-after { background: linear-gradient(135deg, var(--green-dark), #0f3d26); color: var(--white); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.ba-col { padding: 30px; border-radius: var(--radius-lg); }
.ba-before { background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.2); }
.ba-after { background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.2); }
.ba-col h3 { font-size: 1.3rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.ba-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}
.ba-list li:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .ba-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Trust Section */
.trust { background: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.trust-item {
  padding: 20px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.trust-item .icon { font-size: 1.8rem; margin-bottom: 8px; }
.trust-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.trust-item p { font-size: 0.82rem; color: var(--gray-500); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f3d26 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}
.cta-section h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 30px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* Properties Grid */
.properties-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.properties-header h1 { font-size: 1.6rem; font-weight: 700; }
.properties-count { color: var(--gray-500); font-size: 0.95rem; }
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.property-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.property-card:hover .property-card-image img { transform: scale(1.05); }
.property-card-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}
.badge-available { background: rgba(22,163,74,0.9); color: white; }
.badge-reserved { background: rgba(245,158,11,0.9); color: white; }
.badge-sold { background: rgba(220,38,38,0.9); color: white; }
.badge-rented { background: rgba(14,165,233,0.9); color: white; }
.badge-negotiation { background: rgba(168,85,247,0.9); color: white; }
.badge-new { background: var(--gold); color: var(--gray-900); }
.badge-verified { background: rgba(22,163,74,0.9); color: white; }
.property-card-whatsapp {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
}
.property-card-body { padding: 18px; }
.property-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-card-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.property-card-meta span {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}
.property-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
}
.property-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid var(--gray-100);
}

/* Filters */
.filters-section {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
}
.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.filter-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.filter-group select, .filter-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--gray-700);
  transition: var(--transition);
}
.filter-group select:focus, .filter-group input:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(26,92,58,0.1);
}
.filter-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Property Detail */
.property-detail { padding-top: 120px; }
.property-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
}
.property-gallery-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.property-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.property-gallery-thumbs img {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}
.property-gallery-thumbs img:hover, .property-gallery-thumbs img.active { border-color: var(--green-dark); }
.property-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.property-info h1 { font-size: 1.6rem; margin-bottom: 16px; }
.property-info-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.property-info-meta span {
  padding: 6px 14px;
  background: var(--gray-100);
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-info-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.property-info-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}
.property-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.property-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding: 8px 12px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}
.property-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 16px; }
.sidebar-info { margin-bottom: 16px; }
.sidebar-info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-row .label { color: var(--gray-500); }
.sidebar-info-row .value { font-weight: 600; }
.sidebar-actions { display: flex; flex-direction: column; gap: 10px; }
.sidebar-actions .btn { width: 100%; }
.share-buttons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.share-buttons a {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-size: 0.85rem;
  transition: var(--transition);
}
.share-buttons a:hover { background: var(--gray-100); }
.legal-notice {
  margin-top: 20px;
  padding: 16px;
  background: #fef3c7;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: #92400e;
  border-right: 4px solid var(--warning);
}

@media (max-width: 768px) {
  .property-detail-grid { grid-template-columns: 1fr; }
  .property-gallery-main { height: 280px; }
  .property-features-list { grid-template-columns: 1fr; }
}

/* Forms */
.form-section { padding-top: 120px; }
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 40px;
}
.form-container h1 { font-size: 1.5rem; margin-bottom: 8px; }
.form-container .subtitle { color: var(--gray-500); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group label .required { color: var(--danger); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--gray-700);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(26,92,58,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  text-align: center;
  padding: 40px;
}
.form-success .icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form-success h2 { font-size: 1.3rem; margin-bottom: 8px; color: var(--green-dark); }
.form-success p { color: var(--gray-500); }

@media (max-width: 480px) {
  .form-container { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* About Page */
.about-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--green-dark), #0f3d26);
  color: var(--white);
  text-align: center;
}
.about-hero h1 { font-size: 2.2rem; margin-bottom: 16px; }
.about-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }
.about-content { padding: 60px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--green-dark);
}
.about-text h2 { font-size: 1.6rem; margin-bottom: 16px; }
.about-text p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }

/* Contact Page */
.contact-section { padding: 120px 0 60px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h1 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info p { color: var(--gray-500); margin-bottom: 30px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.contact-method h4 { font-size: 0.95rem; }
.contact-method p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* Pricing Page */
.pricing-header {
  padding: 120px 0 40px;
  text-align: center;
}
.pricing-header h1 { font-size: 2rem; margin-bottom: 12px; }
.pricing-header p { color: var(--gray-500); max-width: 500px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding-bottom: 60px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 36px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.pricing-card.featured .pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--gray-900);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-card .price { font-size: 1.3rem; color: var(--gray-500); margin-bottom: 20px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--success); }
.pricing-features li .cross { color: var(--danger); }

/* Dashboard Shared */
.dashboard-body { background: var(--gray-100); }
.dashboard {
  display: flex;
  min-height: 100vh;
}
.dashboard-sidebar {
  width: 260px;
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  overflow-y: auto;
  transition: var(--transition);
}
.dashboard-sidebar-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-sidebar-header h2 { font-size: 1.1rem; color: var(--white); }
.dashboard-sidebar-header h2 span { color: var(--gold); }
.dashboard-nav { padding: 12px; }
.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 2px;
}
.dashboard-nav-item:hover, .dashboard-nav-item.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.dashboard-nav-item .icon { width: 20px; text-align: center; font-size: 1rem; }
.dashboard-nav-item .badge {
  margin-right: auto;
  font-size: 0.75rem;
  padding: 2px 8px;
}
.dashboard-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}
.dashboard-main {
  flex: 1;
  margin-right: 260px;
  padding: 20px 30px;
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.dashboard-header h1 { font-size: 1.4rem; font-weight: 700; }
.dashboard-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dashboard-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-200);
}
.stat-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.stat-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.stat-card-number { font-size: 1.6rem; font-weight: 800; color: var(--gray-900); }
.stat-card-label { font-size: 0.85rem; color: var(--gray-500); }

.dashboard-table {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.dashboard-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-200);
}
.dashboard-table-header h3 { font-size: 1rem; }
.dashboard-table table {
  width: 100%;
  border-collapse: collapse;
}
.dashboard-table th {
  text-align: right;
  padding: 12px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.dashboard-table td {
  padding: 12px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
}
.dashboard-table tr:last-child td { border-bottom: none; }
.dashboard-table tr:hover td { background: var(--gray-50); }

@media (max-width: 991px) {
  .dashboard-sidebar {
    width: 220px;
    transform: translateX(220px);
  }
  .dashboard-sidebar.open { transform: translateX(0); }
  .dashboard-main { margin-right: 0; padding: 20px 16px; }
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* Page Header */
.page-header {
  padding: 130px 0 40px;
  background: linear-gradient(135deg, var(--green-dark), #0f3d26);
  color: var(--white);
  text-align: center;
}
.page-header h1 { font-size: 1.8rem; margin-bottom: 8px; }
.page-header p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto; }

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state .icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); margin-bottom: 20px; }

/* Loading */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--green-dark);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Page Content */
.page-content {
  padding: 60px 0;
}
.page-content h2 { font-size: 1.4rem; margin: 30px 0 16px; }
.page-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
