body { 
  background: #f8f9fa; 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, #198754 0%, #20c997 100%);
  color: white;
  padding: 3rem 0;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #fff;
}

.stat-box span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-actions .btn {
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #198754;
}

/* Estate Cards */
.estate-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(25,135,84,0.1);
}

.estate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(25,135,84,0.2);
}

.estate-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.estate-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #198754, #20c997);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.estate-info {
  padding: 1.5rem;
}

.estate-info h5 {
  margin-bottom: 0.5rem;
}

.estate-info h5 a {
  color: #212529;
  text-decoration: none;
}

.estate-info h5 a:hover {
  color: #198754;
}

.estate-info .location {
  color: #6c757d;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.estate-info .description {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.estate-info .price {
  color: #198754;
  font-weight: 600;
  margin: 0;
}

/* Small Cards */
.estate-card-small {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(25,135,84,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(25,135,84,0.05);
}

.estate-card-small:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(25,135,84,0.15);
}

.estate-card-small img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.estate-placeholder-small {
  height: 140px;
  background: linear-gradient(135deg, #198754, #20c997);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.estate-info-small {
  padding: 1rem;
}

.estate-info-small h6 {
  margin-bottom: 0.25rem;
}

.estate-info-small h6 a {
  color: #212529;
  text-decoration: none;
}

.estate-info-small p {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
}

/* City Cards */
.city-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(25,135,84,0.1);
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(25,135,84,0.15);
}

.city-card h4 {
  color: #198754;
  margin-bottom: 1rem;
  font-weight: 600;
}

.city-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

/* Property Type Cards */
.property-type-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(25,135,84,0.1);
}

.property-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(25,135,84,0.15);
}

.property-type-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.property-type-card h5 {
  color: #198754;
  margin-bottom: 1rem;
  font-weight: 600;
}

.property-type-card p {
  color: #6c757d;
  margin: 0;
}

/* State Links */
.state-link {
  display: block;
  padding: 1.25rem;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #212529;
  box-shadow: 0 3px 15px rgba(25,135,84,0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid rgba(25,135,84,0.05);
}

.state-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25,135,84,0.15);
  color: #198754;
}

.state-link strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.state-link span {
  font-size: 0.85rem;
  color: #6c757d;
}

/* Pagination */
.pagination .page-link {
  border: 1px solid #dee2e6;
  color: #198754;
  padding: 0.5rem 0.75rem;
}

.pagination .page-item.active .page-link {
  background: #198754;
  border-color: #198754;
}

.pagination .page-link:hover {
  color: #198754;
  background: rgba(25,135,84,0.1);
}

/* Map */
#map { 
  height: 250px; 
  border-radius: 8px;
}

/* Header Styling */
.navbar-brand:hover {
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  color: #198754 !important;
  transition: color 0.3s ease;
}

.navbar-toggler {
  border: 1px solid #198754;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

/* Footer Styling */
.site-footer {
  background: #212529 !important;
}

.footer-title {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: #adb5bd;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #198754;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #198754;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #146c43;
  color: white;
  transform: translateY(-2px);
}

.contact-info p {
  color: #adb5bd;
  margin-bottom: 0.75rem;
}

.contact-info i {
  color: #198754;
  width: 20px;
}

.footer-divider {
  border-color: #495057;
  margin: 2rem 0 1.5rem 0;
}

.copyright {
  color: #6c757d;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  justify-content: end;
}

.footer-bottom-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: #198754;
}

/* Placeholder Logo Styling */
.placeholder-logo {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 2rem;
}

