@charset "UTF-8";

/* ==========================================================================
   문수로 비스타 더파크 - 관심고객 등록 웹사이트 스타일시트
   공식 홈페이지의 딥 포레스트 그린 & 샴페인 골드 테마 계승
   모바일 최적화 반응형 디자인
   ========================================================================== */

/* --------------------------------------------------
   1. CSS Reset & Variables
   -------------------------------------------------- */
:root {
  --primary-deep: #08261e;
  --primary: #0d3b2e;
  --primary-light: #165342;
  --primary-subtle: #edf5f1;
  
  --gold: #c5a880;
  --gold-light: #e5d2b8;
  --gold-dark: #a9895c;
  --gold-gradient: linear-gradient(135deg, #dfc6a5 0%, #c5a880 50%, #9e7f52 100%);
  
  --text-main: #192421;
  --text-sub: #546560;
  --text-muted: #83938d;
  --text-white: #ffffff;
  
  --bg-page: #f8faf9;
  --bg-card: #ffffff;
  --bg-dark: #061c16;
  
  --border-light: #e2ebe6;
  --border-gold: rgba(197, 168, 128, 0.4);
  
  --shadow-sm: 0 2px 8px rgba(13, 59, 46, 0.06);
  --shadow-md: 0 6px 20px rgba(13, 59, 46, 0.08);
  --shadow-lg: 0 14px 36px rgba(13, 59, 46, 0.12);
  --shadow-gold: 0 8px 24px rgba(197, 168, 128, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --header-height: 70px;
  --bottom-bar-height: 66px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  font-size: 16px;
  word-break: keep-all;
  overflow-x: hidden;
  padding-bottom: var(--bottom-bar-height);
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------------------------------
   2. Header & Navigation
   -------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 38, 30, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  transition: all 0.3s ease;
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
}

.brand-badge {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px;
}

.brand-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--gold);
}

/* 관심고객등록 메뉴 하이라이트 골드 버튼 & 펄스 효과 */
.nav-link.nav-register-btn {
  background: var(--gold-gradient);
  color: var(--primary-deep) !important;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  animation: registerPulse 2.2s infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-link.nav-register-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.6);
}

@keyframes registerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(197, 168, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
  }
}

/* --------------------------------------------------
   우측 스크롤 고정 플로팅 퀵 배너 (PC/태블릿용)
   -------------------------------------------------- */
.floating-quick-banner {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 170px;
  background: rgba(8, 38, 30, 0.96);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 900;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: floatBounce 3s ease-in-out infinite;
}

@media (min-width: 1200px) {
  .floating-quick-banner {
    display: flex;
  }
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-54%);
  }
}

.floating-quick-header {
  background: var(--gold-gradient);
  padding: 10px 8px;
  text-align: center;
  color: var(--primary-deep);
}

.floating-quick-tag {
  font-size: 11px;
  font-weight: 800;
  display: block;
  letter-spacing: -0.3px;
}

.floating-quick-title {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.floating-quick-body {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.floating-quick-desc {
  font-size: 11.5px;
  color: #cbd5e1;
  line-height: 1.4;
  margin-bottom: 2px;
}

.floating-btn-reg {
  background: var(--gold-gradient);
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(197, 168, 128, 0.35);
  transition: all 0.2s;
}

.floating-btn-reg:hover {
  transform: scale(1.04);
}

.floating-btn-call {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: background-color 0.2s;
}

.floating-btn-call:hover {
  background: rgba(255, 255, 255, 0.2);
}

.floating-btn-kakao {
  background: #fee500;
  color: #191919;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.floating-btn-kakao:hover {
  background: #fdd835;
  transform: scale(1.03);
}

.floating-top-btn {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  padding: 4px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.floating-top-btn:hover {
  color: #fff;
}

/* --------------------------------------------------
   중간 섹션 인라인 CTA 배너 (In-Content Banner)
   -------------------------------------------------- */
.inline-cta-section {
  background: linear-gradient(135deg, #0d3b2e 0%, #061c16 100%);
  color: #fff;
  padding: 44px 0;
  border-top: 1px solid rgba(197, 168, 128, 0.3);
  border-bottom: 1px solid rgba(197, 168, 128, 0.3);
  position: relative;
  overflow: hidden;
}

.inline-cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.inline-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .inline-cta-box {
    flex-direction: row;
    text-align: left;
  }
}

.inline-cta-text h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.35;
}

.inline-cta-text h3 span {
  color: var(--gold-light);
}

.inline-cta-text p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
}

.inline-cta-action {
  flex-shrink: 0;
}

.btn-inline-reg {
  background: var(--gold-gradient);
  color: var(--primary-deep);
  font-size: 16px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
  transition: all 0.25s;
}

.btn-inline-reg:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(197, 168, 128, 0.6);
}

