.area-pricing-section {
  margin-top: 30px;
  width: 100%;
  background: linear-gradient(99deg, #f5fafd 60%, #eaf1fd 100%);
  box-shadow: 0 8px 32px 0 rgba(24,155,250,0.06);
  border-radius: 18px;
  padding: 4px 0 32px 0;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.ap-title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: .2px;
  color: #173650;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  font-family: inherit;
}
.ap-container {
  width: 99%;
  max-width: 850px;
  margin: 0 auto;
  border: 3px solid #1a3d7c;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 4px 36px 0 rgba(41,51,93,0.08);
}

.ap-tabs {
  display: flex;
  border-bottom: 3px solid #1a3d7c;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  background: linear-gradient(90deg, #dde9ff 85%, #cfe4fa 100%);
}

.ap-tab {
  flex: 1;
  padding: 20px 0;
  text-align: center;
  cursor: pointer;
  font-size: 1.18rem;
  color: #145aa0;
  font-weight: 600;
  border-right: 2px solid #1a3d7c;
  border-bottom: 3px solid transparent;
  transition: background 0.23s, border-color 0.2s, color 0.18s, font-size 0.23s;
  user-select: none;
  background: transparent;
  letter-spacing: 0.3px;
  outline: none;
}
.ap-tab:last-child { border-right: none; }
.ap-tab.active {
  background: #1a3d7c;
  color: #fff;
  border-bottom: 3px solid #189bfa;
  box-shadow: 0 5px 16px 0 rgba(24,155,250,.12);
  font-size: 1.23rem;
}
.ap-tab:focus { background: #189bfa; color: #fff; }
.ap-tab:hover:not(.active) { background: #f3faff; color: #1279c9; }

.ap-viewer {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  height: 490px;
  padding: 30px 10px 40px 10px;
  background: linear-gradient(115deg, #f3fafd 50%, #e5eefd 100%);
  border-radius: 0 0 14px 14px;
  border-top: none;
}
.ap-viewer img {
  width: 95%;
  max-width: 740px;
  min-width: 285px;
  max-height: 440px;
  border-radius: 18px;
  object-fit: contain;
  cursor: zoom-in;
  transition: opacity 0.3s ease;
  outline: none;
}

/* Modal (fullscreen image overlay) */
.ap-modal {
  display: none;
  position: fixed;
  z-index: 20000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(16,32,53,0.91);
  justify-content: center;
  align-items: center;
  padding: 0;
}
.ap-modal.open { display: flex; }
.ap-modal-img {
  max-width: 95vw;
  max-height: 85vh;
  border-radius: 18px;
  background: #121923;
  box-shadow: 0 12px 68px #11304d88;
  outline: 6px solid #2187d1;
  animation: zoomBig 0.27s cubic-bezier(.48,1.24,.6,.97);
}
@keyframes zoomBig {
  0% { transform: scale(0.75); opacity:0; }
  100% { transform: scale(1); opacity:1; }
}
.ap-modal-close {
  position: absolute;
  top: 36px;
  right: 60px;
  color: #fff;
  background: rgba(32,56,91,0.55);
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  z-index: 2;
  box-shadow: 0 2px 16px #06092652;
}
.ap-modal-close:hover,
.ap-modal-close:focus {
  background: #fff;
  color: #1279c9;
  outline: 2px solid #189bfa;
}