/*
Theme Name: 포레나더샵 인천시청역
Theme URI: https://gooseisland.kr
Author: 분양홍보
Description: 포레나더샵 인천시청역 공식 홈페이지 테마 (흰배경/네이비)
Version: 2.0.0
Tags: apartment, real-estate, korean, forena, thesharp
Text Domain: forena-thesharp
*/

/* ===================================================
   CSS VARIABLES
=================================================== */
:root {
  --navy:        #003580;
  --navy-dark:   #001f4e;
  --navy-light:  #0052A5;
  --navy-pale:   #e8f0fe;
  --white:       #ffffff;
  --gray-bg:     #f5f7fa;
  --gray-light:  #eef1f6;
  --gray-border: #d8e2f0;
  --text:        #1a2340;
  --text-light:  #4a5568;
  --text-muted:  #8896ab;
  --gold:        #c8a96e; /* 포인트 강조용 (gold 거부 → 보조 accent only) */
  --radius:      6px;
  --shadow:      0 4px 20px rgba(0,53,128,0.10);
  --shadow-lg:   0 10px 40px rgba(0,53,128,0.16);
  --transition:  0.3s ease;
  --font:        'Pretendard', 'Noto Sans KR', sans-serif;
}

/* ===================================================
   RESET / BASE
=================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }
table { border-collapse: collapse; width: 100%; }

/* ===================================================
   TYPOGRAPHY UTILITIES
=================================================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.section-title strong { color: var(--navy); }
.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 700px;
  line-height: 1.8;
}
.section-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-block {
  padding: 90px 0;
}
.section-block-sm {
  padding: 70px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .section-desc {
  margin: 0 auto;
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: var(--navy-pale);
  border-color: var(--navy-pale);
}

/* ===================================================
   HEADER
=================================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-border);
  transition: box-shadow var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,53,128,0.12);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo .logo-en {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--navy-light);
  text-transform: uppercase;
}
.site-logo .logo-kr {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.header-nav a:hover {
  color: var(--navy);
  background: var(--navy-pale);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--navy-dark); }
.header-reserve-btn {
  padding: 9px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}
.header-reserve-btn:hover {
  background: var(--navy-dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,31,78,0.97);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  padding: 14px 40px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.1); }
.mobile-nav .mobile-phone {
  font-size: 1.5rem;
  font-weight: 900;
  color: #7eb8ff;
  margin-top: 20px;
}
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ===================================================
   HERO SECTION
=================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--navy-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/forena-thesharp-main.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,31,78,0.82) 0%,
    rgba(0,53,128,0.65) 50%,
    rgba(0,31,78,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 100px 24px 120px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.hero-en {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title strong {
  display: block;
  color: #7eb8ff;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  min-width: 0;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-icon { font-size: 1.3rem; margin-bottom: 6px; }
.hero-stat-text {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  word-break: keep-all;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-align: center;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  margin: 8px auto 0;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===================================================
   QUICK LINKS GRID
=================================================== */
#quick-links {
  background: var(--navy-dark);
  padding: 0;
}
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}
.quick-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 12px;
  color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  text-decoration: none;
  text-align: center;
}
.quick-link-item:last-child { border-right: none; }
.quick-link-item:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.quick-link-icon {
  font-size: 1.5rem;
}
.quick-link-label {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  word-break: keep-all;
}
.quick-link-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

/* ===================================================
   RESERVATION SECTION
=================================================== */
#reservation {
  background: var(--gray-bg);
  padding: 90px 0;
}
.reserve-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}
.reserve-head {
  text-align: center;
  margin-bottom: 40px;
}
.reserve-phone-box {
  text-align: center;
  margin-bottom: 28px;
}
.reserve-phone-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.reserve-phone-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.reserve-phone-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.reserve-form-box {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.wpcf7-form .form-row {
  margin-bottom: 18px;
}
.wpcf7-form label,
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 7px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  appearance: none;
}
.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: var(--navy);
}
.wpcf7-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23003580' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.agree-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}
.agree-row input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
}
.agree-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.wpcf7-submit,
.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.wpcf7-submit:hover,
.form-submit-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
/* CF7 Override */
.wpcf7-form p { margin-bottom: 16px; }
.wpcf7-form .wpcf7-not-valid-tip { font-size: 0.8rem; color: #e53e3e; margin-top: 4px; }
.wpcf7-response-output { border-radius: var(--radius); padding: 12px 16px; font-size: 0.9rem; margin-top: 16px; }

/* ===================================================
   OVERVIEW SECTION
=================================================== */
#overview {
  background: var(--white);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
}
.overview-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.overview-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.overview-tables {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
}
.info-table tr {
  border-bottom: 1px solid var(--gray-border);
}
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  background: var(--navy-pale);
  color: var(--navy-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 13px 18px;
  width: 38%;
  text-align: left;
  vertical-align: top;
}
.info-table td {
  padding: 13px 18px;
  font-size: 0.88rem;
  color: var(--text);
  vertical-align: top;
}
.info-table td strong { color: var(--navy); font-weight: 700; }
.overview-link-wrap {
  margin-top: 8px;
}

/* ===================================================
   LOCATION SECTION
=================================================== */
#location {
  background: var(--gray-bg);
}
.location-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 50px;
}
.location-img-wrap img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.location-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.location-item {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.location-item:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.location-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--navy-pale);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.location-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 8px;
}
.location-item-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.location-item-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================================
   BENEFITS SECTION
=================================================== */
#benefits {
  background: var(--navy-dark);
  padding: 90px 0;
}
#benefits .section-title {
  color: var(--white);
}
#benefits .section-label { color: #7eb8ff; }
#benefits .section-desc { color: rgba(255,255,255,0.7); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.benefit-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(126,184,255,0.5);
  transform: translateY(-4px);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.benefit-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.benefit-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.benefits-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
}
.benefit-stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.benefit-stat:last-child { border-right: none; }
.benefit-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 6px;
}
.benefit-stat-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #7eb8ff;
}

