#floor-plans-sec {
  padding: 40px 20px;
  background: #f9f9f9;
}

.floor-plans-con {
  max-width: 1200px;
  margin: 0 auto;
}

.floor-plan-text-con {
  text-align: center;
  margin-bottom: 40px;
}

.floor-plan-text-con h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-col);
  margin-bottom: 10px;
}

.floor-plan-text-con p {
  font-size: 1rem;
  color: #666;
}

.plans-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.category-btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-col);
  background: #ffffff;
  border: 2px solid var(--primary-col);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.category-btn.active {
  background: var(--primary-col);
  color: #ffffff;
}

.project-plans {
  display: none;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.project-plans.active {
  display: flex;
}

.project-plans img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  filter: blur(3px);
  cursor: pointer;
}

#master-plan img {
  max-width: 600px;
  width: 100%;
}

#floor-plans img {
  max-width: 500px;
  width: 100%;
}

/* ===== TABLET & DESKTOP BREAKPOINT (1200px) ===== */
@media (max-width: 1200px) {
  #floor-plans-sec {
    padding: 35px 15px;
  }

  .floor-plan-text-con h3 {
    font-size: 2rem;
  }

  .plans-buttons {
    gap: 15px;
  }

  .category-btn {
    padding: 10px 25px;
    font-size: 0.95rem;
  }

  #master-plan img {
    max-width: 500px;
  }

  #floor-plans img {
    max-width: 450px;
  }
}

/* ===== TABLET BREAKPOINT (900px) ===== */
@media (max-width: 900px) {
  #floor-plans-sec {
    padding: 30px 12px;
  }

  .floor-plan-text-con {
    margin-bottom: 30px;
  }

  .floor-plan-text-conn h3 {
    font-size: 1.75rem;
  }

  .floor-plan-text-con p {
    font-size: 0.95rem;
  }

  .plans-buttons {
    gap: 12px;
    margin-bottom: 30px;
  }

  .category-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .project-plans {
    gap: 20px;
  }

  #master-plan img {
    max-width: 100%;
    width: 90%;
  }

  #floor-plans img {
    max-width: 100%;
    width: 85%;
  }
}

/* ===== MOBILE BREAKPOINT (520px) ===== */
@media (max-width: 520px) {
  #floor-plans-sec {
    padding: 25px 10px;
  }

  .floor-plan-text-con {
    margin-bottom: 25px;
  }

  .floor-plan-text-con h3 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .floor-plan-text-con p {
    font-size: 0.85rem;
  }

  .plans-buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
  }

  .category-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: 100%;
  }

  .project-plans {
    gap: 15px;
  }

  .project-plans img {
    filter: blur(2px);
  }

  #master-plan img {
    max-width: 100%;
    width: 95%;
  }

  #floor-plans img {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== SMALL MOBILE BREAKPOINT (375px) ===== */
@media (max-width: 375px) {
  #floor-plans-sec {
    padding: 20px 8px;
  }

  .floor-plan-text-con {
    margin-bottom: 20px;
  }

  .floor-plan-text-con h3 {
    font-size: 1.2rem;
  }

  .floor-plan-text-con p {
    font-size: 0.8rem;
  }

  .plans-buttons {
    gap: 8px;
    margin-bottom: 20px;
  }

  .category-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    width: 100%;
  }

  .project-plans {
    gap: 12px;
  }

  .project-plans img {
    filter: blur(2px);
  }

  #master-plan img {
    max-width: 100%;
    width: 95%;
  }

  #floor-plans img {
    max-width: 100%;
    width: 100%;
  }
}
