.prime-areas {
  /* padding: 80px 20px; */
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  min-height: 100vh;
}

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

/* Header - Original Orange Theme */
.prime-areas .prime-header {
  text-align: center;
  margin-bottom: 60px;
}

.prime-areas .prime-tag {
  display: inline-block;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
  text-transform: uppercase;
}

.prime-areas .prime-title {
  font-size: 3.5rem;
  font-weight: 600;
  color: #18365b;
  margin-bottom: 15px;
  line-height: 1.1;
}

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

.prime-areas .prime-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats - Original Theme */
.prime-areas .prime-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.prime-areas .prime-stat {
  background: white;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: all 0.4s ease;
}

.prime-areas .prime-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #f97316;
}

.prime-areas .prime-stat-value {
  font-size: 30px;
  font-weight: 600;
  color: #18365b;
  margin-bottom: 8px;
}

.prime-areas .prime-stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Tabs - Working */
.prime-areas .prime-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.prime-areas .prime-tab {
  padding: 16px 32px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.prime-areas .prime-tab:hover {
  border-color: #f97316;
  color: #f97316;
  transform: translateY(-3px);
}

.prime-areas .prime-tab.active {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
  border-color: #f97316;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.2);
}

.prime-areas .prime-tab i {
  font-size: 1.125rem;
}

/* Properties Section */
.prime-areas .properties-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 20px 0;
  border-bottom: 2px solid #e2e8f0;
}

.prime-areas .area-properties-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #18365b;
}

.prime-areas .area-properties-title span {
  color: #f97316;
}

.prime-areas .properties-count {
  background: #ffedd5;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  color: #9a3412;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #fdba74;
}

/* Property Cards - Modern Design */
.prime-areas .property-list {
  display: grid;
  gap: 30px;
  margin-bottom: 60px;
  grid-template-columns: repeat(auto-fit, 413px);
}

.prime-areas .property-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 2px solid #e2e8f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.prime-areas .property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: #f97316;
}

.prime-areas .property-type {
  font-size: 0.75rem;
  font-weight: 800;
  color: #f97316;
  background: #ffedd5;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #fdba74;
}

.prime-areas .property-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.prime-areas .property-title {
  font-size: 22px;
  font-weight: 700;
  color: #18365b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.prime-areas .property-location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.prime-areas .property-location i {
  color: #f97316;
}

.prime-areas .property-price {
  font-size: 18px;
  font-weight: 800;
  color: #18365b;
  margin-bottom: 30px;
}

.prime-areas .property-price span {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
}

.prime-areas .property-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.prime-areas .property-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prime-areas .property-feature i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 12px;
  color: #f97316;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.prime-areas .property-card:hover .prime-areas .property-feature i {
  background: #ffedd5;
  transform: scale(1.1);
}

.prime-areas .property-feature span {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 600;
}

.prime-areas .property-feature .value {
  color: #18365b;
  font-weight: 800;
  margin-left: 4px;
}

.prime-areas .property-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
}
/* NEW: Property Image Styling */
.prime-areas .property-image-container {
  height: 220px;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 20px;
  position: relative;
}

.prime-areas .property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prime-areas .property-card:hover .property-image {
  transform: scale(1.05);
}

.prime-areas .property-image-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.prime-areas .property-highlight {
  font-size: 0.75rem;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  transition: all 0.3s ease;
}

.prime-areas .property-card:hover .property-highlight {
  background: #ffedd5;
  color: #9a3412;
}

.prime-areas .property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.prime-areas .property-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f97316;
  font-weight: 700;
  background: #ffedd5;
  padding: 8px 16px;
  border-radius: 20px;
}

.prime-areas .property-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #18365b 0%, #1e293b 100%);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(15, 23, 39, 0.15);
}

.prime-areas .property-btn:hover {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
}

/* Area Info Sections - Tab Switching */
.prime-areas .area-info {
  display: none;
  animation: fadeIn 0.5s ease;
}

.prime-areas .area-info.active {
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .prime-areas .property-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .prime-areas .prime-title {
    font-size: 2.75rem;
  }

  .prime-areas .area-properties-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 768px) {
  .prime-areas .prime-header {
    margin-bottom: 20px;
  }
  .prime-areas .property-price {
    margin-bottom: 15px;
  }
  .prime-areas .prime-stats {
    display: none;
  }
  .prime-areas .property-highlights {
    display: none;
  }
  .prime-areas .property-rating {
    display: none;
  }
  .prime-areas .property-features .property-feature {
    display: none;
  }

  .prime-areas .property-features .property-feature:nth-child(1),
  .prime-areas .property-features .property-feature:nth-child(2) {
    display: flex; /* kyunki ye flex item hai */
  }
  .prime-areas .prime-tabs {
    display: flex;
    gap: 12px;

    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 10px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .prime-areas .prime-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
    padding: 10px 16px;
    border-radius: 12px;
  }
  .prime-areas .property-list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 16px 20px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .prime-areas .property-list {
    margin-bottom: 0;
  }

  /* Card style */
  .prime-areas .property-card {
    flex: 0 0 98%;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }

  .prime-areas .prime-areas {
    padding: 60px 20px;
  }

  .prime-areas .prime-title {
    font-size: 2.25rem;
  }

  .prime-areas .prime-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 15px;
    margin: 0 4px 0px;
    padding-left: 20px;
  }

  .prime-areas .prime-tab {
    flex: 0 0 auto;
    padding: 14px 24px;
    font-size: 0.875rem;
  }

  .prime-areas .properties-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .prime-areas .property-list {
    gap: 15px;
  }

  .prime-areas .property-card {
    padding: 10px;
  }

  /* .prime-areas .property-features {
    grid-template-columns: 1fr;
  } */

  /* custom change */
  .prime-areas .property-features {
    /* grid-template-columns: 1fr; */
  }
}

@media (max-width: 576px) {
  .prime-areas .prime-title {
    /* font-size: 1.875rem; */
    font-size: 28px;
  }

  .prime-areas .prime-stats {
    gap: 20px;
  }

  .prime-areas .prime-stat {
    padding: 15px;
  }

  .prime-areas .prime-stat-value {
    font-size: 20px;
  }

  .prime-areas .area-properties-title {
    font-size: 1.5rem;
  }

  .prime-areas .property-price {
    font-size: 16px;
  }
  .prime-areas .property-title {
    font-size: 20px;
  }
  .prime-areas .property-footer {
    flex-direction: column;
    align-items: stretch;
    /* custom change */
    /* gap: 20px; */
  }

  .prime-areas .property-btn {
    justify-content: center;
  }
  .prime-areas .property-type {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
  }
  .prime-areas .property-header {
    gap: 10px;
  }
  .prime-areas .property-features {
    gap: 10px;
  }

  /* custom css */

  .prime-areas .property-feature span {
    /* font-size: 0.875rem; */
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .prime-areas .property-feature i {
    width: 19px;
    height: 19px;
    font-size: 10px;
  }
  .prime-areas {
    /* padding: 80px 20px; */
    padding: 0px 20px;
    min-height: auto;
  }
}