/* --------------------------------------------------
   실시간 등록 롤링 티커 알림 (Social Proof Ticker)
   -------------------------------------------------- */
.live-ticker-wrap {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background: rgba(255, 255, 255, 0.97);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 850;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 330px;
  animation: slideUpFade 0.4s ease-out;
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .live-ticker-wrap {
    bottom: 74px;
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
  }
}

.ticker-avatar {
  width: 36px;
  height: 36px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 800;
}

.ticker-content {
  flex: 1;
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.4;
}

.ticker-content strong {
  color: var(--primary);
}

.ticker-time {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.btn-ticker-close {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-call {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-gradient);
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(197, 168, 128, 0.4);
}

/* --------------------------------------------------
   3. Hero Section (공식 메인 비주얼 이미지 배경 적용)
   -------------------------------------------------- */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 38, 30, 0.82) 0%, rgba(6, 28, 22, 0.94) 100%),
              url('../images/visual6.jpg') no-repeat center center / cover;
  color: #fff;
  padding: 70px 0 80px;
  overflow: hidden;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(22, 79, 62, 0.4) 0%, rgba(8, 38, 30, 0.85) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.hero-tag span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
}

.hero-title-en {
  font-family: 'Cinzel', 'Montserrat', serif;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-main-title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
  word-break: keep-all;
}

@media (min-width: 768px) {
  .hero-main-title {
    font-size: 46px;
  }
}

.hero-main-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 18px;
  }
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: #fff;
  backdrop-filter: blur(4px);
}

.hero-chip strong {
  color: var(--gold-light);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.btn-hero-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: var(--primary-deep);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(197, 168, 128, 0.35);
  transition: all 0.25s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.5);
}

.btn-hero-secondary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------
   4. Section Shared Styles
   -------------------------------------------------- */
.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 90px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-deep);
  letter-spacing: -0.5px;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 34px;
  }
}

.section-desc {
  font-size: 15px;
  color: var(--text-sub);
  margin-top: 10px;
  line-height: 1.6;
}

/* --------------------------------------------------
   5. Benefits Section (관심고객 특별 혜택)
   -------------------------------------------------- */
.benefits-section {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 576px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-card {
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: rgba(13, 59, 46, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
}

.benefit-card:hover .benefit-icon {
  background: var(--primary);
  color: var(--gold-light);
}

.benefit-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.55;
}

/* --------------------------------------------------
   계약 축하금 (리워드/MGM) 수령 절차 및 안내 박스
   -------------------------------------------------- */
.reward-flow-container {
  margin-top: 36px;
  background: #f8faf9;
  border: 1.5px solid rgba(13, 59, 46, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
}

.reward-flow-header {
  text-align: center;
  margin-bottom: 24px;
}

.reward-flow-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.reward-flow-desc {
  font-size: 13.5px;
  color: var(--text-sub);
  margin-top: 6px;
}

.reward-flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 576px) {
  .reward-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .reward-flow-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reward-step-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.25s ease;
}

.reward-step-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.reward-step-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.reward-step-item.highlight-step {
  border-color: var(--gold);
  background: #fffdf9;
}

.reward-step-item.highlight-step .reward-step-badge {
  background: var(--gold-gradient);
  color: var(--primary-deep);
}

.reward-step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.reward-step-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
}

.reward-notice-alert {
  margin-top: 22px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #92400e;
  line-height: 1.6;
}

