/* ================================================
   라오스 부영 골프장 × 블루투어
   완전 리빌드 CSS — 모바일 퍼스트
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --green-dark:  #1e3a5f;  /* 헤더·푸터 — 딥 슬레이트 블루 */
  --green:       #2e6db4;  /* 메인 강조색 — 스카이블루 */
  --green-mid:   #4a90d9;  /* 포인트 — 밝은 블루 */
  --gold:        #d4a843;
  --gold-dark:   #b88c28;
  --gold-light:  #f0c96a;
  --yellow:      #ffe066;
  --white:       #ffffff;
  --off-white:   #f8f6f0;
  --gray-50:     #f9f9f9;
  --gray-100:    #f2f2f2;
  --gray-200:    #e4e4e4;
  --gray-400:    #a0a0a0;
  --gray-600:    #505050;
  --gray-800:    #1a1a1a;
  --text:        #1e1e1e;
  --text-muted:  #666;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   30px;
  --shadow:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.14);
  --trans:       all 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-w:       1200px;
  --font:        'Noto Sans KR', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
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 { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ---------- Utilities ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.sec { padding: 80px 0; }
.sec-gray { background: var(--gray-50); }
.sec-dark { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); }
.center-head { text-align: center; margin-bottom: 48px; }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 20px; height: 2px;
  background: var(--gold); vertical-align: middle; margin-right: 8px;
}
.sec-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.25; color: var(--gray-800);
  margin-bottom: 14px; letter-spacing: -0.02em;
}
.sec-title span { color: var(--green); }
.sec-desc {
  font-size: 0.97rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 24px;
}
.sec-desc.center { text-align: center; max-width: 580px; margin: 0 auto 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 26px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  transition: var(--trans); white-space: nowrap;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(46,109,180,0.40); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-accent { background: var(--gold); color: #fff; box-shadow: 0 4px 14px rgba(200,169,81,0.3); }
.btn-accent:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-kakao { background: #FEE500; color: #191919; box-shadow: 0 4px 14px rgba(254,229,0,0.35); }
.btn-kakao:hover { background: #e6cf00; transform: translateY(-2px); }
.btn-outline { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--green); }
.btn-outline-dark { border: 2px solid var(--green); color: var(--green); background: transparent; }
.btn-outline-dark:hover { background: var(--green); color: #fff; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }

/* ================================================
   HEADER
   ================================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: var(--trans);
  background: rgba(30,58,95,0.97);   /* 헤더: 딥 슬레이트 블루 */
  border-bottom: 1px solid rgba(74,144,217,0.20);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
#header.scrolled {
  background: rgba(18,40,72,0.99);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.30);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo-img {
  height: 46px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: var(--gold-light); }
.nav-cta { display: flex; gap: 10px; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: #0a2010; z-index: 2000;
  padding: 60px 24px 32px;
  display: flex; flex-direction: column; gap: 6px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute; top: 16px; right: 20px;
  color: #fff; font-size: 1.4rem;
}
.mobile-nav-link {
  color: rgba(255,255,255,0.88); font-size: 1rem; font-weight: 500;
  padding: 12px 16px; border-radius: 10px; transition: var(--trans);
}
.mobile-nav-link:hover { background: rgba(255,255,255,0.08); color: var(--yellow); }

/* ================================================
   HERO
   ================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #1e3a5f;   /* Hero: 딥 슬레이트 블루 */
  padding: 100px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/clubhouse1.jpg') center/cover no-repeat;
  opacity: 0.32;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(30,58,95,0.90) 0%,
    rgba(46,109,180,0.70) 45%,
    rgba(30,58,95,0.40) 100%
  );
}

/* 데스크톱: 좌우 2열 - 오른쪽을 아래로 */
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;   /* ✅ start→end: 양쪽 콘텐츠가 아래 기준으로 정렬 */
  width: 100%;
}
.hero-content { position: relative; }

/* 배지 */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,81,0.15);
  border: 1px solid rgba(200,169,81,0.45);
  color: var(--gold-light);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

