/* ══════════════════════════════════════════════════════════════
   REAL ESTATE & PROPTECH - INDUSTRY PAGE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Floating Property Icons ────────────────────────────────── */
.floating-property-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.float-property-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 16px;
  font-size: 32px;
  color: #F59E0B;
  animation: propertyFloat 7s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.house-icon {
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}

.building-icon {
  top: 65%;
  left: 4%;
  animation-delay: 1.4s;
}

.key-icon {
  top: 20%;
  right: 10%;
  animation-delay: 2.8s;
}

.graph-icon {
  bottom: 15%;
  right: 6%;
  animation-delay: 4.2s;
}

.location-icon {
  top: 75%;
  right: 15%;
  animation-delay: 5.6s;
}

.camera-icon {
  bottom: 8%;
  left: 18%;
  animation-delay: 2.1s;
}

@keyframes propertyFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-25px) rotate(8deg) scale(1.05);
  }
  50% {
    transform: translateY(-12px) rotate(-8deg) scale(0.95);
  }
  75% {
    transform: translateY(-30px) rotate(5deg) scale(1.03);
  }
}

/* ── Animated Badge ──────────────────────────────────────────── */
.animated-badge {
  animation: badgeGlow 2.5s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
}

/* ── Hero Section ─────────────────────────────────────────────── */
.realestate-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #451a03 0%, #78350f 50%, #451a03 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(217, 119, 6, 0.12) 0%, transparent 50%);
  opacity: 0.8;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6z' fill='%23F59E0B' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #FCD34D;
  width: fit-content;
  letter-spacing: 0.5px;
}

.industry-badge i {
  font-size: 18px;
}

.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.hero-content h1 .accent {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: realestateGradientShift 3.5s ease infinite;
}

@keyframes realestateGradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
  50% {
    background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #FEF3C7;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.stat-item i {
  font-size: 20px;
  color: #FCD34D;
}

.stat-item span {
  font-size: 14px;
  color: #FEF3C7;
}

.stat-item strong {
  color: #fff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Property Dashboard Visual ────────────────────────────────── */
.hero-visual-realestate {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-dashboard-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Main Property Listing Card */
.property-listing-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  background: #1E293B;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  animation: floatPropertyCard 7s ease-in-out infinite;
  border: 2px solid rgba(245, 158, 11, 0.3);
}

@keyframes floatPropertyCard {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(-1deg);
  }
}

.property-image {
  position: relative;
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #334155 0%, #1E293B 100%);
  overflow: hidden;
}

.property-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
  font-size: 80px;
  color: rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

.property-image-placeholder::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(245, 158, 11, 0.1), transparent);
  animation: imageShimmer 3s linear infinite;
}

@keyframes imageShimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.7);
  }
}

.property-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  z-index: 2;
}

.property-details {
  padding: 24px;
  background: #0F172A;
}

.property-details h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.property-location i {
  color: #F59E0B;
}

.property-features {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #CBD5E1;
}

.feature-item i {
  font-size: 16px;
  color: #F59E0B;
}

.property-actions {
  display: flex;
  gap: 12px;
}

.tour-btn {
  flex: 1;
  padding: 12px 20px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tour-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.favorite-btn {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  color: #F59E0B;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.favorite-btn:hover {
  background: rgba(245, 158, 11, 0.2);
  transform: scale(1.1);
}

/* Virtual Tour Widget */
.virtual-tour-widget {
  position: absolute;
  top: 80px;
  right: 20px;
  width: 200px;
  background: #1E293B;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(245, 158, 11, 0.3);
  animation: floatTourWidget 7s ease-in-out infinite 1.5s;
  z-index: 3;
}

@keyframes floatTourWidget {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-24px) rotate(-2deg);
  }
}

.tour-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.tour-header i {
  font-size: 16px;
  color: #F59E0B;
}

.tour-view {
  position: relative;
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #334155 0%, #1E293B 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.tour-compass {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  border-top-color: #F59E0B;
  animation: tourRotate 4s linear infinite;
}

@keyframes tourRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.tour-view i {
  font-size: 32px;
  color: rgba(245, 158, 11, 0.5);
  z-index: 2;
}

.tour-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.tour-control-btn {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  color: #94a3b8;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-control-btn:hover,
.tour-control-btn.active {
  background: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
  border-color: #F59E0B;
}

/* Market Analytics Mini Card */
.market-analytics-mini {
  position: absolute;
  bottom: 40px;
  right: 20px;
  width: 180px;
  background: #1E293B;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(245, 158, 11, 0.3);
  animation: floatAnalytics 7s ease-in-out infinite 3s;
  z-index: 2;
}

@keyframes floatAnalytics {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

.analytics-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.analytics-header i {
  font-size: 14px;
  color: #F59E0B;
}

.analytics-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
  margin-bottom: 12px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #475569 0%, #334155 100%);
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.5s ease-out;
  transition: all 0.3s ease;
}

.chart-bar.active {
  background: linear-gradient(180deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 -4px 12px rgba(245, 158, 11, 0.4);
}

@keyframes barGrow {
  from {
    height: 0;
  }
}

.analytics-value {
  text-align: center;
}

.trend-up {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #10B981;
  font-family: 'Sora', sans-serif;
}

.trend-up i {
  font-size: 14px;
}

/* ── Real Estate Features Grid ──────────────────────────────────── */
.realestate-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.realestate-feature-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.realestate-feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(245, 158, 11, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.realestate-feature-card:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.realestate-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.15);
  border-color: #F59E0B;
}

.highlighted-card {
  border: 2px solid #F59E0B;
  background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border-radius: 14px;
  font-size: 32px;
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.realestate-feature-card:hover .feature-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.realestate-feature-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 12px;
}

.realestate-feature-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 20px;
}

