/* ============================================
   Real Estate Page - Specific Styles
   ============================================ */

/* Mission Section */
.re-mission {
  background: var(--white);
  padding: 80px 0;
}

.re-mission-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.re-mission-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  background: var(--bg-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.re-mission-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.re-mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
}

/* Opportunities Section */
.re-opportunities {
  background: var(--white);
  padding: 0 0 80px;
}

.re-section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  margin-bottom: 40px;
}

/* Filters */
.re-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.re-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #e5e7eb;
  background: transparent;
  color: #374151;
  font-size: 0.9rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
}

.re-filter.active {
  background: var(--bg-dark);
  color: var(--white);
  border-color: var(--bg-dark);
}

.re-filter:hover:not(.active) {
  border-color: #9ca3af;
}

.re-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  font-size: 0.75rem;
  font-weight: 600;
}

.re-filter.active .re-filter-count {
  background: rgba(255,255,255,0.2);
}

/* Projects Grid */
.re-projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Project Card */
.re-project-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.re-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.re-project-card.hidden {
  display: none;
}

/* Project Image */
.re-project-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.re-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.re-project-card:hover .re-project-image img {
  transform: scale(1.05);
}

.re-project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.re-project-badge svg {
  width: 20px;
  height: 20px;
  stroke: #374151;
}

.re-project-location {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(200, 213, 48, 0.9);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #1a1a1a;
}

.re-project-location svg {
  width: 8px;
  height: 8px;
}

/* Project Info */
.re-project-info {
  padding: 24px;
}

.re-project-info h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.re-project-type {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 16px;
  font-weight: 500;
}

.re-project-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 20px;
}

.re-project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  transition: color 0.3s ease;
}

.re-project-link:hover {
  color: #c8d530;
}

.re-project-link svg {
  transition: transform 0.3s ease;
}

.re-project-link:hover svg {
  transform: translate(2px, -2px);
}

/* CTA Section */
.re-cta {
  background: var(--bg-dark);
  padding: 80px 0;
  text-align: center;
}

.re-cta h2 {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.re-cta p {
  color: var(--white-70);
  margin-bottom: 32px;
  font-size: 1rem;
}

.btn-outline-dark {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--white-30);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  border-color: var(--white);
  background: var(--white-10);
}

/* Responsive */
@media (max-width: 768px) {
  .re-projects-grid {
    grid-template-columns: 1fr;
  }
  
  .re-section-title {
    font-size: 2rem;
  }
  
  .re-filters {
    gap: 8px;
  }
  
  .re-filter {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  
  .re-cta h2 {
    font-size: 1.4rem;
  }
}

.filter-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 4px; vertical-align: middle; }
