/* ==========================================
   Neighbor Tour — Premium Travel
   ========================================== */

/* ---------- Variables ---------- */
:root {
  --gold: #B8860B;
  --gold-light: #D4A437;
  --gold-glow: rgba(184, 134, 11, 0.12);
  --navy: #1A1A2E;
  --navy-light: #25254b;
  --text: #2D2D2D;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  --bg-page: #FAFAFA;
  --bg-white: #FFFFFF;
  --border: #E8E5DE;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.10);
  --transition: 0.3s ease;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', 'Nanum Gothic', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg-page);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px;
}
@media (min-width: 768px) { body { font-size: 16px; } }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
* { box-sizing: border-box; }

/* ---------- Utilities ---------- */
.gold { color: var(--gold); }
.bg-page { background: var(--bg-page); }
.bg-white { background: var(--bg-white); }
.bg-why {
  background: linear-gradient(135deg, #EBF4FA 0%, #E8EFF8 40%, #F0F4F8 100%);
}
.container-lg { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Section Layering ---------- */
.section {
  padding: 5rem 0;
  position: relative;
}
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
}

/* Layer divider: subtle gradient line between every section */
.section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
  pointer-events: none;
  z-index: 3;
}

/* White sections float upward with a shadow */
.bg-white {
  box-shadow:
    0 -4px 12px rgba(0,0,0,0.015),
    0 6px 20px rgba(0,0,0,0.04);
  z-index: 2;
}
.bg-white::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(180deg, rgba(0,0,0,0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* Page-gray sections sit underneath with a subtle inset */
.bg-page {
  box-shadow:
    inset 0 4px 12px rgba(0,0,0,0.02),
    inset 0 -4px 12px rgba(0,0,0,0.02);
  z-index: 1;
}

/* WHY (light blue gradient) sits between levels */
.bg-why {
  box-shadow:
    0 -4px 12px rgba(0,0,0,0.02),
    0 6px 20px rgba(0,0,0,0.03);
  z-index: 2;
}
.bg-why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.35rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.section-desc { color: var(--text-gray); font-size: 1rem; }
.section-ref { font-size: 0.82rem; color: var(--text-light); margin-top: 0.4rem; }
@media (max-width: 768px) {
  .section-header h2 { font-size: 1.6rem; }
}

/* ==========================================
   HEADER / NAV
   ========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header .navbar { padding: 0.55rem 0; }
.navbar-brand {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-light) !important;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
}
.brand-icon { color: var(--gold-light); font-size: 1.2rem; }
.navbar-nav { align-items: center; gap: 0.1rem; }
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.navbar-nav .nav-link:hover {
  color: var(--gold-light) !important;
  background: rgba(255, 255, 255, 0.06);
}
.navbar-nav .nav-link.active {
  color: #fff !important;
  background: rgba(212, 175, 55, 0.2);
  font-weight: 700;
}
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.3rem !important;
  margin-left: 0.4rem;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: #fff !important; }

/* Hamburger toggle */
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 0.35rem 0.55rem !important;
  border-radius: var(--radius-sm) !important;
  min-height: 44px;
  min-width: 44px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(212,175,55,0.3) !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(212,175,55,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

/* Mobile nav */
@media (max-width: 991px) {
  .site-header {
    position: fixed;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .navbar-collapse {
    background: var(--navy);
    margin: 0 -1rem;
    padding: 0 1rem;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  }
  .navbar-nav {
    padding: 0.5rem 0;
    gap: 0;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }
  .nav-cta {
    margin-left: 0;
    margin: 0.3rem 0 0.5rem;
    text-align: center;
  }
}

/* Bottom Mobile Nav */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.3rem 0 env(safe-area-inset-bottom, 0.3rem);
}
.mobile-bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.35rem 0.2rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.55rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  flex: 1;
}
.mobile-bottom-nav a .mbn-icon { font-size: 1.1rem; line-height: 1; }
.mobile-bottom-nav a.active { color: var(--gold-light); }
.mobile-bottom-nav a.nav-cta-mobile {
  background: var(--gold);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.4rem 0.6rem;
  font-weight: 700;
  font-size: 0.55rem;
  flex-direction: row;
  gap: 0.15rem;
  flex: 0 0 auto;
}
@media (max-width: 991px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 70px; }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 40%, #1A1A2E 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 30% 50%, rgba(184, 134, 11, 0.1) 0%, transparent 70%),
              radial-gradient(ellipse 500px 500px at 70% 80%, rgba(184, 134, 11, 0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; width: 100%; display: flex; justify-content: center; }
.hero-content { max-width: 720px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-label {
  display: inline-block;
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(184, 134, 11, 0.15);
  padding: 0.35rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2.2rem;
  border-radius: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; color: #fff; }

.btn-outline-white { border-color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .hero { min-height: 480px; padding: 5rem 0 3rem; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-desc { font-size: 0.95rem; }
}

/* ==========================================
   DISCOUNT CARDS
   ========================================== */
.discount-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 768px) { .discount-grid { grid-template-columns: 1fr; } }

.discount-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.discount-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* Badge */
.dc-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: var(--gold);
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  letter-spacing: 0.03em;
  z-index: 2;
}
.dc-badge-hot { background: #c0392b; }

/* Header */
.dc-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.dc-icon { font-size: 2rem; }
.dc-title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 0; }
.dc-sub { font-size: 0.8rem; color: var(--text-gray); margin: 0.15rem 0 0; }

/* Price */
.dc-price-row {
  background: var(--gold-glow);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.dc-price { font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.dc-unit { font-size: 0.85rem; color: var(--text-gray); }

/* Divider */
.dc-divider { height: 1px; background: var(--border); margin: 0.8rem 0; }

/* Tags */
.dc-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 0.8rem; }
.dc-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
}

/* List */
.dc-list { list-style: none; padding: 0; margin: 0 0 auto; }
.dc-list li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dc-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Footer */
.dc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}
.dc-note { font-size: 0.78rem; color: var(--text-light); }
.dc-btn {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 0.55rem 1.4rem;
  border-radius: 2rem;
  transition: var(--transition);
  white-space: nowrap;
}
.dc-btn:hover { background: var(--navy-light); transform: translateY(-1px); color: #fff; }

/* ==========================================
   WHY NEIGHBOR TOUR
   ========================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.why-icon { font-size: 2rem; }
.why-card h3 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
}
.why-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================
   GLOBAL NETWORK
   ========================================== */
.global-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
.global-map-wrap {
  display: flex;
  justify-content: center;
}
.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #f0f0f0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.china-map-img {
  width: 100%;
  height: auto;
  display: block;
}
.map-markers {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  z-index: 2;
}
.marker-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.7), 0 0 20px rgba(212, 175, 55, 0.3);
  animation: markerPulse 2s infinite;
}
.marker-label {
  margin-top: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(212, 175, 55, 0.7), 0 0 20px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 14px rgba(212, 175, 55, 1), 0 0 30px rgba(212, 175, 55, 0.6); }
}
.global-info { padding: 1rem 0; }
.global-info h3 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 1rem;
}
.global-desc {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.global-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 0.8rem;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.stat-num {
  display: block;
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}
@media (max-width: 768px) {
  .global-grid { grid-template-columns: 1fr; gap: 2rem; }
  .global-info h3 { font-size: 1.3rem; }
  .global-stats { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .stat-num { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .global-stats { grid-template-columns: 1fr; }
}

/* ==========================================
   REVIEWS CAROUSEL
   ========================================== */
.reviews-wrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.review-arrow:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}
.review-arrow-prev { left: -8px; }
.review-arrow-next { right: -8px; }
@media (max-width: 768px) {
  .review-arrow { width: 36px; height: 36px; font-size: 1.4rem; }
  .review-arrow-prev { left: -4px; }
  .review-arrow-next { right: -4px; }
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.review-slide:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.review-author {
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.review-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.review-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.15rem 0.55rem;
  border-radius: 2rem;
}
.reviews-scrollbar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 1rem;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.reviews-scroll-thumb {
  width: 25%;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  position: relative;
}
@media (max-width: 768px) {
  .review-slide { flex: 0 0 280px; padding: 1.5rem 1.2rem; }
}

/* ==========================================
   CUSTOM TOUR
   ========================================== */
.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; margin: 0 auto; align-items: center; }
.custom-text h3 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.custom-text p { color: var(--text-gray); margin-bottom: 1.2rem; }
.custom-text ul { list-style: none; padding: 0; }
.custom-text ul li { padding: 0.45rem 0; font-size: 0.95rem; }
.custom-cta {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}
.cta-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.custom-cta h4 { font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.8rem; }
.custom-cta p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 1.8rem; line-height: 1.6; }
.custom-cta .btn-kakao {
  display: block;
  background: #FEE500;
  color: #3C1E1E;
  font-weight: 700;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.custom-cta .btn-kakao:hover { background: #f0d800; }
.custom-cta .btn-email {
  display: block;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.custom-cta .btn-email:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 768px) { .custom-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ==========================================
   AIRPORT PICKUP PAGE
   ========================================== */

/* Hero */
.pickup-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 40%, #1A1A2E 100%);
  padding: 7rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.daytour-hero {
  background: linear-gradient(135deg, #1A2E1A 0%, #1B4E2D 40%, #1A2E1A 100%);
}
.pickup-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 30% 50%, rgba(184,134,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.pickup-hero-content { position: relative; z-index: 2; }
.pickup-hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(184,134,11,0.15);
  padding: 0.35rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.pickup-hero h1 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
}
.pickup-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  background: var(--bg-white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-gray);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.tab-btn:hover { background: var(--bg-page); color: var(--text); }
.tab-btn.active {
  background: var(--gold);
  color: #fff;
}
.tab-btn-icon { font-size: 1.2rem; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
@media (max-width: 480px) {
  .tab-btn { padding: 0.8rem 1rem; font-size: 0.9rem; }
}

/* Day Tour Layout */
.daytour-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 991px) { .daytour-layout { grid-template-columns: 1fr; } }

.daytour-main { display: flex; flex-direction: column; gap: 1.5rem; }

/* DT Card */
.dt-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.dt-header { margin-bottom: 1.2rem; }
.dt-badge {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.6rem;
}
.dt-title {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--text);
}

/* DT Photo Space */
.dt-photo-space {
  width: 100%;
  min-height: 280px;
  background: #f5f5f5;
  border: 2px dashed #ddd;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.dt-photo-placeholder {
  font-size: 1.1rem;
  color: #ccc;
  font-weight: 500;
}

/* DT Info Grid */
.dt-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.dt-info-item {
  background: var(--bg-page);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
}
.dt-info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.dt-info-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.dt-info-value em { font-weight: 400; color: var(--text-light); font-size: 0.8rem; }
.dt-note { color: #c0392b !important; }

/* DT Inc/Exc */
.dt-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.dt-inc h4, .dt-exc h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.dt-inc h4 { color: #2d7d46; }
.dt-exc h4 { color: #c0392b; }
.dt-inc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.dt-inc-tags span {
  display: inline-block;
  background: var(--bg-page);
  border: 1px solid var(--border);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text);
}

/* DT Section */
.dt-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.dt-section-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 1.2rem;
}

/* DT Courses */
.dt-courses { display: flex; flex-direction: column; gap: 1rem; }
.dt-course-card {
  display: flex;
  gap: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  transition: var(--transition);
}
.dt-course-card:hover { border-color: var(--gold-light); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.dt-course-photo {
  width: 140px;
  min-height: 100px;
  background: #f5f5f5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dt-course-photo .dt-photo-placeholder { font-size: 0.75rem; }
.dt-course-info { flex: 1; }
.dt-course-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.dt-course-info h4 small { font-weight: 400; color: var(--text-gray); font-size: 0.8rem; }
.dt-course-info p {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.dt-course-price {
  display: inline-block;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 15px;
}
.dt-price-tbd { background: #f5f5f5; color: #999; }

/* DT Sidebar */
.daytour-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.dt-adv-card {
  background: var(--bg-white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.dt-adv-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #8b6914;
  text-align: center;
  margin-bottom: 1rem;
}
.dt-adv-placeholder {
  background: #fdf8e8;
  border: 2px dashed #e8d5a0;
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
  color: #b8963a;
}
.dt-adv-placeholder span { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.dt-adv-placeholder p { font-size: 0.85rem; margin: 0; }

/* DT Course add button */
.dt-course-add {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-page);
  border: 2px dashed #ccc;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  color: #bbb;
  transition: all 0.2s;
  align-self: center;
}
.dt-course-card:hover .dt-course-add {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.dt-course-card.selected .dt-course-add {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  border-style: solid;
}
/* Hotel radio style */
.dt-course-card.selected-hotel {
  border-color: var(--gold) !important;
  background: var(--gold-glow);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}
.dt-radio {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  align-self: center;
  transition: all 0.2s;
}
.dt-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s;
}
.dt-course-card:hover .dt-radio { border-color: var(--gold); }
.dt-course-card.selected-hotel .dt-radio {
  border-color: var(--gold);
}
.dt-course-card.selected-hotel .dt-radio::after {
  background: var(--gold);
}

/* DT Price Summary */
.dt-price-summary {
  background: var(--bg-white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.3rem;
}
.dt-price-summary-title {
  font-size: 1rem;
  font-weight: 800;
  color: #8b6914;
  text-align: center;
  margin-bottom: 0.8rem;
}
.dt-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  color: var(--text);
}
.dt-price-course { color: var(--text-gray); padding-left: 0.5rem; }
.dt-price-val { font-weight: 700; }
.dt-price-divider {
  height: 1px;
  background: #e8d5a0;
  margin: 0.4rem 0;
}
.dt-price-total-row {
  font-size: 0.95rem;
  font-weight: 700;
  padding-top: 0.3rem;
}
.dt-price-total-num {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}
.dt-price-note {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin: 0.5rem 0 0;
}
.price-flash {
  animation: priceFlash 0.6s ease;
}
@keyframes priceFlash {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
  50% { box-shadow: 0 0 24px 6px rgba(212,175,55,0.4); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); transform: scale(1); }
}

/* DT Course Card selected state */
.dt-course-card {
  cursor: pointer;
}
.dt-course-card.selected {
  border-color: var(--gold) !important;
  background: var(--gold-glow);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}
.dt-course-card input[type="checkbox"] {
  display: none;
}

@media (max-width: 768px) {
  .dt-info-grid { grid-template-columns: 1fr; }
  .dt-inc-exc { grid-template-columns: 1fr; }
  .dt-course-card { flex-direction: column; }
  .dt-course-photo { width: 100%; min-height: 120px; }
}

/* Booking Layout */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 991px) { .booking-layout { grid-template-columns: 1fr; } }

/* Booking Form Card */
.booking-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.booking-title {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
}
.form-section { margin-bottom: 1.5rem; }
.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 0.4rem;
}
.form-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
  box-sizing: border-box;
}
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); }
.form-input[readonly] {
  background: #f5f5f5;
  color: #666;
  cursor: not-allowed;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* Passenger Selector */
.passenger-selector {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
}
.ps-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg-white);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ps-btn:hover { background: var(--gold); color: #fff; }
.ps-count { font-size: 1.3rem; font-weight: 800; color: var(--text); min-width: 24px; text-align: center; }

/* Vehicle Info Card */
.vehicle-info-card {
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  background: var(--gold-glow);
}
.vi-top { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; }
.vi-icon { font-size: 2rem; }
.vi-name { display: block; font-size: 1rem; font-weight: 700; color: var(--text); }
.vi-desc { display: block; font-size: 0.8rem; color: var(--text-gray); margin-top: 0.1rem; }
.vi-meta { display: flex; gap: 1.5rem; margin-bottom: 0.8rem; }
.vi-meta span { font-size: 0.85rem; color: var(--text); }
.vi-price { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.vi-unit { font-size: 0.85rem; font-weight: 400; color: var(--text-gray); }

/* Submit Button */
.booking-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: #fff;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
}
.booking-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,134,11,0.3); }

/* Right Info Cards */
.booking-info-wrap { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.info-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.info-icon { font-size: 1.3rem; }
.info-header h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 0; }
/* Price box */
.price-box {
  background: linear-gradient(135deg, #fdf8e8 0%, #fefcf5 100%);
  border: 1px solid #e8d5a0;
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.price-total {
  margin-bottom: 0.6rem;
}
.price-total-num {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1.2;
}
.price-total-label {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.price-divider {
  height: 1px;
  background: #e8d5a0;
  margin: 0.6rem 0;
}
.price-breakdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  color: var(--text-gray);
}
.price-unit {
  font-weight: 700;
  color: var(--text);
}
.price-per {
  color: var(--text-light);
}
.price-times {
  color: var(--text-light);
  margin: 0 0.15rem;
}
.price-count {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
}
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { padding: 0.35rem 0; font-size: 0.88rem; color: var(--text); }
.info-list-check li { color: var(--text); }
.info-list-check li::before { content: '✓ '; color: var(--gold); font-weight: 700; }
.info-card-warning { background: #fffcf0; border-color: #f0dca0; }
/* Why Neighbor Tour card */
.info-card-why {
  background: linear-gradient(135deg, #fdf8e8 0%, #fffef9 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(212, 175, 55, 0.12);
}
.info-card-why .info-header h3 {
  color: #8b6914;
  font-size: 1.05rem;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-list > li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
}
.why-list > li + li {
  border-top: 1px dashed #e8d5a0;
}
.why-item-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  font-size: 1.1rem;
}
.why-item-text { flex: 1; }
.why-item-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.why-item-text p {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}
.info-card-ref { background: var(--bg-page); text-align: center; }
.ref-text { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand h4 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin: 0; }
.footer-links h5 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.8rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { padding: 0.3rem 0; font-size: 0.88rem; }
.footer-links ul li a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold-light); }
.f-icon { color: var(--gold-light); margin-right: 0.5rem; font-size: 1rem; display: inline-block; vertical-align: middle; }
.f-icon svg { fill: var(--gold-light); display: block; }
.f-yt, .f-tt, .f-phone {
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.footer-trust {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0 0.8rem;
  text-align: center;
}
.footer-trust-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
}
.ft-company-name {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.ft-info {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.2rem;
  line-height: 1.6;
}
.ft-sep {
  margin: 0 0.5rem;
  color: rgba(255,255,255,0.12);
}
.ft-about {
  margin: 1rem 0;
  text-align: left;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.ft-about p {
  margin-bottom: 0.5rem;
}
.ft-awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0;
}
.ft-awards-title {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.ft-award-tag {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  transition: all 0.2s;
}
.ft-award-tag:hover {
  background: rgba(212,175,55,0.25);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}
.ft-copyright-notice {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  margin: 0.8rem 0 0;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   DANDOK (단독 패키지) PAGE
   ========================================== */

/* Hero */
.dandok-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 40%, #1A1A2E 100%);
  padding: 7rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dandok-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 30% 50%, rgba(184,134,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.dandok-hero-content { position: relative; z-index: 2; }
.dandok-hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(184,134,11,0.15);
  padding: 0.35rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.dandok-hero h1 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
}
.dandok-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* Package Detail Card */
.pkg-detail-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .pkg-detail-card { padding: 1.5rem; }
}

/* Package Header */
.pkg-header { margin-bottom: 2rem; }
.pkg-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--gold);
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 0.8rem;
}
.pkg-badge-family { background: #c0392b; }
.pkg-title {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.pkg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.pkg-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-glow);
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
}
.pkg-subtitle {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
}

/* Quick Info Bar */
.pkg-quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.8rem;
}
.pqi-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem 1.2rem;
  background: var(--bg-page);
  border-right: 1px solid var(--border);
}
.pqi-item:last-child { border-right: none; }
.pqi-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.pqi-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}
.pqi-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.pqi-price-tbd { color: var(--gold); }
@media (max-width: 768px) {
  .pkg-quick-info { grid-template-columns: repeat(2, 1fr); }
  .pqi-item:nth-child(2) { border-right: none; }
}
@media (max-width: 480px) {
  .pkg-quick-info { grid-template-columns: 1fr; }
  .pqi-item { border-right: none; border-bottom: 1px solid var(--border); }
  .pqi-item:last-child { border-bottom: none; }
}

/* Include / Exclude */
.pkg-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.pkg-inc, .pkg-exc {
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
}
.pkg-inc {
  background: #f0faf0;
  border: 1px solid #c3e6c3;
}
.pkg-exc {
  background: #fef6f0;
  border: 1px solid #f0d4b8;
}
.pkg-inc h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d7d2d;
  margin: 0 0 0.7rem;
}
.pkg-exc h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #c07830;
  margin: 0 0 0.7rem;
}
.pkg-inc ul, .pkg-exc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pkg-inc ul li, .pkg-exc ul li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--text);
}
@media (max-width: 480px) {
  .pkg-inc-exc { grid-template-columns: 1fr; gap: 1rem; }
}

