/* --- General Layout --- */
.business-view {
  padding: 40px 15px;
  background: #f9fafc;
}

.business-view .container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* --- Image Section --- */
.image-gallery {
  flex: 1 1 380px;
  text-align: center;
  padding: 20px;
}

.main-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  background: #fff;
}

.thumbs {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.thumbs img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.thumbs img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* --- Details Section --- */
.details {
  flex: 1 1 450px;
  padding: 20px 25px 25px 25px;
}

.details h2 {
  color: #004aad;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.details .category, .details .city {
  color: #555;
  font-size: 15px;
  margin: 2px 0;
}

.info-box {
  background: #f7f9ff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  margin-top: 15px;
}

.info-box p {
  margin: 6px 0;
  font-size: 15px;
  color: #333;
}

.info-box a {
  color: #004aad;
  text-decoration: none;
}
.info-box a:hover {
  text-decoration: underline;
}

/* --- Description --- */
.desc {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.desc h4 {
  color: #004aad;
  margin-bottom: 6px;
}

/* --- Social Icons --- */
.social-links {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #004aad;
  font-size: 18px;
  transition: 0.3s;
}

.social-links .icon:hover {
  background: #004aad;
  color: #fff;
}

.icon.fb:hover { background: #3b5998; }
.icon.insta:hover { background: #E4405F; }
.icon.web:hover { background: #0078d4; }
.icon.drive:hover { background: #4285F4; }

/* --- Buttons --- */
.contact-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-call, .btn-whatsapp {
  flex: 1 1 48%;
  text-align: center;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-call { background: #004aad; }
.btn-whatsapp { background: #25D366; }

.btn-call:hover { background: #003080; }
.btn-whatsapp:hover { background: #1EA851; }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .business-view .container {
    flex-direction: column;
    padding: 15px;
  }
  .image-gallery, .details {
    flex: 1 1 100%;
    padding: 15px;
  }
  .main-image img {
    max-height: 300px;
  }
}

@media (max-width: 600px) {
  .details h2 {
    font-size: 1.4rem;
  }
  .info-box, .desc {
    padding: 12px;
  }
  .thumbs img {
    width: 65px;
    height: 65px;
  }
  .contact-buttons {
    flex-direction: column;
  }
  .btn-call, .btn-whatsapp {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .main-image img {
    max-height: none;
    object-fit: contain;
  }
}

