/* ==========================================================================
   하나택배(HANA EXPRESS) 홈페이지 공통 스타일
   ========================================================================== */

:root {
  --color-black: #1a1a1a;
  --color-white: #ffffff;
  --color-gray-50: #f7f7f8;
  --color-gray-100: #eef0f2;
  --color-gray-200: #e2e5e9;
  --color-gray-400: #9aa0a8;
  --color-gray-600: #5b6169;
  --color-gray-800: #2b2e33;

  --color-red: #e8112d;
  --color-orange: #f7941d;
  --color-yellow: #ffd200;

  --gradient-brand: linear-gradient(90deg, var(--color-red) 0%, var(--color-orange) 55%, var(--color-yellow) 100%);

  --max-width: 1160px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    "Malgun Gothic", system-ui, sans-serif;
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 12px;
  color: var(--color-gray-600);
  font-size: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 1.5px solid var(--color-gray-200);
}

.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-dark:hover {
  opacity: 0.88;
}

/* ==========================================================================
   Header / Logo / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: none;
  box-shadow: 0 1px 0 var(--color-gray-100);
}

.top-bar {
  position: sticky;
  top: var(--header-height);
  z-index: 99;
  height: 4px;
  background: var(--gradient-brand);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* 로고 실제 이미지 준비 전 임시 텍스트 로고.
   실제 로고 파일(logo.png/svg) 전달받으면 .logo 내부를 <img>로 교체 예정. */
.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 24px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo .logo-hana {
  color: var(--color-black);
}

.logo .logo-express {
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--color-white);
  background: var(--gradient-brand);
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray-800);
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--color-orange);
}

.main-nav a.active {
  color: var(--color-black);
  font-weight: 800;
}

.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 200;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--color-gray-100);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn {
  padding: 10px 18px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-black);
}

/* ==========================================================================
   마감일정 팝업 (항공/선박) - 구글시트 연동 예정
   ========================================================================== */

.schedule-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.schedule-modal-overlay.is-open {
  display: flex;
}

.schedule-modal {
  width: 100%;
  max-width: 420px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  animation: modal-pop 0.2s ease;
}

@keyframes modal-pop {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.schedule-modal-head {
  background: var(--gradient-brand);
  color: var(--color-white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.schedule-modal-head h3 {
  font-size: 17px;
  font-weight: 800;
}

.schedule-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--color-white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.schedule-modal-body {
  padding: 24px;
}

.schedule-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.schedule-row .label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.schedule-row .value {
  font-size: 14px;
  color: var(--color-red);
  font-weight: 700;
}

.schedule-sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.schedule-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--color-gray-400);
  line-height: 1.5;
}

.schedule-modal-foot {
  padding: 0 24px 24px;
}

.schedule-modal-foot .btn {
  width: 100%;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 76px 0 40px;
  background: var(--color-white);
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  padding: 6px 14px;
  border-radius: 999px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.hero h1 .accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 16px;
  color: var(--color-gray-600);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-note {
  font-size: 12.5px;
  color: var(--color-gray-400);
  margin-top: -8px;
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--gradient-brand);
  filter: blur(140px);
  opacity: 0.18;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  animation: glow-drift 10s ease-in-out infinite;
}

@keyframes glow-drift {
  0%, 100% { transform: translate(-50%, 0) scale(1); opacity: 0.18; }
  50% { transform: translate(-46%, 16px) scale(1.08); opacity: 0.26; }
}

/* 시드니 ↔ 한국 항로 애니메이션 (항공: 시드니→한국 / 선박: 한국→시드니) */
.hero-route {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 56px;
  margin: 4px auto 0;
  z-index: 1;
}

.route-line {
  position: absolute;
  left: 44px;
  right: 44px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, var(--color-gray-200) 0 8px, transparent 8px 16px);
}

.route-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-200);
  color: var(--color-gray-800);
}

.route-badge-start { left: 0; }
.route-badge-end { right: 0; }

.route-plane,
.route-ship {
  position: absolute;
  font-size: 18px;
  opacity: 0;
}

/* 항공: 시드니 → 한국 (경로 위쪽) */
.route-plane {
  top: 30%;
  transform: translateY(-50%);
  animation: route-fly-right 4.5s ease-in-out infinite;
}

/* 선박: 한국 → 시드니 (경로 아래쪽, 반대 방향) */
.route-ship {
  top: 74%;
  transform: translateY(-50%) scaleX(-1);
  animation: route-fly-left 6s ease-in-out infinite;
  animation-delay: 1.4s;
}

@keyframes route-fly-right {
  0% { left: 44px; opacity: 0; }
  10% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 44px); opacity: 0; }
}

@keyframes route-fly-left {
  0% { left: calc(100% - 44px); opacity: 0; }
  10% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 44px; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow,
  .route-plane,
  .route-ship {
    animation: none;
  }
}