/* Itinerary Section */
.pkg-itinerary { margin-bottom: 1rem; }
.pkg-section-title {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

/* Day Card */
.day-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  overflow: hidden;
}
.day-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.5rem;
  background: var(--navy);
}
.day-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(255,255,255,0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 2rem;
  flex-shrink: 0;
}
.day-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.day-body { padding: 1.5rem; }

/* Day Schedule Items */
.day-schedule { margin-bottom: 1rem; }
.day-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--border);
}
.day-item:last-child { border-bottom: none; }
.day-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.day-item-content strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.day-item-content p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

/* Day Meals */
.day-meals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}
.meal-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  white-space: nowrap;
}
.meal-breakfast {
  background: #fff3cd;
  color: #856404;
}
.meal-lunch {
  background: #d1ecf1;
  color: #0c5460;
}
.meal-dinner {
  background: #e8daef;
  color: #6c3483;
}
.meal-restaurant {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-right: 0.8rem;
}

/* Day Hotel */
.day-hotel {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  display: inline-block;
}
.hotel-icon { margin-right: 0.3rem; }

/* Package Footer */
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 2px solid var(--gold);
}
.pkg-footer-note {
  font-size: 0.85rem;
  color: var(--text-light);
}
@media (max-width: 480px) {
  .pkg-footer { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ==========================================
   CUSTOM TOUR (맞춤여행) PAGE
   ========================================== */

/* Hero */
.custom-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 40%, #1A1A2E 100%);
  padding: 7rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.custom-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 30% 50%, rgba(184,134,11,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.custom-hero-content { position: relative; z-index: 2; }
.custom-hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(184,134,11,0.15);
  padding: 0.35rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.custom-hero h1 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.8rem;
}
.custom-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ── Process Steps ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 1.5rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.step-number {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--gold-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-icon { font-size: 1.6rem; }
.process-step h3 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}
.process-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  padding-top: 2.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); padding: 0; }
  .process-step { max-width: 360px; width: 100%; }
}