.reward-notice-alert svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #d97706;
}

/* --------------------------------------------------
   6. Overview Section (사업개요)
   -------------------------------------------------- */
.overview-section {
  background: var(--bg-page);
}

.overview-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 30px 20px;
}

@media (min-width: 768px) {
  .overview-box {
    padding: 44px 36px;
  }
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.overview-item {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  background: #fdfdfd;
  border: 1px solid #edf1ee;
  border-radius: var(--radius-sm);
}

.overview-label {
  width: 100px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.overview-value {
  font-size: 15px;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.5;
}

.overview-badge {
  display: inline-block;
  background: rgba(197, 168, 128, 0.15);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

/* --------------------------------------------------
   6-1. Detailed Sales Info & Supply (분양안내 & 청약가이드)
   -------------------------------------------------- */
.sale-info-section {
  background: #fdfdfd;
  border-bottom: 1px solid var(--border-light);
  padding: 80px 0;
}

/* 분양일정 스텝 프로세스 */
.schedule-process-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .schedule-process-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .schedule-process-wrap {
    grid-template-columns: repeat(5, 1fr);
  }
}

.schedule-step-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.schedule-step-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.schedule-step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-subtle);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.schedule-step-card.active-step {
  border-color: var(--gold);
  background: #fffdf9;
}

.schedule-step-card.active-step .schedule-step-num {
  background: var(--gold);
  color: #fff;
}

.schedule-step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.schedule-step-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.45;
}

/* 청약 1순위 체크포인트 & The Dream 박스 그리드 */
.sale-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .sale-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.guide-box {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
}

.guide-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.guide-box-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-box-icon.gold {
  background: rgba(197, 168, 128, 0.15);
  color: #9e7f52;
}

.guide-box-icon.green {
  background: var(--primary-subtle);
  color: var(--primary);
}

.guide-box-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-deep);
}

.guide-box-sub {
  font-size: 13px;
  color: var(--text-sub);
}

/* 공급안내 이미지 프리뷰 프레임 & 하이라이트 칩 */
.supply-preview-frame {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto 16px;
  background: #fdfdfd;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.supply-preview-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.supply-preview-frame:hover img {
  transform: scale(1.03);
}

.supply-preview-frame::after {
  content: "🔍 클릭하여 고화질 원본 크게보기";
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(13, 59, 46, 0.88);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
}

.supply-highlight-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.supply-chip {
  background: #f8faf9;
  border: 1px solid rgba(13, 59, 46, 0.1);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 12.5px;
  color: var(--text-main);
  line-height: 1.4;
}

.supply-chip strong {
  color: var(--primary-deep);
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-main);
}

.check-item svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item strong {
  color: var(--primary-deep);
}

/* 특별제공품목 (THE DREAM) 특화 박스 */
.thedream-highlight {
  background: linear-gradient(135deg, #fbf7f0 0%, #fff 100%);
  border-color: rgba(197, 168, 128, 0.4);
}

.thedream-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.thedream-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.thedream-item-chip {
  background: #ffffff;
  border: 1px solid rgba(197, 168, 128, 0.25);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  color: #5d4625;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------
   7. Premium Points (NEW PREMIUM 6)
   -------------------------------------------------- */
.premium-section {
  background: #ffffff;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .premium-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.premium-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.premium-thumb-wrap {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.premium-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.premium-card:hover .premium-thumb-img {
  transform: scale(1.05);
}

.premium-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.premium-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: rgba(197, 168, 128, 0.3);
  line-height: 1;
  margin-bottom: 12px;
}

.premium-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.premium-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 10px;
  line-height: 1.35;
}

.premium-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* --------------------------------------------------
   8. Registration Form Section (관심고객 등록 폼)
   -------------------------------------------------- */
.form-section {
  background: radial-gradient(circle at 50% 10%, #0d3b2e 0%, var(--primary-deep) 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
}

.form-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 36px;
}

.form-header .section-sub {
  color: var(--gold);
}

.form-header .section-title {
  color: #fff;
}