/* 제목 */
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.15; color: #fff;
  margin-bottom: 18px; letter-spacing: -0.025em;
  text-shadow: 0 3px 16px rgba(0,0,0,0.5);
}
.hero-highlight { color: var(--yellow); display: block; }

/* 부제목 */
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.85);
  margin-bottom: 32px; line-height: 1.8;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-sub strong { color: var(--yellow); font-weight: 700; }
.hero-sub-line { display: block; margin-top: 4px; color: rgba(255,255,255,0.72); font-size: 0.92rem; }

/* 스탯 그리드 2x2 */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.hg-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 16px 18px;
}
.hg-card-gold {
  background: rgba(200,169,81,0.15);
  border-color: rgba(200,169,81,0.4);
}
.hg-num {
  font-size: 1.7rem; font-weight: 900;
  color: var(--yellow); line-height: 1;
  letter-spacing: -0.02em;
}
.hg-label {
  font-size: 0.73rem; color: rgba(255,255,255,0.78);
  margin-top: 6px; line-height: 1.35; font-weight: 500;
}

/* 버튼 영역 */
.hero-btns {
  display: flex; flex-direction: column; gap: 10px;
}
.hero-btn-main {
  width: 100%; justify-content: center;
  font-size: 1rem; padding: 17px 24px;
  border-radius: 12px;
}
/* 카카오+연락처: 가운데 정렬 */
.hero-btns-sub {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.hero-btns-sub .btn {
  justify-content: center;
  min-width: 148px;
  flex: 1;
  max-width: 200px;
}

/* 우측 비주얼 */
.hero-visual {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
}
.hero-visual-img {
  width: 100%; height: 340px;
  object-fit: cover; border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  border: 2px solid rgba(200,169,81,0.25);
  display: block;
}
.hero-vc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.hero-vc {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: 10px; padding: 13px 15px;
}
.hero-vc-num { font-size: 0.88rem; font-weight: 800; color: var(--yellow); line-height: 1.3; }
.hero-vc-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.7); margin-top: 3px; }

/* ================================================
   TICKER
   ================================================ */
#ticker-wrap {
  background: var(--gold); padding: 14px 0; overflow: hidden;
}
.ticker-track {
  display: flex; gap: 64px; white-space: nowrap;
  animation: ticker 22s linear infinite;
}
.ticker-track span {
  font-size: 0.88rem; font-weight: 600; color: var(--green-dark);
  flex-shrink: 0;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ================================================
   TWO-COL LAYOUT
   ================================================ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.two-col-reverse .two-col-img { order: 2; }
.two-col-reverse .two-col-body { order: 1; }

.two-col-img { position: relative; }
.img-cover {
  width: 100%; height: 420px;
  object-fit: cover; border-radius: var(--radius-lg);
}
.img-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(30,58,95,0.94); border: 1px solid rgba(200,169,81,0.5);
  border-radius: 12px; padding: 10px 18px;
  display: flex; flex-direction: column; align-items: center;
  backdrop-filter: blur(8px);
}
.img-badge .num { font-size: 1.4rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.img-badge .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin-top: 2px; }

/* ---------- Chips ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip {
  background: rgba(46,109,180,0.08); border: 1px solid rgba(46,109,180,0.18);
  border-radius: 50px; padding: 6px 14px;
  font-size: 0.82rem; font-weight: 500; color: var(--green);
}

/* ---------- Info Box ---------- */
.info-box {
  background: rgba(46,109,180,0.07); border-left: 4px solid var(--green);
  border-radius: 10px; padding: 16px 20px;
  font-size: 0.88rem; color: var(--gray-600); line-height: 1.7;
  margin-top: 20px;
}

/* ================================================
   FEATURE CARDS (골프장 섹션)
   ================================================ */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 56px;
}
.feat-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 22px; box-shadow: var(--shadow);
  transition: var(--trans);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feat-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.feat-card h3 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.feat-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 10px; border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 56px;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery img:hover { transform: scale(1.03); }