/* ── Inquiry Layout (form + sidebar) ── */
.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .inquiry-layout { grid-template-columns: 1fr; }
}

/* ── Form Cards ── */
.form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.form-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  background: var(--navy);
}
.form-card-icon { font-size: 1.2rem; }
.form-card-header h3 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.form-card-body { padding: 1.5rem; }

/* ── Form Fields ── */
.ff-group { margin-bottom: 1.3rem; }
.ff-group:last-child { margin-bottom: 0; }
.ff-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.ff-label small { font-weight: 400; color: var(--text-light); font-size: 0.78rem; }
.required { color: #c0392b; margin-left: 0.1rem; }
.ff-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.ff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ff-row-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
@media (max-width: 768px) {
  .ff-row { grid-template-columns: 1fr; }
  .ff-row-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ff-row-4 { grid-template-columns: 1fr; }
}

.ff-input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-white);
  transition: var(--transition);
  box-sizing: border-box;
}
.ff-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
select.ff-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.ff-textarea { resize: vertical; min-height: 100px; }

/* ── Radio Cards (destination, budget) ── */
.ff-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.ff-radio-card {
  cursor: pointer;
  position: relative;
}
.ff-radio-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.radio-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.4rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  transition: var(--transition);
  text-align: center;
  min-width: 110px;
}
.ff-radio-card.active .radio-card-content,
.ff-radio-card:hover .radio-card-content {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.radio-card-icon { font-size: 1.5rem; }
.radio-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.radio-card-desc {
  font-size: 0.72rem;
  color: var(--text-gray);
}
.ff-radio-sm .radio-card-content { padding: 0.65rem 1rem; min-width: 80px; }
.ff-radio-sm .radio-card-title { font-size: 0.82rem; }

/* ── Chip Selectors (radio chips) ── */
.ff-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ff-chip {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: 2rem;
  background: var(--bg-white);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  position: relative;
}
.ff-chip input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.ff-chip:hover { border-color: var(--gold-light); }
.ff-chip.active {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold);
}