.placeholder-logo-small {
  width: 100%;
  height: 140px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 1.5rem;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Legal Pages */
.legal-content {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  border: 1px solid rgba(25,135,84,0.1);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h3 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.legal-section p {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

/* Hero Search */
.hero-search {
  margin-bottom: 2rem;
}

.search-form {
  display: flex;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.search-input {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  outline: none;
}

/* Quick Stats */
.quick-stat h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 0.25rem;
}

.quick-stat span {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Top State Cards */
.top-state-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  border: 1px solid rgba(25,135,84,0.1);
}

.top-state-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(25,135,84,0.15);
}

.top-state-card .rank {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #198754;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.top-state-card h4 {
  color: #198754;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.top-state-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

/* Fact Cards */
.fact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(25,135,84,0.1);
}

.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(25,135,84,0.15);
}

.fact-card .fact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.fact-card h5 {
  color: #198754;
  margin-bottom: 1rem;
  font-weight: 600;
}

.fact-card p {
  color: #6c757d;
  margin: 0;
}

/* Search Filters */
.search-filters {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(25,135,84,0.08);
}

.search-filters .form-label {
  font-weight: 600;
  color: #198754;
  margin-bottom: 0.5rem;
}

.search-filters .form-control,
.search-filters .form-select {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.search-filters .form-control:focus,
.search-filters .form-select:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.2rem rgba(25,135,84,0.25);
}

/* Results Header */
.results-header h2 {
  color: #198754;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Simple State Cards */
.state-card-simple {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  color: #212529;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(25,135,84,0.1);
  text-align: center;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.state-card-simple:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(25,135,84,0.2);
  color: #212529;
}

.state-icon {
  font-size: 2rem;
  color: #198754;
  margin-bottom: 1rem;
}

.state-card-simple h5 {
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 0.5rem 0;
  color: #198754;
}

.state-subtitle {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.count-badge {
  background: #198754;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.state-card-simple:hover .count-badge {
  background: #146c43;
}

/* Top State Cards */
.top-state-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(25,135,84,0.1);
  position: relative;
  height: 100%;
}

.top-state-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(25,135,84,0.15);
}

.rank-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #198754;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.state-info h4 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.state-info p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

/* Category Cards */
.category-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(25,135,84,0.1);
  text-align: center;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(25,135,84,0.15);
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-card h5 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1rem;
}