.gallery-span1 { grid-column: 1; grid-row: 2; }
.gallery-span2 { grid-column: 2 / 4; grid-row: 2; }

/* ================================================
   HOTEL SECTION
   ================================================ */
.hotel-gallery {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; border-radius: var(--radius-lg); overflow: hidden;
  align-content: start;
}
.hotel-gallery img { width: 100%; height: 190px; object-fit: cover; display: block; }

.amenity-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin: 20px 0;
}
.amenity {
  background: rgba(46,109,180,0.06); border-radius: 8px;
  padding: 8px 12px; font-size: 0.84rem; font-weight: 500; color: var(--green);
}

/* ---------- Room Cards ---------- */
.room-row { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.room-card {
  background: #fff; border-radius: var(--radius); border: 2px solid var(--gray-200);
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  box-shadow: var(--shadow); transition: var(--trans);
}
.room-card:hover { border-color: var(--green); transform: translateY(-2px); }
.room-card-featured { border-color: var(--gold); }
.room-card-left h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: var(--gray-800); }
.room-card-left p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }
.room-badge {
  display: inline-block; background: rgba(46,109,180,0.1); color: var(--green);
  border-radius: 20px; padding: 3px 10px; font-size: 0.72rem;
  font-weight: 700; margin-bottom: 8px;
}
.room-card-featured .room-badge { background: rgba(200,169,81,0.15); color: var(--gold-dark); }
.room-price { font-size: 2rem; font-weight: 900; color: var(--green); white-space: nowrap; flex-shrink: 0; }
.room-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }

/* ---------- Unlimited Bar ---------- */
.unlimited-bar {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: var(--radius); padding: 20px 28px;
  display: flex; align-items: center; gap: 18px;
  margin-top: 24px; color: #fff;
}
.unlimited-icon { font-size: 2rem; flex-shrink: 0; }
.unlimited-text strong { display: block; font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.unlimited-text span { font-size: 0.85rem; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* ================================================
   BOOYOUNG GROUP
   ================================================ */
.group-philosophy {
  font-size: 1.15rem; font-weight: 700; color: var(--gold-light);
  margin-bottom: 16px; font-style: italic;
}
.trust-cards { display: flex; flex-direction: column; gap: 16px; }
.trust-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 22px;
  display: flex; align-items: flex-start; gap: 16px;
}
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-card h4 { font-size: 0.97rem; font-weight: 700; color: var(--gold-light); margin-bottom: 6px; }
.trust-card p { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* Biz Grid */
.biz-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 56px;
}
.biz-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
}
.biz-icon { font-size: 2.4rem; margin-bottom: 14px; }
.biz-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--gold-light); margin-bottom: 10px; }
.biz-card p { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* CSR */
.csr-box { background: rgba(255,255,255,0.04); border-radius: var(--radius-lg); padding: 48px 40px; }
.csr-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 32px;
}
.csr-item { text-align: center; }
.csr-item span { font-size: 2rem; display: block; margin-bottom: 10px; }
.csr-item p { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ================================================
   PRICING
   ================================================ */
.season-badge {
  display: inline-block; background: rgba(46,109,180,0.1);
  border: 1px solid rgba(46,109,180,0.22); border-radius: 50px;
  padding: 8px 20px; font-size: 0.85rem; font-weight: 600;
  color: var(--green); margin-top: 16px;
}

/* ------------------------------------------------
   블루투어 예약 혜택 배너 — 크고 임팩트 있게
   ------------------------------------------------ */
.bluetour-benefit-bar {
  background: linear-gradient(135deg, #162d4a 0%, var(--green-dark) 50%, #1a3060 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin: 28px 0 36px;
  position: relative;
  overflow: hidden;
}
.bluetour-benefit-bar::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(212,168,67,0.07);
  pointer-events: none;
}
.bluetour-benefit-bar::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(74,144,217,0.08);
  pointer-events: none;
}