/* ── Check Chips (multi-select) ── */
.ff-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ff-check-chip {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: 2rem;
  background: var(--bg-white);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  position: relative;
}
.ff-check-chip input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.ff-check-chip:hover { border-color: var(--gold-light); }
.ff-check-chip.active {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold);
}

/* ── Contact Type Buttons ── */
.contact-type-group {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.contact-type-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.contact-type-btn:hover { border-color: var(--gold-light); }
.contact-type-btn.active {
  border-color: var(--gold);
  background: var(--gold-glow);
  color: var(--gold);
}
.ct-icon { font-size: 1.1rem; }
.contact-input-wrap { margin-top: 0.3rem; }
@media (max-width: 480px) {
  .contact-type-group { flex-direction: column; }
}

/* Service type buttons */
.service-type-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.service-type-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.service-type-btn:hover { border-color: var(--gold-light); }
.service-type-btn.active {
  border-color: var(--gold);
  background: var(--gold-glow);
}
.st-icon { font-size: 1.6rem; line-height: 1; }
.st-text { display: flex; flex-direction: column; }
.st-title { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.st-desc { font-size: 0.78rem; color: var(--text-light); margin-top: 0.15rem; }
.service-type-btn.active .st-title { color: var(--gold); }
@media (max-width: 480px) {
  .service-type-group { grid-template-columns: 1fr; }
}

/* Payment info card */
.payment-info-card {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
}
.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}
.payment-row + .payment-row {
  border-top: 1px dashed var(--border);
}
.payment-label {
  font-size: 0.88rem;
  color: var(--text-gray);
  font-weight: 500;
}
.payment-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
}
.payment-note {
  color: #c0392b;
}

