.header-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.header-img-wrapper {
  position: relative;
  min-height: 220px;
}

.header-section {
  background: #111;
  border-radius: 20px 20px 0 0;
  padding-bottom: 70px;
  position: relative;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
}

.profile-card {
  background: #111;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  /* margin-top: 50px; */
  padding-bottom: 10px;
  position: relative;
  margin-left: 180px;
  /* z-index: 2; */
  align-items: center;
  display: flex;
}


.verified-tick {
  position: absolute;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
  z-index: 2;
}

.verified-tick img {
  width: 40px;
  height: 40px;
  display: block;
}

.profile-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #fff;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 70px;
  left: 40px;
}

.profile-circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.profile-info {
  margin-left: 18px;
}

.profile-section {
  display: flex;
  align-items: center;
  margin-top: 60px;
}

.profile-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff
}

.profile-rating {
  color: #f5b50a;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.profile-location {
  color: #fff;
  font-size: 0.95rem;
}

.book-btn {
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s;
}

.book-btn:hover {
  background: #1565c0;
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 24px 0;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.stats-item {
  text-align: center;
  flex: 1;
}

.stats-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1976d2;
}

.stats-label {
  font-size: 0.95rem;
  color: #555;
}

.tabs {
  padding: 12px 18px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #444;
  display: flex;
  background: #111;
}

.tab {

  flex: 1;
  text-align: center;
  padding: 14px 0;
  cursor: pointer;
  font-weight: 500;
  color: #888;
  transition: color 0.2s, border-bottom 0.2s;
}

.tab.active {
  color: #d29e19;
    border-bottom: 3px solid #d29e19;
  font-weight: bold;
}

/* Content styling */
.tab-content {
  display: none;
  padding: 16px;
}

.tab-content.active {
  display: block;
}

.overviewcontent,
.offeringscontent,
.contactcontent {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #fff;
  display: flex;
  gap: 20px;
}

.tabsections {
  display: flex;
  gap: 20 px;
}

.about-section {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #fff;
  flex: 7;
  margin-right: 40px;
}

.map-box {
  width: 400px;
  height: 300px;
  border: 2px solid #333;
  border-radius: 10px;
  overflow: hidden;
  flex: 3;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.card {
  border: 1px solid #555;
  padding: 20px;
  border-radius: 12px;
  width: 500px;
  margin-bottom: 20px;
}

.images img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  margin-right: 6px;
}

.price {
  color: #ffb700;
  margin-top: 10px;
  font-size: 18px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
  font-size: 18px;
}

iframe {
  border: 0;
  border-radius: 14px;
  width: 500px;
  height: 360px;
}

.map-img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 700px) {
  .container {
    margin: 0;
    border-radius: 0;
    max-width: 100vw;
  }

  .tab-content {
    padding: 16px;
  }

}

@media (max-width: 500px) {
  .header-img {
    height: 140px;
  }

  .profile-circle {
    width: 60px;
    height: 60px;
  }

  .profile-circle img {
    width: 40px;
    height: 40px;
  }

  .profile-title {
    font-size: 1rem;
  }

  .stats-bar {
    padding: 10px 0;
  }

  .tab {
    padding: 10px 0;
    font-size: 0.95rem;
  }

  .book-button .book-btn {
    position: relative;
    z-index: 9999 !important;
    pointer-events: auto !important;
  }

  .book-button {
    position: relative;
    z-index: 9999 !important;
  }

  .skeleton {
  background: linear-gradient(90deg, #eee 25%, #e0e0e0 37%, #eee 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.2s infinite;
  border-radius: 8px;
}
@keyframes skeleton-loading {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}
.skeleton-header-img { width: 100%; height: 220px; margin-bottom: 16px; }
.skeleton-profile { display: flex; align-items: center; margin-bottom: 16px; }
.skeleton-profile-circle { width: 100px; height: 100px; border-radius: 50%; margin-right: 18px; }
.skeleton-profile-info { flex: 1; }
.skeleton-text { margin-bottom: 8px; }
.skeleton-stats-bar { display: flex; gap: 16px; margin-bottom: 16px; }
.skeleton-stat { flex: 1; height: 32px; }
.skeleton-tabs { display: flex; gap: 12px; margin-bottom: 16px; }
.skeleton-tab { flex: 1; height: 32px; }
.skeleton-tab-content { width: 100%; height: 180px; }

}