/* ===================== SKS TOWER HERO ===================== */
.sks-tower-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sks-tower-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sks-tower-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.sks-tower-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    120deg,
    rgba(15, 40, 30, 0.85),
    rgba(31, 77, 58, 0.65)
  );
}

/* content */
.sks-tower-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  color: #fff;
}

/* breadcrumb */
.sks-tower-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.sks-tower-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.sks-tower-breadcrumb span {
  margin: 0 6px;
}

/* title */
.sks-tower-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* description */
.sks-tower-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 600px;
  color: rgba(255,255,255,0.9);
}

/* subtle glow */
.sks-tower-title {
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* responsive */
@media (max-width: 991px) {
  .sks-tower-title {
    font-size: 2.3rem;
  }

  .sks-tower-desc {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .sks-tower-hero {
    height: 60vh;
  }

  .sks-tower-title {
    font-size: 1.9rem;
  }

  .sks-tower-desc {
    font-size: 0.9rem;
  }
}

/* ===================== SKS FLOOR DIRECTORY ===================== */
.sks-floor-directory-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.sks-floor-tag {
  display: inline-block;
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.sks-floor-title {
  color: var(--brand-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sks-floor-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
}

.sks-floor-panel {
  background: #fff;
  border-radius: 30px;
  padding: 1.5rem;
  border: 1px solid rgba(31, 77, 58, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

/* Left Tower */
.sks-tower-map-card {
  height: 100%;
  border-radius: 26px;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(31, 77, 58, 0.08), rgba(201, 162, 39, 0.08));
}

.sks-tower-map-title {
  color: var(--brand-primary);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.2rem;
}

.sks-tower-building {
  max-width: 270px;
  margin: 0 auto;
  background: #173d2e;
  padding: 14px;
  border-radius: 24px 24px 12px 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.sks-floor-btn {
  width: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-primary);
  padding: 0.7rem 0.8rem;
  margin-bottom: 6px;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  transition: 0.25s ease;
}

.sks-floor-btn:last-child {
  margin-bottom: 0;
}

.sks-floor-btn:hover,
.sks-floor-btn.active {
  background: var(--brand-secondary);
  color: #111;
  transform: translateX(6px);
}

/* Right Info */
.sks-floor-info-card {
  height: 100%;
  border-radius: 26px;
  padding: 1.7rem;
  border: 1px solid rgba(31, 77, 58, 0.08);
  background: #fff;
}

.sks-floor-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.sks-floor-current-label {
  display: inline-block;
  color: var(--brand-secondary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.sks-floor-info-top h3 {
  color: var(--brand-primary);
  font-weight: 800;
  margin: 0;
}

.sks-floor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 77, 58, 0.08);
  color: var(--brand-primary);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
}

.sks-floor-description {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.sks-floor-office-box {
  background: rgba(31, 77, 58, 0.04);
  border-radius: 20px;
  padding: 1.2rem;
  margin-bottom: 1.3rem;
}

.sks-floor-office-box h5,
.sks-floor-gallery h5 {
  color: var(--brand-primary);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.sks-floor-office-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.sks-floor-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Image Cards */
.sks-floor-image-card {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.sks-floor-image-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.sks-floor-image-card:hover img {
  transform: scale(1.08);
}

.sks-floor-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 77, 58, 0.62);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  opacity: 0;
  transition: 0.3s ease;
}

.sks-floor-image-card:hover .sks-floor-image-overlay {
  opacity: 1;
}

/* ===================== IMAGE POPUP ===================== */
.sks-image-popup {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 15, 0.88);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.sks-image-popup.active {
  display: flex;
}

.sks-popup-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.sks-popup-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.sks-popup-caption {
  margin-top: 1rem;
  color: #fff;
}

.sks-popup-caption h4 {
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.sks-popup-caption p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.sks-popup-close,
.sks-popup-nav {
  position: absolute;
  border: none;
  background: #fff;
  color: var(--brand-primary);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: 0.3s ease;
}

.sks-popup-close {
  top: 24px;
  right: 24px;
}

.sks-popup-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.sks-popup-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.sks-popup-close:hover,
.sks-popup-nav:hover {
  background: var(--brand-secondary);
  color: #111;
}

/* Responsive */
@media (max-width: 991.98px) {
  .sks-floor-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sks-tower-building {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .sks-floor-title {
    font-size: 1.55rem;
  }

  .sks-floor-panel {
    padding: 1rem;
    border-radius: 22px;
  }

  .sks-floor-info-card,
  .sks-tower-map-card {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .sks-floor-info-top {
    flex-direction: column;
  }

  .sks-floor-image-grid {
    grid-template-columns: 1fr;
  }

  .sks-popup-prev {
    left: 10px;
  }

  .sks-popup-next {
    right: 10px;
  }

  .sks-popup-close {
    top: 14px;
    right: 14px;
  }
}

/* ===================== SKS MAP SECTION ===================== */
.sks-map-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.sks-map-tag {
  display: inline-block;
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.sks-map-title {
  color: var(--brand-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sks-map-subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
}

/* wrapper */
.sks-map-wrapper {
  background: #fff;
  border-radius: 30px;
  padding: 1.5rem;
  border: 1px solid rgba(31, 77, 58, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

/* map */
.sks-map-embed {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.sks-map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* info card */
.sks-map-info-card {
  height: 100%;
  border-radius: 24px;
  padding: 1.8rem;
  background: linear-gradient(
    135deg,
    rgba(31, 77, 58, 0.06),
    rgba(201, 162, 39, 0.08)
  );
  border: 1px solid rgba(31, 77, 58, 0.08);
}

.sks-map-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--brand-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.sks-map-info-card h3 {
  color: var(--brand-primary);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.sks-map-address {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sks-map-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sks-map-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sks-map-details i {
  color: var(--brand-primary);
}

/* responsive */
@media (max-width: 767.98px) {
  .sks-map-title {
    font-size: 1.6rem;
  }

  .sks-map-wrapper {
    padding: 1rem;
    border-radius: 22px;
  }

  .sks-map-info-card {
    padding: 1.4rem;
  }
}

/* ===================== SKS PROJECT SUMMARY ===================== */
.sks-project-summary-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.sks-project-summary-box {
  background: #fff;
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid rgba(31, 77, 58, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.sks-project-summary-box::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(201, 162, 39, 0.13);
  filter: blur(90px);
  right: -100px;
  top: -100px;
}

.sks-project-summary-head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 2rem;
}

.sks-project-summary-tag {
  display: inline-block;
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.sks-project-summary-head h2 {
  color: var(--brand-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sks-project-summary-head p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.sks-project-summary-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.sks-project-summary-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(31, 77, 58, 0.055), rgba(201, 162, 39, 0.06));
  border: 1px solid rgba(31, 77, 58, 0.08);
  border-radius: 22px;
  padding: 1.2rem;
  transition: 0.3s ease;
}

.sks-project-summary-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.sks-project-summary-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--brand-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex: 0 0 58px;
}

.sks-project-summary-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.sks-project-summary-item h4 {
  color: var(--brand-primary);
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

@media (min-width: 992px) {
  .sks-project-summary-item:nth-child(5) {
    grid-column: span 2;
  }
}

@media (max-width: 767.98px) {
  .sks-project-summary-box {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .sks-project-summary-head h2 {
    font-size: 1.55rem;
  }

  .sks-project-summary-grid {
    grid-template-columns: 1fr;
  }

  .sks-project-summary-item {
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
  }

  .sks-project-summary-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    font-size: 1.15rem;
  }

  .sks-project-summary-item h4 {
    font-size: 1rem;
  }
}

/* ===================== SKS PARKING COUNTER ===================== */
.sks-parking-counter-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.sks-parking-counter-box {
  background: #fff;
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid rgba(31, 77, 58, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.sks-parking-counter-head span {
  display: inline-block;
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.sks-parking-counter-head h2 {
  color: var(--brand-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0;
}

.sks-parking-counter-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  height: 100%;
  padding: 1.6rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31, 77, 58, 0.07), rgba(201, 162, 39, 0.09));
  border: 1px solid rgba(31, 77, 58, 0.08);
  transition: 0.3s ease;
}

.sks-parking-counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.11);
}

.sks-parking-counter-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: var(--brand-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex: 0 0 76px;
}

.sks-parking-counter-card h3 {
  color: var(--brand-primary);
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 0.2rem;
}

.sks-parking-counter-card h3 small {
  font-size: 1rem;
  color: var(--brand-secondary);
  font-weight: 800;
}

.sks-parking-counter-card p {
  color: var(--text-muted);
  margin: 0;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .sks-parking-counter-box {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .sks-parking-counter-head h2 {
    font-size: 1.55rem;
  }

  .sks-parking-counter-card {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .sks-parking-counter-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    font-size: 1.45rem;
  }

  .sks-parking-counter-card h3 {
    font-size: 2rem;
  }
}