/* ── Counter ── */
.ff-counter-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.ff-counter-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-gray);
  text-align: center;
}
.ff-counter-label small { font-weight: 400; color: var(--text-light); display: block; }
.ff-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ff-counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg-white);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.ff-counter-btn:hover { background: var(--gold); color: #fff; }
.ff-counter-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  min-width: 24px;
  text-align: center;
}
.ff-total-guests {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: var(--gold-glow);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
}
.total-label { font-size: 0.75rem; font-weight: 600; color: var(--text-gray); }
.total-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}

/* ── Checkbox Agree ── */
.form-agree {
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.ff-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.ff-checkbox-label input[type="checkbox"] { display: none; }
.ff-checkbox-mark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--bg-white);
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}
.ff-checkbox-label input:checked + .ff-checkbox-mark {
  background: var(--gold);
  border-color: var(--gold);
}
.ff-checkbox-label input:checked + .ff-checkbox-mark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.agree-link { color: var(--gold); text-decoration: underline; }

/* ── Submit ── */
.form-submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: #fff;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 800;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}
.form-submit-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,134,11,0.4);
}
.form-submit-hint {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.8rem;
}

/* ── Sidebar ── */
.inquiry-sidebar { position: relative; }
.sidebar-sticky {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-card h3 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.8rem;
}
.sidebar-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.sidebar-why ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-why ul li {
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: var(--text);
}
.sidebar-cta {
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.sidebar-cta h3 {
  color: #fff;
  margin-bottom: 0.6rem;
}
.sidebar-phone {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 0 0 0.4rem;
}
.sidebar-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}
.sidebar-kakao { text-align: center; cursor: pointer; transition: var(--transition); color: inherit; text-decoration: none; }
.sidebar-kakao:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--gold); }
.sidebar-kakao h3 { margin-bottom: 0.3rem; }
.sidebar-kakao p { font-size: 0.9rem; color: var(--text); margin: 0 0 0.3rem; }
.sidebar-kakao-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}
@media (max-width: 991px) {
  .sidebar-sticky { position: static; }
}

