/* ==========================================================================
   Homepage Styles - Cushman & Wakefield Inspired Design
   ========================================================================== */

/* Hero Section - Professional & Impactful */
.hero-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #003B5C 0%, #0066CC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta-primary {
  background: #fff;
  color: #003B5C;
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-cta-primary:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: #003B5C;
  text-decoration: none;
}

.hero-cta-secondary {
  background: transparent;
  color: #fff;
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

/* Stats Bar */
.stats-bar {
  background: #f8f9fa;
  padding: 40px 0;
  border-bottom: 1px solid #e5e7eb;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #003B5C;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  font-weight: 600;
}

/* Section Headers - C&W Style */
.section-header-wrap {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 80px;
}

.section-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0066CC;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Property Type Cards */
.property-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.property-type-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.property-type-card:hover {
  border-color: #0066CC;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,102,204,0.1);
  text-decoration: none;
}

.property-type-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #0066CC;
}

.property-type-name {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.property-type-count {
  font-size: 14px;
  color: #6b7280;
  margin-top: 8px;
}

/* Featured Properties */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.featured-property-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.featured-property-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-5px);
  text-decoration: none;
}

.featured-property-image {
  height: 250px;
  background: linear-gradient(135deg, #003B5C 0%, #0066CC 100%);
  position: relative;
  overflow: hidden;
}

.featured-property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #fff;
  color: #003B5C;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

.featured-property-details {
  padding: 25px;
}

.featured-property-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.featured-property-address {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-property-meta {
  display: flex;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.featured-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .property-types-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 500px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }
  
  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 15px 30px;
    font-size: 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-header-wrap {
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