/* ==========================================================================
   스크롤 리빌
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-flat-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.services-flat-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.services-flat-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.services-flat-grid .reveal:nth-child(5) { transition-delay: 0.24s; }
.services-flat-grid .reveal:nth-child(6) { transition-delay: 0.3s; }

.forms-list .reveal:nth-child(2) { transition-delay: 0.06s; }
.forms-list .reveal:nth-child(3) { transition-delay: 0.12s; }
.forms-list .reveal:nth-child(4) { transition-delay: 0.18s; }

.why-simple-list .reveal:nth-child(2) { transition-delay: 0.06s; }
.why-simple-list .reveal:nth-child(3) { transition-delay: 0.12s; }
.why-simple-list .reveal:nth-child(4) { transition-delay: 0.18s; }

.service-list .reveal:nth-child(2) { transition-delay: 0.05s; }
.service-list .reveal:nth-child(3) { transition-delay: 0.1s; }
.service-list .reveal:nth-child(4) { transition-delay: 0.15s; }
.service-list .reveal:nth-child(5) { transition-delay: 0.2s; }
.service-list .reveal:nth-child(6) { transition-delay: 0.25s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   마감일정 안내 배너 (팝업과 별개로 페이지 내 상시 노출)
   ========================================================================== */

.schedule-banner-wrap {
  padding: 0 0 56px;
}

.schedule-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: #fdf0d5;
  border: 1px solid #f6dfa6;
  color: #8a5a00;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.schedule-banner a {
  color: var(--color-red);
  font-weight: 800;
  text-decoration: underline;
}

/* ==========================================================================
   서비스 6종 아이콘
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: var(--color-white);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 800;
}

.service-card p {
  font-size: 13.5px;
  color: var(--color-gray-600);
}

.service-card .service-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-orange);
}

/* 시안 스타일: 파스텔 원형 아이콘 + 배경 없는 플랫 카드 */
.services-flat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-flat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 30px 16px;
  border-radius: var(--radius-md);
  background: var(--color-gray-50);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-flat:hover {
  transform: translateY(-4px);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.service-flat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-flat-icon svg {
  width: 26px;
  height: 26px;
}

.service-flat h3 {
  font-size: 15px;
  font-weight: 800;
}

.service-flat span {
  font-size: 12.5px;
  color: var(--color-gray-600);
}

/* ==========================================================================
   서비스 상세페이지: 타이틀 / 알림박스 / 상세 박스 / 스펙 리스트
   ========================================================================== */

.detail-hero {
  padding: 48px 0 32px;
}

.detail-hero h1 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.alert-box {
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.alert-red {
  background: #fde2e2;
  color: #b91c1c;
}

.alert-blue {
  background: #dbeafe;
  color: #1e40af;
}

.alert-amber {
  background: #fdf0d5;
  border: 1px solid #f6dfa6;
  color: #8a5a00;
}

.detail-box {
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 24px;
}

.detail-box h2 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}

.detail-box p {
  font-size: 14.5px;
  color: var(--color-gray-800);
  line-height: 1.8;
}

.spec-list {
  display: flex;
  flex-direction: column;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 14.5px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row .label {
  font-weight: 600;
  color: var(--color-gray-800);
}

.spec-row .value {
  font-weight: 700;
  text-align: right;
}

.spec-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--color-gray-400);
}

.text-accent {
  color: var(--color-orange) !important;
  font-weight: 700;
}

.text-accent-blue {
  color: #2563eb !important;
  font-weight: 700;
}

.text-muted-inline {
  color: var(--color-gray-400);
}

.text-danger {
  color: var(--color-red) !important;
  font-weight: 600;
}

.detail-box p + p {
  margin-top: 6px;
}