/* ── FAQ Grid ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.5rem;
  transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.faq-item p {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   FORM VALIDATION
   ========================================== */
.input-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12) !important;
}
.card-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1) !important;
}
.field-error {
  color: #c0392b !important;
  font-weight: 600;
}

/* ==========================================
   KAKAO MODAL
   ========================================== */

/* Overlay */
.kakao-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.kakao-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box */
.kakao-modal {
  background: var(--bg-white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.kakao-modal-overlay.active .kakao-modal { transform: translateY(0); }

/* Close */
.kakao-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0.3rem;
  transition: var(--transition);
}
.kakao-modal-close:hover { color: var(--text); }

/* Header */
.kakao-modal-header { text-align: center; margin-bottom: 1.5rem; }
.kakao-modal-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.kakao-modal-header h3 {
  font-family: 'Noto Serif KR', 'Apple SD Gothic Neo', 'Malgun Gothic', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.kakao-modal-header p {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

/* ID Section */
.kakao-id-section {
  background: #FEE500;
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
.kakao-id-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5c4a0e;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.kakao-id-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
}
.kakao-id-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #3C1E1E;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}
.kakao-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  background: #3C1E1E;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.kakao-copy-btn:hover { background: #5c3c3c; }
.kakao-copy-btn.copied { background: #2d7d2d; }
.copy-icon { font-size: 0.85rem; }

/* Copy Feedback */
.kakao-copy-feedback {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #2d7d2d;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: var(--transition);
}
.kakao-copy-feedback.show { opacity: 1; transform: translateY(0); }

/* QR Section */
.kakao-qr-section { text-align: center; }
.kakao-qr-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 0.8rem;
}
.kakao-qr-wrap {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  margin-bottom: 0.6rem;
}
.kakao-qr-img {
  display: block;
  width: 160px;
  height: 160px;
}
.kakao-qr-hint {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

/* Footer kakao link */
.kakao-trigger {
  color: rgba(255,255,255,0.55) !important;
  transition: var(--transition);
  cursor: pointer;
}
.kakao-trigger:hover { color: var(--gold-light) !important; }
.kakao-trigger .f-icon { color: var(--gold-light); }

@media (max-width: 480px) {
  .kakao-modal { padding: 1.5rem; }
  .kakao-id-row { flex-direction: column; }
  .kakao-qr-img { width: 140px; height: 140px; }
}

/* ==========================================
   RESPONSIVE — Sub-page Heroes (991px)
   ========================================== */
@media (max-width: 991px) {
  .pickup-hero,
  .dandok-hero,
  .custom-hero {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  .pickup-hero h1,
  .dandok-hero h1,
  .custom-hero h1 {
    font-size: 2rem;
  }
  .pickup-hero-desc,
  .dandok-hero-desc,
  .custom-hero-desc {
    font-size: 0.95rem;
  }
}

/* ==========================================
   RESPONSIVE — Tablet (768px)
   ========================================== */
@media (max-width: 768px) {
  /* Smaller hero headings */
  .pickup-hero h1,
  .dandok-hero h1,
  .custom-hero h1 {
    font-size: 1.6rem;
  }
  .pickup-hero-desc,
  .dandok-hero-desc,
  .custom-hero-desc {
    font-size: 0.88rem;
  }

  /* Form spacings */
  .form-card-body { padding: 1.2rem; }
  .day-body { padding: 1rem; }
  .day-header { padding: 0.7rem 1rem; }
  .day-item { padding: 0.5rem 0; }

  /* Contact type buttons */
  .contact-type-btn { padding: 0.6rem 0.8rem; font-size: 0.82rem; }

  /* Package detail */
  .pkg-title { font-size: 1.3rem; }
  .pkg-section-title { font-size: 1.1rem; }

  /* Form submit button */
  .form-submit-btn { font-size: 1rem; padding: 0.9rem; }

  /* Sidebar cards */
  .sidebar-card { padding: 1.2rem; }
}

/* ==========================================
   RESPONSIVE — Phone (480px)
   ========================================== */
@media (max-width: 480px) {
  /* Heroes */
  .pickup-hero,
  .dandok-hero,
  .custom-hero {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .pickup-hero h1,
  .dandok-hero h1,
  .custom-hero h1 {
    font-size: 1.35rem;
  }

  /* Package detail card */
  .pkg-detail-card { padding: 1rem; }
  .pkg-title { font-size: 1.15rem; }

  /* Day cards */
  .day-title { font-size: 0.88rem; }
  .day-body { padding: 0.8rem; }
  .day-item-content strong { font-size: 0.85rem; }
  .day-item-content p { font-size: 0.78rem; }

  /* Form cards */
  .form-card-body { padding: 1rem; }
  .form-card-header { padding: 0.8rem 1rem; }
  .form-card-header h3 { font-size: 0.95rem; }
  .ff-label { font-size: 0.82rem; }
  .ff-input { padding: 0.65rem 0.8rem; font-size: 0.88rem; }
  select.ff-input { padding-right: 2rem; background-position: right 0.6rem center; }

  /* Radio cards */
  .radio-card-content { padding: 0.7rem 0.9rem; min-width: 80px; }
  .ff-radio-sm .radio-card-content { padding: 0.5rem 0.7rem; min-width: 60px; }
  .ff-radio-sm .radio-card-title { font-size: 0.72rem; }

  /* Chips */
  .ff-chip, .ff-check-chip { padding: 0.45rem 0.8rem; font-size: 0.8rem; }

  /* Counters */
  .ff-counter-btn { width: 28px; height: 28px; font-size: 1rem; }
  .ff-counter-val { font-size: 1.1rem; }

  /* Review arrows */
  .review-arrow-prev { left: 0; }
  .review-arrow-next { right: 0; }
  .review-slide { flex: 0 0 260px; padding: 1.2rem 1rem; }

  /* FAQ */
  .faq-item { padding: 1rem 1.2rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 2rem 0 0; }
}

/* ==========================================
   BOOTSTRAP OVERRIDES
   ========================================== */
.navbar-toggler { border-color: rgba(255,255,255,0.2); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