.form-header .section-desc {
  color: rgba(255, 255, 255, 0.8);
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
}

@media (min-width: 768px) {
  .form-wrapper {
    padding: 44px 40px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.form-label .req {
  color: #e53e3e;
  margin-left: 2px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #fdfdfd;
  color: var(--text-main);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
  background: #fff;
}

.form-radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 480px) {
  .form-radio-group.col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .form-radio-group.col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.form-radio-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  background: #f8faf9;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sub);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.form-radio-input {
  display: none;
}

.form-radio-input:checked + .form-radio-label {
  background: rgba(13, 59, 46, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}

.privacy-box {
  background: #f8faf9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.privacy-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.5;
}

.privacy-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.btn-privacy-view {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 4px;
}

.btn-submit-form {
  width: 100%;
  background: var(--gold-gradient);
  color: var(--primary-deep);
  font-size: 18px;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 168, 128, 0.5);
}

.btn-submit-form:active {
  transform: translateY(0);
}

.form-notice {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* --------------------------------------------------
   9. Location & Contact (오시는 길 - 첨부 이미지 디자인 반영)
   -------------------------------------------------- */
.location-section {
  background: #08131d;
  color: #fff;
  padding: 80px 0;
}

.location-section .section-header {
  margin-bottom: 48px;
}

.location-tag {
  display: inline-block;
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.4);
  color: #f6c043;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.location-section .section-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
}

.location-section .section-desc {
  color: #94a3b8;
  font-size: 15px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.location-card-dark {
  background: #0f1c2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}

.location-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 192, 67, 0.3);
}

.location-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.badge-site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(246, 192, 67, 0.15);
  border: 1px solid rgba(246, 192, 67, 0.35);
  color: #f6c043;
  font-size: 12.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.badge-status {
  font-size: 12.5px;
  font-weight: 700;
  color: #f6c043;
}

.badge-status.subtle {
  color: #94a3b8;
}

.location-map-thumb {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

@media (min-width: 768px) {
  .location-map-thumb {
    height: 340px;
  }
}

.location-map-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  transition: transform 0.3s ease;
}

.location-map-thumb:hover img {
  transform: scale(1.03);
}

.location-map-thumb::after {
  content: "🔍 클릭하여 큰 이미지로 보기";
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(8, 38, 30, 0.85);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  pointer-events: none;
  border: 1px solid rgba(197, 168, 128, 0.3);
}

/* --------------------------------------------------
   사업안내 & 분양안내 공식 고화질 그래픽 뷰어 카드
   -------------------------------------------------- */
.official-graphic-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
}

.official-graphic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.official-graphic-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.official-graphic-frame {
  width: 100%;
  max-height: 650px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #fdfdfd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.official-graphic-frame img {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: contain;
  display: block;
}

.official-graphic-frame::after {
  content: "🔍 클릭하여 원본 크기로 확대보기";
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(13, 59, 46, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 4px;
  pointer-events: none;
}

/* 탭 버튼 스타일 */
.graphic-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.btn-graphic-tab {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  background: var(--bg-page);
  border: 1px solid var(--border-light);
  color: var(--text-sub);
  transition: all 0.2s;
}

.btn-graphic-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* 이미지 팝업 모달 (Lightbox with Zoom & Pan) */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 20, 0.94);
  z-index: 3000;
  display: none;
  flex-direction: column;
  backdrop-filter: blur(10px);
  user-select: none;
  overflow: hidden;
}

.lightbox-modal.active {
  display: flex;
}

/* 라이트박스 상단 툴바 */
.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 10;
  gap: 12px;
}