/* 상단: 메인 타이틀 + 버튼 */
.btb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative; z-index: 1;
}
.btb-headline {
  display: flex;
  align-items: center;
  gap: 18px;
}
.btb-emoji {
  font-size: 3.2rem;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.btb-main-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.btb-main-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
}

/* 하단: 배지 3개 */
.btb-bottom {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btb-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.btb-badge-item > span {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
.btb-badge-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.btb-badge-item strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.btb-badge-item span:not(:first-child) {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* CTA 버튼 */
.btb-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: var(--trans);
  box-shadow: 0 6px 20px rgba(212,168,67,0.45);
}
.btb-cta:hover {
  background: #b8961e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.55);
}

/* 모바일 */
@media (max-width: 768px) {
  .btb-top { flex-direction: column; align-items: flex-start; }
  .btb-cta { width: 100%; justify-content: center; font-size: 0.95rem; }
  .btb-badge-item { min-width: calc(50% - 10px); }
  .btb-main-title { font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .bluetour-benefit-bar { padding: 28px 20px; }
  .btb-badge-item { min-width: 100%; }
  .btb-emoji { font-size: 2.4rem; }
  .btb-main-title { font-size: 1.15rem; }
}
.price-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 32px;
}
.price-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200); overflow: hidden;
  box-shadow: var(--shadow);
}
.price-card-featured { border-color: var(--gold); }
.price-card-head {
  background: var(--gray-50); padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.price-card-featured .price-card-head { background: rgba(200,169,81,0.08); border-color: rgba(200,169,81,0.2); }
.price-card-head h3 { font-size: 1.1rem; font-weight: 800; color: var(--gray-800); margin-bottom: 4px; }
.price-card-head p { font-size: 0.83rem; color: var(--text-muted); }
.price-card-body { padding: 8px 24px 20px; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--gray-100);
  gap: 8px;
}
.price-row:last-child { border-bottom: none; }
.price-row span { font-size: 0.88rem; color: var(--text-muted); }
.price-row strong { font-size: 1.5rem; font-weight: 900; color: var(--green); }
.price-row em { font-size: 0.8rem; color: var(--text-muted); font-style: normal; }
.price-row-top { background: rgba(200,169,81,0.07); border-radius: 8px; padding: 10px 12px; margin: 8px -4px 4px; border: none; }
.price-row-top span { font-weight: 700; color: var(--gold-dark); }
.price-row-top strong { font-size: 0.9rem; color: var(--gold-dark); }
.price-include {
  background: rgba(46,109,180,0.06); border-radius: 8px;
  padding: 10px 14px; font-size: 0.82rem; font-weight: 700;
  color: var(--green); margin: 6px 0; text-align: center;
}
.unlimited-tag { font-size: 1.2rem !important; color: var(--gold-dark) !important; }

/* Price Note */
.price-note {
  background: var(--gray-50); border-radius: var(--radius);
  border-left: 4px solid var(--green); padding: 20px 24px;
  margin-bottom: 32px;
}
.price-note p {
  font-size: 0.86rem; color: var(--gray-600);
  line-height: 1.75; margin-bottom: 6px;
}
.price-note p:last-child { margin-bottom: 0; }

