.pd__hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.pd__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,36,32,0.92) 0%, rgba(10,36,32,0.4) 60%, transparent 100%);
}

.pd__hero-content {
  position: absolute;
  bottom: 60px;
  left: 48px;
  z-index: 2;
}

.pd__hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pd__hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pd__hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.pd__hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}

.pd__section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.pd__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.pd__about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pd__desc {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
}

.pd__highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.pd__highlight-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.pd__features {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px;
}

.pd__features-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.pd__features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd__features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

.pd__features-list svg {
  color: var(--gold);
  flex-shrink: 0;
}


.pd__gallery .pd__container {
  margin-bottom: 32px;
}

.pd__gallery-main {
  width: 100%;
  height: 68vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #060e0c;
}

.pd__gallery-main img {
  max-width: 100%;
  max-height: 68vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s;
}

.pd__gallery-thumbs {
  display: flex;
  gap: 4px;
  padding: 4px 48px;
  overflow-x: auto;
}

.pd__gallery-thumb {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  border: 2px solid transparent;
}

.pd__gallery-thumb--active {
  opacity: 1;
  border-color: var(--gold);
}

.pd__gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.pd__floor-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.pd__floor-tab {
  padding: 14px 40px;
  font-size: 16px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -1px;
}

.pd__floor-tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.pd__floor-img {
  display: flex;
  justify-content: center;
}

.pd__floor-img img {
  max-width: 700px;
  width: 100%;
  object-fit: contain;
}


.pd__contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pd__contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pd__contact-phone {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
  text-decoration: none;
}

.pd__contact-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  text-decoration: none;
  width: fit-content;
}

.pd__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd__input {
  width: 100%;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 16px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.pd__input:focus {
  border-color: var(--gold);
}

.pd__input::placeholder {
  color: rgba(255,255,255,0.3);
}

.pd__textarea {
  resize: vertical;
  min-height: 120px;
}





@media (max-width: 900px) {
  .pd__hero-content { left: 24px; bottom: 40px; }
  .pd__about-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd__contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd__container { padding: 0 24px; }
  .pd__gallery-thumbs { padding: 4px 24px; }
}















.pd__gallery-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.pd__gallery-tab {
  padding: 14px 32px;
  font-size: 15px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -1px;
}

.pd__gallery-tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.pd__gallery-main {
  position: relative;
  cursor: zoom-in;
}


.pd__gallery-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--gold);
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.2s;
}

.pd__gallery-main:hover .pd__gallery-zoom { opacity: 1; }

.pd__videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.pd__video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.pd__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
}

.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gold);
  font-size: 64px;
  cursor: pointer;
  padding: 0 24px;
  line-height: 1;
}

.lightbox__prev { left: 0; }
.lightbox__next { right: 0; }

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
}


.pd__map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