.lightbox-title-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lightbox-zoom-badge {
  background: var(--gold-gradient, linear-gradient(135deg, #d4af37, #aa820a));
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  min-width: 52px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.lightbox-hint {
  font-size: 13px;
  color: #cbd5e1;
}

@media (max-width: 640px) {
  .lightbox-hint {
    display: none;
  }
}

.lightbox-btn-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-zoom {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-zoom:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-zoom:active {
  transform: scale(0.96);
}

.btn-lightbox-close {
  background: rgba(239, 68, 68, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(239, 68, 68, 0.4);
  font-size: 20px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
  margin-left: 6px;
}

.btn-lightbox-close:hover {
  background: #ef4444;
  color: #fff;
}

/* 뷰포트 영역 */
.lightbox-viewport {
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.lightbox-viewport.is-dragging {
  cursor: grabbing;
}

.lightbox-content-wrap {
  transform-origin: center center;
  will-change: transform;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.08s ease-out;
}

.lightbox-content-wrap.no-transition {
  transition: none;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  background: #fff;
  pointer-events: none; /* 드래그 시 이미지 기본 드래그 방지 */
}

.location-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.location-card-addr {
  font-size: 14.5px;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.5;
}

.location-feature-list {
  background: #09131e;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: #e2e8f0;
  line-height: 1.5;
}

.location-feature-item::before {
  content: "•";
  color: #f6c043;
  font-size: 16px;
  line-height: 1;
  margin-top: 1px;
}

.location-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-copy-addr {
  flex: 1.2;
  min-width: 140px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-copy-addr:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-map-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: opacity 0.2s;
}

.btn-map-link.naver {
  background: #03c75a;
  color: #ffffff;
}

.btn-map-link.kakao {
  background: #fee500;
  color: #191919;
}

.btn-map-link:hover {
  opacity: 0.9;
}

/* --------------------------------------------------
   10. Realtor Agency Profile & Trust Cards (이룬다 부동산)
   -------------------------------------------------- */
.agency-section {
  background: #f4f7f5;
  padding: 80px 0 60px;
  border-top: 1px solid var(--border-light);
}

.realtor-main-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 59, 46, 0.1);
  box-shadow: var(--shadow-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 28px;
}

@media (min-width: 992px) {
  .realtor-main-card {
    flex-direction: row;
    align-items: center;
    padding: 44px 40px;
    gap: 48px;
  }
}

.realtor-profile-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .realtor-profile-side {
    width: 280px;
  }
}

.realtor-photo-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  margin-bottom: 18px;
}

.realtor-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(13, 59, 46, 0.15);
  border: 3px solid #ffffff;
}

.realtor-badge-icon {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #ffb800;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(255, 184, 0, 0.4);
}

.realtor-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 4px;
}

.realtor-title {
  font-size: 13.5px;
  color: #0284c7;
  font-weight: 700;
  margin-bottom: 14px;
}

.realtor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.realtor-tag-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  border: 1px solid;
}

.realtor-tag-chip.blue {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.realtor-tag-chip.yellow {
  background: #fefce8;
  border-color: #fef08a;
  color: #a16207;
}

.realtor-tag-chip.green {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

/* 우측 3가지 안심 약속 */
.realtor-content-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.realtor-promise-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  gap: 8px;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promise-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s;
}

.promise-item:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.promise-check-icon {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.promise-text h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 4px;
}

.promise-text p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
}

.realtor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn-consult-apply {
  flex: 1;
  min-width: 180px;
  background: #0284c7;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
  transition: background-color 0.2s;
}

.btn-consult-apply:hover {
  background: #0369a1;
}

.btn-direct-call {
  flex: 1;
  min-width: 180px;
  background: #0f172a;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-direct-call:hover {
  background: #1e293b;
}

.btn-kakao-chat {
  flex: 1;
  min-width: 180px;
  background: #fee500;
  color: #191919;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(254, 229, 0, 0.35);
  transition: background-color 0.2s, transform 0.2s;
}

.btn-kakao-chat:hover {
  background: #fdd835;
  transform: translateY(-2px);
}

/* 하단 3개 보조 정보 카드 */
.agency-sub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .agency-sub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.agency-sub-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agency-sub-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-sub-icon.blue {
  background: #eff6ff;
  color: #2563eb;
}

.agency-sub-icon.orange {
  background: #fff7ed;
  color: #ea580c;
}

.agency-sub-icon.green {
  background: #f0fdf4;
  color: #16a34a;
}

.agency-sub-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-deep);
}

.agency-sub-content {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
}

.agency-sub-content strong {
  color: #0f172a;
}