/* 라운딩비 카드 내 이벤트 배너 */
.price-event-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 16px -4px -4px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.price-event-banner::after {
  content: '';
  position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.peb-left {
  flex: 1;
  position: relative; z-index: 1;
}
.peb-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
  animation: peb-pulse 2s ease-in-out infinite;
}
@keyframes peb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(212,168,67,0); }
}
.peb-title {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.peb-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.peb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEE500;
  color: #191919;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: var(--trans);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.peb-btn:hover {
  background: #e6d000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
@media (max-width: 480px) {
  .price-event-banner { flex-direction: column; align-items: flex-start; }
  .peb-btn { width: 100%; justify-content: center; }
}

/* ---------- Combo ---------- */
.combo-wrap {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg); padding: 36px 32px; color: #fff;
}
.combo-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 24px; text-align: center; }
.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.combo-card {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 22px 18px;
  position: relative; transition: var(--trans);
}
.combo-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.combo-card-best { background: rgba(200,169,81,0.2); border-color: var(--gold); }
.combo-best-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--green-dark);
  font-size: 0.72rem; font-weight: 800;
  padding: 3px 14px; border-radius: 20px; white-space: nowrap;
}
.combo-emoji { font-size: 1.8rem; text-align: center; margin-bottom: 8px; }
.combo-name { font-size: 0.97rem; font-weight: 800; text-align: center; color: var(--yellow); margin-bottom: 14px; }
.combo-card ul { display: flex; flex-direction: column; gap: 6px; }
.combo-card li { font-size: 0.84rem; color: rgba(255,255,255,0.9); line-height: 1.4; }
.combo-card li b { color: var(--yellow); }
.combo-btn {
  display: block; text-align: center; background: #FEE500; color: #191919;
  font-size: 0.82rem; font-weight: 700; padding: 8px; border-radius: 8px;
  margin-top: 14px; transition: var(--trans);
}
.combo-btn:hover { background: #e6cf00; }

/* ================================================
   PROGRAMS
   ================================================ */
.prog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.prog-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 22px; box-shadow: var(--shadow);
  transition: var(--trans); border: 2px solid transparent;
}
.prog-card:hover { border-color: var(--green); transform: translateY(-4px); }
.prog-card-cta { background: rgba(46,109,180,0.05); text-align: center; }
.prog-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.prog-card h3 { font-size: 1rem; font-weight: 700; color: var(--gray-800); margin-bottom: 10px; }
.prog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.prog-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.prog-tags span {
  background: rgba(46,109,180,0.10); color: var(--green);
  border-radius: 20px; padding: 4px 10px; font-size: 0.75rem; font-weight: 600;
}

/* ================================================
   INFO BANNERS (Driving Range + Fasttrack)
   완전히 동일한 레이아웃 구조
   ================================================ */
.info-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}
/* 장식 원형 */
.info-banner::before {
  content: '';
  position: absolute; top: -60px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.info-banner::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

/* 파란 배지 버전 (fasttrack) */
.info-banner-blue {
  background: linear-gradient(135deg, #0a3a6b 0%, #1565c0 60%, #0d47a1 100%);
  margin-bottom: 0;
}

/* 아이콘 */
.info-banner-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  position: relative; z-index: 1;
  opacity: 0.85;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.info-banner-left { flex: 1; position: relative; z-index: 1; }
.info-banner-right {
  flex-shrink: 0;
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
}

.info-banner-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.30);
}
.info-banner-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 900; color: #fff;
  margin-bottom: 10px; line-height: 1.3;
}
.info-banner-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.82);
  line-height: 1.75; margin-bottom: 0;
  max-width: 480px;
}
.info-banner-stats {
  display: flex; gap: 28px; margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.ibs-item { text-align: left; }
.ibs-num { font-size: 1.5rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.ibs-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* 배너 전용 CTA 버튼 */
.btn-banner-cta {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  white-space: nowrap;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--trans);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-banner-cta:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ================================================
   NEWS
   ================================================ */
.news-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; }
.cat-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cat-btn {
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  background: var(--gray-100); transition: var(--trans); cursor: pointer;
}
.cat-btn:hover, .cat-btn.active { background: var(--green); color: #fff; }
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; min-height: 200px;
}
.news-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--trans); border: 1px solid var(--gray-200);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-img { width: 100%; height: 160px; object-fit: cover; }
.news-card-body { padding: 18px; }
.news-cat {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  background: rgba(46,109,180,0.10); color: var(--green); margin-bottom: 8px;
}
.news-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; line-height: 1.4; }
.news-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.news-card-date { font-size: 0.75rem; color: var(--gray-400); margin-top: 10px; }
.news-empty { grid-column: 1/-1; text-align: center; padding: 60px 20px; color: var(--text-muted); }
.news-empty div { font-size: 2.5rem; margin-bottom: 12px; }
.admin-toggle { text-align: center; margin-top: 28px; }
.admin-form-wrap {
  background: var(--gray-50); border-radius: var(--radius);
  padding: 32px; margin-top: 24px; display: none;
  border: 1px solid var(--gray-200);
}
.admin-form-wrap h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 20px; color: var(--gray-800); }

