.commercial-areas {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
  min-height: 100vh;
}

.commercial-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.commercial-header {
  text-align: center;
  margin-bottom: 60px;
}

.commercial-tag {
  display: inline-block;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.2px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
  text-transform: uppercase;
}

.commercial-title {
  font-size: 3rem;
  font-weight: 800;
  color: #18365b;
  margin-bottom: 15px;
  line-height: 1.1;
}

.commercial-title span {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.commercial-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

/* Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.area-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #ea580c);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.15);
  border-color: #ffedd5;
}

.area-card:hover::before {
  opacity: 1;
}

/* Card Header */
.area-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.area-type {
  font-size: 12px;
  font-weight: 800;
  color: #f97316;
  background: #ffedd5;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #fdba74;
}

.area-badge {
  font-size: 11px;
  font-weight: 800;
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.badge-premium {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.badge-growing {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.badge-established {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Card Content */
.area-name {
  font-size: 1.625rem;
  font-weight: 600;
  color: #18365b;
  margin-bottom: 12px;
}

.area-location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 0.9375rem;
  margin-bottom: 25px;
}

.area-location i {
  color: #f97316;
}

/* Price Section */
.area-pricing {
  background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
  border-radius: 16px;
  padding: 25px;
  margin: 25px 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.price-item {
  text-align: center;
}

.price-label {
  font-size: 0.8125rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.price-value {
  /* font-size: 1.75rem; */
  font-size: 0.97rem;
  font-weight: 800;
  color: #18365b;
  line-height: 1;
}

.price-unit {
  font-size: 0.875rem;
  color: #666;
  font-weight: 600;
  margin-left: 2px;
}

/* Features */
.area-features {
  margin: 25px 0;
}

.features-title {
  font-size: 0.875rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #444;
  font-weight: 500;
}

.commercial-areas .feature-item i {
  color: #f97316;
  font-size: 0.875rem;
  min-width: 16px;
}

/* Business Types */
.business-types {
  margin: 25px 0;
}

.types-title {
  font-size: 0.875rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.types-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.type-tag {
  font-size: 0.75rem;
  padding: 6px 16px;
  background: #f5f5f5;
  border-radius: 15px;
  color: #555;
  font-weight: 600;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.area-card:hover .type-tag {
  background: #ffedd5;
  color: #9a3412;
  border-color: #fdba74;
}

/* Card Footer */
.area-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  gap: 20px;
}

.area-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f97316;
  font-weight: 700;
  background: #ffedd5;
  padding: 10px 22px;
  border-radius: 20px;
  border: 1px solid #fdba74;
  display: none;
}

.area-stats i {
  font-size: 0.875rem;
}

.area-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #18365b;
  color: white;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.area-btn:hover {
  background: #f97316;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .commercial-header {
    margin-bottom: 20px;
  }
  .areas-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 16px 20px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .area-card {
    flex: 0 0 97%; /* 👈 next card peek */
    scroll-snap-align: start;
  }
  .area-features {
    display: none;
  }
  .area-type {
    padding: 6px 9px;
  }
  .commercial-areas {
    padding: 60px 20px;
  }

  .commercial-title {
    font-size: 2.25rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .price-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* .features-grid {
                grid-template-columns: 1fr;
            }
             */
  .area-footer {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .area-btn {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .area-footer {
    padding-top: 0px;
  }
  .commercial-areas {
    min-height: auto;
  }
  .area-header {
    gap: 12px;
  }
  .commercial-title {
    /* font-size: 2rem; */
    font-size: 28px;
  }

  .area-card {
    padding: 15px;
  }

  .area-name {
    font-size: 1.5rem;
  }
}