/* ===================================================
   PREMIUM SECTION
=================================================== */
#premium {
  background: var(--white);
}
.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.premium-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.premium-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.premium-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.premium-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--gray-bg);
  border-radius: 12px;
  border-left: 3px solid var(--navy);
  transition: var(--transition);
}
.premium-item:hover {
  background: var(--navy-pale);
  border-left-color: var(--navy-light);
}
.premium-num {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy-light);
  line-height: 1;
  min-width: 36px;
}
.premium-item-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.premium-item-desc {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================================================
   COMPLEX SECTION (단지안내)
=================================================== */
#complex {
  background: var(--gray-bg);
}
.tabs-nav {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
  background: var(--white);
}
.tab-btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-right: 1px solid var(--gray-border);
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active {
  background: var(--navy);
  color: var(--white);
}
.tab-btn:hover:not(.active) {
  background: var(--navy-pale);
  color: var(--navy);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.tab-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tab-img img {
  width: 100%;
  object-fit: cover;
}
.tab-text-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 14px;
}
.tab-text-box p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.unit-count-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.unit-count-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.unit-type { font-size: 0.95rem; font-weight: 800; color: var(--navy); }
.unit-count { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.unit-area { font-size: 0.8rem; color: var(--text-light); }
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.community-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 20px 14px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  transition: var(--transition);
}
.community-item:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
}
.community-icon { font-size: 1.5rem; margin-bottom: 8px; }

/* ===================================================
   FLOOR PLAN SECTION (세대안내)
=================================================== */
#floorplan {
  background: var(--white);
}
.type-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
  background: var(--white);
  max-width: 500px;
}
.type-tab-btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  border: none;
  border-right: 1px solid var(--gray-border);
  cursor: pointer;
  transition: var(--transition);
}
.type-tab-btn:last-child { border-right: none; }
.type-tab-btn.active {
  background: var(--navy);
  color: var(--white);
}
.type-tab-btn:hover:not(.active) {
  background: var(--navy-pale);
  color: var(--navy);
}
.type-pane { display: none; }
.type-pane.active { display: block; }
.type-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.type-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: zoom-in;
}
.type-img img {
  width: 100%;
  object-fit: cover;
}
.type-subtitle {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 8px;
}
.type-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.type-tagline {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}
.type-table-wrap {
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.type-table tr { border-bottom: 1px solid var(--gray-border); }
.type-table tr:last-child { border-bottom: none; }
.type-table th {
  background: var(--navy-pale);
  color: var(--navy-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 12px 18px;
  width: 40%;
  text-align: left;
}
.type-table td {
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--text);
}
.type-table td strong { color: var(--navy); font-weight: 700; }

/* ===================================================
   INFO / SEO TEXT SECTION
=================================================== */
#info-text {
  background: var(--gray-bg);
  padding: 70px 0;
}
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}
.accordion-item {
  border-bottom: 1px solid var(--gray-border);
}
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--gray-bg); }
.accordion-trigger.active { background: var(--navy-pale); }
.accordion-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.accordion-arrow {
  font-size: 1rem;
  color: var(--navy);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-trigger.active .accordion-arrow { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 24px 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.85;
}
.accordion-body.open { display: block; }

/* ===================================================
   FAQ SECTION
=================================================== */
#faq {
  background: var(--white);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-bg); }
.faq-question.active { background: var(--navy-pale); }
.faq-q-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  min-width: 24px;
}
.faq-q-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.5;
}
.faq-arrow {
  flex-shrink: 0;
  color: var(--navy);
  transition: transform var(--transition);
}
.faq-question.active .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 24px 64px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.85;
}
.faq-answer.open { display: block; }
.faq-answer strong { color: var(--navy); }
.faq-cta {
  text-align: center;
  margin-top: 48px;
}
.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}
.faq-cta-btn:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===================================================
   FOOTER
=================================================== */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-top-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
.footer-logo {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.footer-logo .en {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}
.footer-addr {
  font-size: 0.82rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.footer-phone {
  font-size: 1.3rem;
  font-weight: 900;
  color: #7eb8ff;
  display: block;
  margin-bottom: 6px;
}
.footer-phone:hover { color: var(--white); }
.footer-hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.footer-sitemap h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-sitemap ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-sitemap a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-sitemap a:hover { color: #7eb8ff; }
.footer-related h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.related-select-wrap {
  position: relative;
  margin-bottom: 16px;
}
.related-select {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.6)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.related-select option { background: var(--navy-dark); color: var(--white); }
.footer-related-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-related-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-related-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ===================================================
   FLOATING CTA BUTTONS
=================================================== */
.float-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 58px; height: 58px;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.float-btn-phone {
  background: var(--navy);
  color: var(--white);
}
.float-btn-reserve {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
}
.float-btn-icon { font-size: 1.3rem; }

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1100px) {
  .quick-links-grid { grid-template-columns: repeat(4, 1fr); }
  .quick-link-item:nth-child(4n) { border-right: none; }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .header-reserve-btn { display: none; }
  .hamburger { display: flex; }
  .section-block { padding: 60px 0; }
  .overview-grid,
  .premium-grid,
  .type-content-grid,
  .tab-content-grid { grid-template-columns: 1fr; gap: 30px; }
  .location-features { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .quick-links-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-stats { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .unit-count-list { grid-template-columns: 1fr; }
  .reserve-form-box { padding: 24px; }
  .location-features { grid-template-columns: 1fr; }
  .float-btns { bottom: 20px; right: 16px; }
}