/* ================================================
   CONTACT
   ================================================ */
.contact-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 카카오 메인 CTA 버튼 */
.kakao-main-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FEE500;
  border-radius: var(--radius);
  padding: 22px 28px;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(254,229,0,0.35);
  text-decoration: none;
}
.kakao-main-cta:hover { background: #e6cf00; transform: translateY(-2px); }
.kakao-main-icon { font-size: 2.2rem; flex-shrink: 0; }
.kakao-main-text { flex: 1; }
.kakao-main-text h3 { font-size: 1.1rem; font-weight: 800; color: #191919; margin-bottom: 5px; }
.kakao-main-text p { font-size: 0.86rem; color: #444; line-height: 1.6; }
.kakao-main-arrow { font-size: 1.5rem; color: #191919; flex-shrink: 0; font-weight: 700; }

/* 연락처 카드 그리드 */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.contact-card-icon { font-size: 1.8rem; margin-bottom: 10px; }
.contact-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-card a { font-size: 0.95rem; font-weight: 700; color: var(--green); display: block; }
.contact-card p { font-size: 0.9rem; color: var(--gray-800); font-weight: 600; line-height: 1.5; }

/* 상담 주제 안내 */
.contact-topics {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.contact-topics h4 { font-size: 0.95rem; font-weight: 800; color: var(--gray-800); margin-bottom: 14px; }
.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic-chips span {
  background: rgba(46,109,180,0.09);
  border: 1px solid rgba(46,109,180,0.20);
  color: var(--green);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.84rem;
  font-weight: 500;
}

.contact-items { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(46,109,180,0.10);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--gray-800); margin-bottom: 2px; }
.contact-item p { font-size: 0.95rem; color: var(--green); font-weight: 600; }
.kakao-bar {
  display: flex; align-items: center; gap: 14px;
  background: #FEE500; border-radius: var(--radius);
  padding: 18px 20px; transition: var(--trans);
}
.kakao-bar:hover { background: #e6cf00; transform: translateY(-2px); }
.kakao-bar-icon { font-size: 1.6rem; flex-shrink: 0; }
.kakao-bar h4 { font-size: 0.95rem; font-weight: 700; color: #191919; margin-bottom: 2px; }
.kakao-bar p { font-size: 0.8rem; color: #333; }

/* ---------- Inquiry Form ---------- */
.inquiry-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px 32px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
}
.inquiry-box h3 { font-size: 1.2rem; font-weight: 800; color: var(--gray-800); margin-bottom: 6px; }
.inquiry-box > p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--gray-600); }
.req { color: #e53e3e; }
.form-ctrl {
  padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-size: 0.9rem; color: var(--text);
  background: #fff; transition: var(--trans); width: 100%;
  -webkit-appearance: none;
}
.form-ctrl:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,109,180,0.15); }
textarea.form-ctrl { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.submit-btn {
  width: 100%; padding: 16px;
  background: var(--green); color: #fff;
  border-radius: 12px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--trans); margin-top: 4px;
}
.submit-btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ================================================
   FACEBOOK NEWS SECTION
   ================================================ */
.fb-section { /* 래퍼 */ }

/* 상단 2열: 페북 임베드 + 사이드 */
.fb-top-row {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 32px;
  align-items: flex-start;
}

/* 왼쪽: 페북 임베드 컬럼 */
.fb-embed-col {
  background: #f0f2f5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
}
.fb-embed-col .fb-page { width: 100%; }

/* SDK 로드 실패 시 fallback */
.fb-noload {
  display: none; /* JS로 show 처리 */
  width: 100%; height: 100%;
  min-height: 500px;
  align-items: center; justify-content: center;
}
.fb-noload-inner {
  text-align: center;
  padding: 40px 28px;
}

/* 오른쪽: 사이드 컬럼 */
.fb-side-col {
  display: flex; flex-direction: column; gap: 16px;
}

/* 업데이트 카드 */
.fb-update-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.fb-update-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.fb-update-dot {
  width: 8px; height: 8px; background: #1877f2;
  border-radius: 50%; flex-shrink: 0;
}
.fb-update-head h4 { font-size: 0.95rem; font-weight: 800; color: var(--gray-800); }
.fb-update-list {
  display: flex; flex-direction: column; gap: 8px;
  list-style: none; padding: 0; margin: 0;
}
.fb-update-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.87rem; color: var(--gray-600);
  padding: 9px 12px;
  background: var(--gray-50); border-radius: 8px;
  border: 1px solid var(--gray-200);
  line-height: 1.4;
}
.fb-ul-dot { flex-shrink: 0; font-size: 1rem; }

/* 페북 바로가기 버튼 */
.fb-goto-btn {
  display: flex; align-items: center; gap: 14px;
  background: #1877f2;
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: var(--trans);
  box-shadow: 0 4px 14px rgba(24,119,242,0.25);
  text-decoration: none;
}
.fb-goto-btn:hover { background: #0d65d9; transform: translateY(-2px); }
.fb-goto-icon { font-size: 1.6rem; flex-shrink: 0; }
.fb-goto-text { flex: 1; }
.fb-goto-text strong { display: block; font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.fb-goto-text span { font-size: 0.78rem; color: rgba(255,255,255,0.8); }
.fb-goto-arrow { font-size: 1.2rem; color: #fff; font-weight: 700; }

/* 카카오 링크 */
.fb-kakao-link {
  display: flex; align-items: center; gap: 14px;
  background: #FEE500; border-radius: var(--radius);
  padding: 18px 20px; transition: var(--trans);
  box-shadow: 0 4px 14px rgba(254,229,0,0.35);
  text-decoration: none;
}
.fb-kakao-link:hover { background: #e6cf00; transform: translateY(-2px); }
.fb-kakao-link > span { font-size: 1.8rem; flex-shrink: 0; }
.fb-kakao-link strong { display: block; font-size: 0.95rem; font-weight: 800; color: #191919; margin-bottom: 2px; }
.fb-kakao-link div span { font-size: 0.78rem; color: #555; }

/* 페북 버튼 (단독) */
.btn-facebook {
  display: inline-flex; align-items: center; gap: 8px;
  background: #1877f2; color: #fff;
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
  transition: var(--trans); box-shadow: 0 4px 14px rgba(24,119,242,0.3);
}
.btn-facebook:hover { background: #0d65d9; transform: translateY(-2px); }

/* ================================================
   FOOTER
   ================================================ */
#footer {
  background: #142038;  /* 푸터: 가장 짙은 네이비 블루 */
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; margin-bottom: 18px; }
.footer-head { font-size: 0.82rem; font-weight: 700; color: #fff; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.6); transition: var(--trans); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contacts { display: flex; flex-direction: column; gap: 10px; font-size: 0.85rem; line-height: 1.5; }
.footer-contacts a { color: var(--gold-light); }
.footer-hours {
  margin-top: 16px; background: rgba(255,255,255,0.05);
  border-radius: 10px; padding: 14px 16px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.7;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom strong { color: var(--gold-light); }

/* ================================================
   FLOATING CTA
   ================================================ */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 50px; font-size: 0.88rem;
  font-weight: 700; box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--trans); white-space: nowrap;
}
.float-kakao { background: #FEE500; color: #191919; }
.float-kakao:hover { background: #e6cf00; transform: translateY(-2px); }
.float-call { background: var(--green); color: #fff; }
.float-call:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ================================================
   MODAL
   ================================================ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 3000; display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg);
  padding: 36px; max-width: 420px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-box h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: var(--gray-800); }
.modal-box p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; }

/* ================================================
   RESPONSIVE — TABLET (max 1024px)
   ================================================ */
@media (max-width: 1024px) {
  .sec { padding: 64px 0; }
  /* Hero: 태블릿에서도 1열로 전환 */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; max-width: 600px; }
  .hero-visual { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-reverse .two-col-img { order: 0; }
  .two-col-reverse .two-col-body { order: 0; }
  .img-cover { height: 300px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-rows: 180px 180px; }
  .biz-grid { grid-template-columns: 1fr; gap: 14px; }
  .csr-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-banner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .info-banner-icon { font-size: 2.8rem; }
  .info-banner-right { width: 100%; }
  .btn-banner-cta { width: 100%; justify-content: center; }
  .fb-top-row { grid-template-columns: 1fr; }
  .fb-embed-col { min-height: 300px; }
  .fb-noload { min-height: 300px; }
  .fb-section { grid-template-columns: 1fr; }
  .fb-embed-wrap iframe { width: 100% !important; }
}

/* ================================================
   RESPONSIVE — MOBILE (max 768px)
   ================================================ */
@media (max-width: 768px) {
  .sec { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* Header */
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  /* Hero */
  #hero {
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: 100svh;
    align-items: center;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; max-width: 100%; align-items: start; }
  .hero-visual { display: none; }
  .hero-btns-sub { justify-content: center; }
  .logo-img { height: 38px; }

  /* Sections */
  .feature-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery img { height: 140px; }
  .gallery-span1, .gallery-span2 { grid-column: auto; grid-row: auto; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .room-card { flex-direction: column; align-items: flex-start; }
  .room-price { font-size: 1.6rem; }
  .unlimited-bar { flex-direction: column; text-align: center; }
  .biz-grid { grid-template-columns: 1fr; }
  .csr-box { padding: 32px 20px; }
  .csr-grid { grid-template-columns: 1fr 1fr; }
  .combo-grid { grid-template-columns: 1fr; gap: 12px; }
  .prog-grid { grid-template-columns: 1fr; }
  .fb-top-row { grid-template-columns: 1fr; }
  .fb-embed-col { min-height: 260px; }
  .fb-noload { min-height: 260px; }
  .fb-embed-wrap { min-height: 200px; }
  .fb-embed-wrap iframe { width: 100% !important; height: 450px !important; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-lbl { display: none; }
  .float-btn { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; font-size: 1.3rem; }
  .info-banner { padding: 28px 24px; }
  .info-banner-stats { gap: 18px; flex-wrap: wrap; }
  .ibs-num { font-size: 1.25rem; }
  .csr-box { padding: 28px 16px; }
  .inquiry-box { padding: 24px 18px; }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ================================================ */
@media (max-width: 480px) {
  #hero { padding-top: 76px; }
  .hero-badge { font-size: 0.7rem; }
  .hero-title { font-size: 1.85rem; }
  .hg-num { font-size: 1.4rem; }
  .hg-label { font-size: 0.7rem; }
  .hero-grid { gap: 8px; }
  .hero-btn-main { font-size: 0.93rem; padding: 14px; }
  .sec-title { font-size: 1.5rem; }
  .csr-grid { grid-template-columns: 1fr 1fr; }
  .combo-wrap { padding: 24px 16px; }
  .combo-grid { gap: 10px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .kakao-main-cta { flex-wrap: wrap; gap: 12px; }
  .kakao-main-arrow { display: none; }
  .topic-chips span { font-size: 0.78rem; padding: 6px 12px; }
  .info-banner { padding: 22px 18px; gap: 16px; }
  .info-banner-title { font-size: 1.2rem; }
  .info-banner-icon { font-size: 2.2rem; }
  .info-banner-stats { gap: 14px; }
  .ibs-num { font-size: 1.1rem; }
  .ibs-lbl { font-size: 0.7rem; }
}