.category-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.category-states {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.state-tag {
  background: #f8f9fa;
  color: #198754;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(25,135,84,0.2);
  transition: all 0.3s ease;
}

.state-tag:hover {
  background: #198754;
  color: white;
}

/* Estate Details */
.price-tag {
  display: inline-block;
  background: #198754;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Estate Gallery */
.estate-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  border-radius: 15px;
  overflow: hidden;
}

.main-image {
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-grid {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}

.thumbnail-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail-grid img:hover {
  transform: scale(1.05);
}

/* Detail Sections */
.detail-section {
  margin-bottom: 3rem;
}

.detail-section h3 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.detail-section p {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1rem;
}

/* Sidebar */
.estate-sidebar {
  position: sticky;
  top: 2rem;
}

.info-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  border: 1px solid rgba(25,135,84,0.1);
  margin-bottom: 2rem;
}

.info-card h4 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.info-grid {
  display: grid;
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item .label {
  font-weight: 600;
  color: #495057;
  flex: 1;
}

.info-item .value {
  color: #6c757d;
  text-align: right;
  flex: 1;
}

/* Map */
#map {
  height: 250px;
  border-radius: 10px;
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .estate-gallery {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
  
  .main-image {
    height: 250px;
  }
  
  .estate-sidebar {
    position: static;
  }
  
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .info-item .value {
    text-align: left;
  }
}

/* Enhanced Estate Hero */
.estate-hero {
  position: relative;
  background: linear-gradient(135deg, #198754 0%, #20c997 100%);
  color: white;
  padding: 2rem 0 4rem 0;
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.breadcrumb-nav a:hover {
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-location {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  background: rgba(255,255,255,0.1);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.hero-stats .label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.hero-stats .value {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Enhanced Image Gallery */
.image-gallery {
  display: grid;
  gap: 1rem;
}

.main-gallery-image {
  position: relative;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
}

.main-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.thumbnail-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
}

.thumbnail {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border-color: #198754;
}

/* Content Tabs */
.content-tabs {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
  padding: 0 2rem;
}

.nav-tabs .nav-link {
  border: none;
  color: #6c757d;
  font-weight: 600;
  padding: 1.5rem 2rem;
}

.nav-tabs .nav-link.active {
  color: #198754;
  border-bottom: 3px solid #198754;
  background: none;
}

.tab-content {
  padding: 2rem;
}

.content-section {
  margin-bottom: 2rem;
}

.content-section h3 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1rem;
}

.content-section p {
  color: #6c757d;
  line-height: 1.7;
}

/* Enhanced Sidebar */
.estate-sidebar-new {
  position: sticky;
  top: 2rem;
}

.sidebar-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  border: 1px solid rgba(25,135,84,0.1);
}

.sidebar-card h4 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.facts-grid {
  display: grid;
  gap: 1rem;
}

.fact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.fact-item i {
  color: #198754;
  font-size: 1.2rem;
  width: 20px;
}

.fact-label {
  display: block;
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.fact-value {
  display: block;
  font-weight: 600;
  color: #212529;
}

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-btn {
  flex: 1;
  background: #198754;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: #146c43;
  transform: translateY(-1px);
}

/* Responsive Updates */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-gallery-image {
    height: 300px;
  }
  
  .nav-tabs .nav-link {
    padding: 1rem;
  }
  
  .estate-sidebar-new {
    position: static;
  }
}

/* Simplified Estate Gallery */
.estate-gallery-simple {
  border-radius: 15px;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.image-thumbnails {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0 0 15px 15px;
}

.thumbnail-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.more-images {
  width: 80px;
  height: 60px;
  background: rgba(25,135,84,0.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Content Blocks */
.content-block {
  margin-bottom: 3rem;
}

.content-block h3 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.content-block p {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1rem;
}

/* Compact Sidebar */
.estate-sidebar-compact {
  position: sticky;
  top: 2rem;
}

.info-card-compact {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  border: 1px solid rgba(25,135,84,0.1);
}

.price-display {
  background: #198754;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.basic-info {
  display: grid;
  gap: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row span:first-child {
  font-weight: 600;
  color: #495057;
}

.info-row span:last-child {
  color: #6c757d;
  text-align: right;
}

.info-card-compact h5 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-card-compact p {
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .main-image {
    height: 250px;
  }
  
  .image-thumbnails {
    overflow-x: auto;
  }
  
  .estate-sidebar-compact {
    position: static;
    margin-top: 2rem;
  }
  
  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .info-row span:last-child {
    text-align: left;
  }
}

/* Inline Info Cards */
.info-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.info-card-inline {
  background: white;
  border: 2px solid #198754;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.info-card-inline .label {
  display: block;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.info-card-inline .value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #198754;
}

/* FAQ Style */
.estate-faq {
  margin: 3rem 0;
}

.faq-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 3px 15px rgba(25,135,84,0.08);
  border-left: 4px solid #198754;
}

.faq-item h4 {
  color: #198754;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

/* Minimal Developer Card */
.developer-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  border: 1px solid rgba(25,135,84,0.1);
  position: sticky;
  top: 2rem;
}

.developer-card h5 {
  color: #198754;
  font-weight: 700;
  margin-bottom: 1rem;
}

.developer-card p {
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Mobile Updates */
@media (max-width: 768px) {
  .info-cards-row {
    grid-template-columns: 1fr;
  }
  
  .developer-card {
    position: static;
    margin-top: 2rem;
  }
}

/* Estate Tabs */
.estate-tabs {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(25,135,84,0.1);
  margin: 3rem 0;
}

.estate-tabs .nav-tabs {
  border-bottom: 1px solid #dee2e6;
  padding: 0 2rem;
  background: #f8f9fa;
}

.estate-tabs .nav-link {
  border: none;
  color: #6c757d;
  font-weight: 600;
  padding: 1.5rem 2rem;
  background: none;
}

.estate-tabs .nav-link.active {
  color: #198754;
  border-bottom: 3px solid #198754;
  background: white;
}

.tab-content-inner {
  padding: 2rem;
}

.detail-item {
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  color: #6c757d;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item strong {
  color: #495057;
}

.feature-section {
  margin-bottom: 2rem;
}

.feature-section:last-child {
  margin-bottom: 0;
}

.feature-section h5 {
  color: #198754;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-section p {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Tab Updates */
@media (max-width: 768px) {
  .estate-tabs .nav-tabs {
    padding: 0 1rem;
  }
  
  .estate-tabs .nav-link {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .tab-content-inner {
    padding: 1.5rem;
  }
}

/* Share Section */
.share-section {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #198754;
}

.share-section h6 {
  color: #198754;
  font-weight: 600;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  background: #198754;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.share-btn:hover {
  background: #146c43;
  color: white;
  transform: translateY(-1px);
}

.share-btn i {
  font-size: 1rem;
}

/* Mobile Share Buttons */
@media (max-width: 768px) {
  .share-buttons {
    flex-direction: column;
  }
  
  .share-btn {
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .search-form {
    flex-direction: column;
    border-radius: 15px;
  }
  
  .search-input, .search-select {
    border-radius: 8px;
  }
  
  .hero-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .search-filters {
    padding: 1.5rem;
  }
  
  .state-card-simple {
    height: 180px;
    padding: 1.5rem 1rem;
  }
  
  .state-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}