.agency-sub-content a {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 700;
}

/* --------------------------------------------------
   11. Footer & Admin Button
   -------------------------------------------------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 45px 0 35px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-info strong {
  color: #fff;
  font-size: 15px;
}

.footer-disclaimer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

.btn-admin-login {
  color: rgba(197, 168, 128, 0.7);
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  background: transparent;
}

.btn-admin-login:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* --------------------------------------------------
   12. Mobile Sticky Bottom Action Bar
   -------------------------------------------------- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-bar-height);
  background: rgba(8, 38, 30, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(197, 168, 128, 0.3);
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  z-index: 990;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-btn-call {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  gap: 2px;
}

.mobile-btn-kakao {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #fee500;
  border: 1px solid #e5ce00;
  border-radius: var(--radius-sm);
  color: #191919;
  font-size: 12px;
  font-weight: 800;
  gap: 2px;
}

.mobile-btn-sms {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  gap: 2px;
}

.mobile-btn-reg {
  flex: 1.8;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--gold-gradient);
  border-radius: var(--radius-sm);
  color: var(--primary-deep);
  font-size: 14px;
  font-weight: 800;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(197, 168, 128, 0.45);
  animation: mobileRegPulse 2s infinite;
}

@keyframes mobileRegPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.45);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 4px 18px rgba(197, 168, 128, 0.75);
  }
}

/* --------------------------------------------------
   13. Modals (완료 모달, 약관 모달, 관리자 패널)
   -------------------------------------------------- */
/* 모달 열렸을 때 화면 스크롤/바운스 잠금 */
body.modal-open, html.modal-open {
  overflow: hidden !important;
  touch-action: none;
  height: 100vh !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.modal-overlay.active {
  display: flex;
}

.modal-dialog {
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  position: relative;
  box-sizing: border-box;
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin: auto;
}

.modal-dialog.large {
  max-width: 900px;
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-deep);
}

.btn-modal-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
  cursor: pointer;
  transition: color 0.2s;
}

.btn-modal-close:hover {
  color: var(--text-main);
}

.modal-body {
  padding: 24px;
  box-sizing: border-box;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* 완료 모달 디자인 */
.success-box {
  text-align: center;
  padding: 4px 0;
  width: 100%;
  box-sizing: border-box;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: #e6f9ed;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.success-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.success-desc {
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 20px;
  word-break: keep-all;
}

.success-desc strong {
  color: var(--primary);
  font-weight: 700;
}

.success-info-table {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  font-size: 13.5px;
  margin-bottom: 22px;
  box-sizing: border-box;
}

.success-info-table div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.success-info-table div:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.success-info-table span:first-child {
  color: #64748b;
  font-size: 13px;
  flex-shrink: 0;
  min-width: 60px;
}

.success-info-table span:last-child {
  font-weight: 700;
  color: #0f172a;
  text-align: right;
  word-break: break-all;
  max-width: 70%;
}

.btn-modal-confirm {
  width: 100%;
  background: var(--gold-gradient);
  color: var(--primary-deep);
  font-size: 17px;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(197, 168, 128, 0.4);
  transition: all 0.2s ease;
  display: block;
}

.btn-modal-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.55);
}

.btn-modal-confirm:active {
  transform: translateY(0);
}

/* 관리자 패널 */
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-stats {
  font-size: 14px;
  color: var(--text-sub);
}

.admin-stats strong {
  color: var(--primary);
  font-size: 16px;
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.btn-admin-action {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-csv {
  background: #107c41;
  color: #fff;
}

.btn-csv:hover {
  background: #0b5a2f;
}

.btn-clear {
  background: #e53e3e;
  color: #fff;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
  white-space: nowrap;
}

.admin-table th {
  background: #f1f5f3;
  color: var(--primary-deep);
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
}

.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
}

.admin-table tr:hover {
  background: #f9fbf9;
}

.btn-row-del {
  color: #e53e3e;
  font-weight: 600;
  padding: 2px 6px;
}

/* --------------------------------------------------
   14. Animations
   -------------------------------------------------- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