.feature-visual {
  margin-top: 20px;
  padding: 20px;
  background: #f8fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Search Filters Visual */
.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.filter-chip {
  padding: 8px 16px;
  background: #e5e7eb;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  transition: all 0.3s ease;
}

.filter-chip.active {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
  border-color: #F59E0B;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* VR Headset Visual */
.vr-headset {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: 50%;
  border: 2px solid #F59E0B;
}

.vr-headset i {
  font-size: 36px;
  color: #F59E0B;
  z-index: 2;
}

.vr-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #F59E0B;
  border-radius: 50%;
  opacity: 0.3;
  animation: vrPulse 2s ease-out infinite;
}

@keyframes vrPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Blockchain Blocks Visual */
.blockchain-blocks {
  display: flex;
  gap: 12px;
  align-items: center;
}

.block {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.block::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background: #9ca3af;
}

.block:last-child::after {
  display: none;
}

.block.active {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  animation: blockPulse 2s ease-in-out infinite;
}

.block.active::after {
  background: #F59E0B;
}

@keyframes blockPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.7);
  }
}

/* 3D Floor Plan Visual */
.floor-plan {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  max-width: 120px;
}

.room {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.room::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.room:hover::after {
  transform: translateX(100%);
}

.room.active {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Lead Funnel Visual */
.lead-funnel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.funnel-stage {
  height: 28px;
  background: linear-gradient(90deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  transition: all 0.5s ease;
  animation: funnelGrow 1.5s ease-out;
}

@keyframes funnelGrow {
  from {
    width: 0;
  }
}

.funnel-stage.active {
  background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* ROI Calculator Visual */
.roi-calculator {
  width: 100%;
}

.roi-display {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  margin-bottom: 12px;
}

.roi-value {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #10B981;
  margin-left: 6px;
}

.roi-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.roi-bar {
  height: 12px;
  background: linear-gradient(90deg, #F59E0B 0%, #D97706 100%);
  border-radius: 6px;
  animation: roiBarGrow 1.5s ease-out;
}

@keyframes roiBarGrow {
  from {
    width: 0;
  }
}

/* ── Property Lifecycle Flow ───────────────────────────────────── */
.property-lifecycle-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.lifecycle-stage {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stage-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.stage-icon.success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
  animation: successPop 0.6s ease-out;
}

@keyframes successPop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

.lifecycle-stage:hover .stage-icon {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(245, 158, 11, 0.5);
}

.lifecycle-stage h4 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 8px;
}

.lifecycle-stage p {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.lifecycle-arrow {
  font-size: 24px;
  color: #F59E0B;
  flex-shrink: 0;
  animation: arrowFloat 2s ease-in-out infinite;
}

@keyframes arrowFloat {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

/* ── Section Styles ──────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}

.section.light {
  background: #f8fafb;
}

.section.dark {
  background: linear-gradient(135deg, #451a03 0%, #78350f 100%);
  color: #fff;
}

.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 16px;
}

.head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.section.light .head h2 {
  color: #0D1B2A;
}

.section.dark .head h2 {
  color: #fff;
}

.head p {
  font-size: 18px;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
}

.section.dark .head p {
  color: #FEF3C7;
}

/* ── Solutions Grid ──────────────────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #F59E0B;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(245, 158, 11, 0.3);
}

.solution-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.solution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  border-radius: 12px;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
}

.solution-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 0;
}

.solution-card > p {
  font-size: 16px;
  line-height: 1.7;
  color: #FEF3C7;
  margin: 0 0 24px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #FEF3C7;
}

.solution-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(245, 158, 11, 0.3);
  color: #FCD34D;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Technology Categories ───────────────────────────────────── */
.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tech-category {
  background: #fff;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tech-category:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #F59E0B;
}

.tech-category h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-category h3 i {
  color: #F59E0B;
  font-size: 22px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(217, 119, 6, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #F59E0B;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
  transform: translateY(-2px);
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #451a03 0%, #78350f 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  opacity: 0.6;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #FEF3C7;
  margin: 0 0 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.in {
  opacity: 1;
}

.reveal.up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.up.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal.left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal.right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal.right.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal.fade {
  opacity: 0;
}

.reveal.fade.in {
  opacity: 1;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal-group.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.in > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-group.in > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-group.in > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-group.in > *:nth-child(6) { transition-delay: 0.6s; }

/* ── Responsive Design ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual-realestate {
    height: 500px;
  }

  .property-listing-card {
    width: 380px;
  }

  .property-lifecycle-flow {
    flex-direction: column;
    gap: 30px;
  }

  .lifecycle-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .realestate-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .floating-property-icons {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-item {
    width: 100%;
  }

  .hero-visual-realestate {
    height: 400px;
  }

  .property-listing-card {
    width: 320px;
  }

  .virtual-tour-widget,
  .market-analytics-mini {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .realestate-features-grid,
  .solutions-grid,
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 0 4%;
  }

  .hero-visual-realestate {
    height: 350px;
  }

  .property-listing-card {
    width: 280px;
  }

  .property-image {
    height: 180px;
  }

  .property-details {
    padding: 20px;
  }

  .realestate-feature-card,
  .solution-card,
  .tech-category {
    padding: 30px 24px;
  }

  .lifecycle-stage {
    min-width: 100%;
  }

  .stage-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