.detail-cta {
  text-align: center;
  padding: 8px 0 56px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.service-row:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-row .service-flat-icon {
  flex-shrink: 0;
}

.service-row h3 {
  font-size: 18px;
  font-weight: 800;
}

.service-row .caption {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  color: var(--color-gray-600);
}

.icon-pink { background: #ffe4e6; color: #e11d48; }
.icon-orange { background: #ffedd5; color: #f59e0b; }
.icon-blue { background: #dbeafe; color: #2563eb; }
.icon-green { background: #dcfce7; color: #16a34a; }
.icon-purple { background: #ede9fe; color: #7c3aed; }
.icon-gray { background: #f1f5f9; color: #475569; }
.icon-kakao { background: #fee500; color: #191919; }

/* ==========================================================================
   차별점 섹션
   ========================================================================== */

.why-section {
  background: var(--color-gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.why-card .why-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-orange);
  margin-bottom: 10px;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--color-gray-600);
}

/* 시안 스타일: 박스 없이 아이콘 + 라벨만 나열 */
.why-simple {
  text-align: center;
}

.why-simple h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-gray-800);
}

.why-simple-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 32px;
}

.why-simple-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 140px;
}

.why-simple-item svg {
  width: 26px;
  height: 26px;
  color: var(--color-gray-600);
}

.why-simple-item span {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-gray-800);
}

/* ==========================================================================
   배송신청서 4종
   ========================================================================== */

.forms-section {
  background: linear-gradient(180deg, #fff6e9 0%, var(--color-gray-50) 100%);
}

.forms-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-weight: 800;
  font-size: 15px;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-row:hover {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.form-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-row-icon svg {
  width: 20px;
  height: 20px;
}

.form-row-text {
  flex: 1;
}

.form-row-arrow {
  width: 18px;
  height: 18px;
  color: var(--color-gray-400);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.form-row:hover .form-row-arrow {
  color: var(--color-orange);
  transform: translateX(3px);
}

/* ==========================================================================
   문의처 섹션
   ========================================================================== */

.contact-section {
  background: var(--color-black);
  color: var(--color-white);
}

.contact-section .section-head h2 {
  color: var(--color-white);
}

.contact-section .section-head p {
  color: var(--color-gray-400);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.contact-card .contact-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card .contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

.contact-card h3 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-card span {
  font-size: 12.5px;
  color: var(--color-gray-400);
}

/* 시안 스타일: 라이트 배경 위 아이콘+텍스트 가로 나열 */
.contact-bar-section {
  background: var(--color-gray-50);
}

.contact-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-gray-800);
}

.contact-bar-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange);
  flex-shrink: 0;
}

.contact-bar-item a:hover {
  color: var(--color-orange);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-gray-800);
  color: var(--color-gray-400);
  padding: 36px 0;
  font-size: 12.5px;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer .footer-logo {
  color: var(--color-white);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 6px;
}

/* 시안 스타일: 라이트 배경의 얇은 한 줄 푸터 */
.site-footer-simple {
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-100);
  padding: 22px 0;
  font-size: 12.5px;
  color: var(--color-gray-400);
}

.site-footer-simple .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==========================================================================
   플로팅 카카오톡 버튼
   ========================================================================== */

.floating-kakao {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fee500;
  color: #191919;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: var(--shadow-md);
}

.floating-kakao:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   서브페이지 공통: 페이지 배너 / 정보 카드 / 지도
   ========================================================================== */

.page-hero {
  padding: 56px 0 44px;
  text-align: center;
  background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

.page-hero .eyebrow {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  padding: 6px 14px;
  border-radius: 999px;
}

.page-hero h1 {
  margin-top: 14px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin-top: 10px;
  color: var(--color-gray-600);
  font-size: 15px;
}

.breadcrumb {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-gray-400);
}

.breadcrumb a {
  color: var(--color-gray-600);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--color-orange);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.info-card {
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.info-card:hover {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.info-card .contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card .contact-icon svg {
  width: 22px;
  height: 22px;
}

.info-card h3 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}

.info-card span,
.info-card p {
  font-size: 13px;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-list a {
  font-size: 13px;
  color: var(--color-gray-600);
}

.phone-list a:hover {
  color: var(--color-orange);
}

.map-section {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
}

.map-section iframe {
  width: 100%;
  display: block;
}

/* ==========================================================================
   About 페이지: 소개 박스 / 통계 / 미니 서비스 / 가치
   ========================================================================== */

.intro-box {
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-gray-800);
  margin-bottom: 40px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.stat-card {
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
}

.stat-card .stat-value {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-card .stat-label {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--color-gray-600);
}

.mini-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-service-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
}

.mini-service-item svg {
  width: 32px;
  height: 32px;
  color: var(--color-gray-600);
  margin: 0 auto 14px;
}

.mini-service-item h3 {
  font-size: 16px;
  font-weight: 800;
}

.mini-service-item span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-gray-600);
}

.value-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-item span {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-gray-800);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .why-grid,
  .forms-grid,
  .forms-list,
  .contact-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .services-flat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-simple-list {
    gap: 28px;
  }
}

@media (max-width: 840px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
    box-shadow: var(--shadow-sm);
    padding: 4px 24px 12px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray-100);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .nav-cta .btn-outline {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
  }

  .nav-dropdown-menu a {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-gray-100);
  }

  .nav-dropdown-menu a:last-child {
    border-bottom: none;
  }

  .hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  section {
    padding: 56px 0;
  }

  .why-grid,
  .forms-grid,
  .forms-list,
  .contact-grid,
  .services-grid,
  .services-flat-grid,
  .info-grid,
  .mini-service-grid {
    grid-template-columns: 1fr;
  }

  .why-simple-list {
    gap: 20px 32px;
  }

  .contact-bar {
    gap: 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .floating-kakao span {
    display: none;
  }

  .floating-kakao {
    padding: 14px;
  }
}
