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

/* =========================
   Reset & Variables
========================= */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  --yellow: #FFD43B;
  --yellow-dark: #F0B400;
  --yellow-light: #FFFDE7;
  --yellow-text: #7A5900;
  --green: #5BAD4E;
  --green-hover: #4A9A3D;
  --green-dark: #2E6B28;
  --green-footer: #163B18;
  --green-light: #EFF8EE;
  --white: #FFFFFF;
  --gray-bg: #F2F6F2;
  --kakao-text: #3C1E1E;
  --text: #2C3A2D;
  --text-sub: #6B7C6C;
  --border: #D4E6D2;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 12px 36px rgba(0,0,0,0.13);
  --transition: 0.3s ease;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* =========================
   Header
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 4px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 4px 8%;
}

.header.service-header {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 4px 8%;
}

.header .logo img {
  height: 200px;
  width: auto;
  clip-path: inset(28% 0 30% 0);
  margin-top: -56px;
  margin-bottom: -60px;
  transition: height var(--transition), margin var(--transition);
}

.header.scrolled .logo img,
.header.service-header .logo img {
  height: 180px;
  margin-top: -50px;
  margin-bottom: -54px;
}

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

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.header.scrolled .nav a,
.service-header .nav a {
  color: var(--text);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav a:hover { color: var(--green); }
.nav a.active { color: var(--green); }

.header.scrolled .nav a:hover,
.header.scrolled .nav a.active,
.service-header .nav a:hover,
.service-header .nav a.active {
  color: var(--green);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* 모바일 메뉴 버튼 */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  z-index: 10001;
  line-height: 1;
  padding: 4px;
}

.header.scrolled .menu-toggle,
.header.service-header .menu-toggle {
  color: var(--text);
}

/* =========================
   Hero Section
========================= */
.hero {
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 95px 8% 40px;
  background: linear-gradient(-45deg, #fffde7, #eff8ee, #e8f5e9, #fff9c4);
  background-size: 400% 400%;
  animation: bgShift 12s ease infinite;
  overflow: hidden;
  position: relative;
}

/* 떠다니는 장식 원형 요소 */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-decor span {
  position: absolute;
  border-radius: 50%;
  animation: floatBubble ease-in-out infinite;
}

.hero-decor span:nth-child(1) {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,212,59,0.18) 0%, transparent 70%);
  top: -80px; left: -60px;
  animation-duration: 9s; animation-delay: 0s;
}
.hero-decor span:nth-child(2) {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(91,173,78,0.15) 0%, transparent 70%);
  bottom: -60px; right: 38%;
  animation-duration: 11s; animation-delay: -4s;
}
.hero-decor span:nth-child(3) {
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,212,59,0.2) 0%, transparent 70%);
  top: 20%; right: 10%;
  animation-duration: 8s; animation-delay: -2s;
}
.hero-decor span:nth-child(4) {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(91,173,78,0.18) 0%, transparent 70%);
  top: 55%; left: 38%;
  animation-duration: 7s; animation-delay: -6s;
}
.hero-decor span:nth-child(5) {
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(255,212,59,0.25) 0%, transparent 70%);
  top: 15%; left: 42%;
  animation-duration: 6s; animation-delay: -1s;
}

.hero-content {
  flex: 0 0 380px;
  position: relative;
  z-index: 1;
  animation: heroFadeUp 1.0s ease forwards;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(255,212,59,0.4);
}

.hero-content h2 {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--text);
}

.hero-content p {
  font-size: 1.02rem;
  margin-bottom: 36px;
  color: var(--text-sub);
  line-height: 1.8;
}

.hero-btn {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(91,173,78,0.35);
}

.hero-btn:hover {
  background: var(--green-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(91,173,78,0.42);
}

.hero-gallery {
  flex: 1;
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: calc(100vh - 180px);
  max-height: 520px;
  position: relative;
  z-index: 1;
}

.hero-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border: 5px solid white;
  opacity: 0;
  animation: cardPop 0.6s ease forwards;
}

.hero-frame:nth-child(1) { animation-delay: 0.2s; }
.hero-frame:nth-child(2) { animation-delay: 0.4s; }
.hero-frame:nth-child(3) { animation-delay: 0.6s; }
.hero-frame:nth-child(4) { animation-delay: 0.8s; }

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.hero-frame:hover img {
  transform: scale(1.06);
}

.hero-frame:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
  transform: translateY(-4px);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@keyframes bgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-22px) scale(1.04); }
}

@keyframes cardPop {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

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

/* =========================
   Section 공통
========================= */
.section {
  padding: 90px 8%;
}

.section-alt   { background: var(--gray-bg); }
.section-yellow { background: var(--yellow-light); }
.section-green  { background: var(--green-light); }

/* 노란 배경 섹션 내 label은 노란 계열로 */
.section-yellow .section-title .label {
  background: rgba(255, 212, 59, 0.25);
  color: var(--yellow-text);
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title .label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.section-title p {
  font-size: 0.97rem;
  color: var(--text-sub);
}

/* =========================
   Services Grid (index)
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green);
}

.service-card .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 24px;
}

.card-link {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 20px;
  border: 2px solid var(--green);
  border-radius: 999px;
  transition: all var(--transition);
}

.card-link:hover {
  background: var(--green);
  color: white;
}

/* =========================
   Stats (index)
========================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-card .num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card .num span {
  font-size: 1.4rem;
}

.stat-card .label {
  font-size: 0.88rem;
  color: var(--text-sub);
  font-weight: 500;
}

/* =========================
   About Section (index)
========================= */
.about-section {
  display: flex;
  gap: 64px;
  align-items: center;
}

.about-img {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-text { flex: 1; }

.about-text .label {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 18px;
  color: var(--text);
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-sub);
  margin-bottom: 14px;
  line-height: 1.85;
}

.about-features {
  list-style: none;
  margin: 20px 0 30px;
}

.about-features li {
  padding: 9px 0;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.about-features li:last-child { border-bottom: none; }

.about-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* =========================
   Buttons
========================= */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(91,173,78,0.3);
}

.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(91,173,78,0.4);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.97rem;
  margin-left: 12px;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}

/* =========================
   Review Grid (index)
========================= */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.review-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.review-text { padding: 24px; }

.review-stars {
  color: var(--yellow-dark);
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-content {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 14px;
}

.review-writer {
  font-size: 0.84rem;
  color: var(--text-sub);
  font-weight: 500;
}

/* =========================
   CTA Section (index)
========================= */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 84px 8%;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  margin-bottom: 38px;
  opacity: 0.88;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-block;
  background: white;
  color: var(--green-dark);
  padding: 15px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
}

.btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.btn-kakao {
  display: inline-block;
  background: var(--yellow);
  color: var(--kakao-text);
  padding: 15px 36px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,0.14);
}

.btn-kakao:hover {
  background: var(--yellow-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* =========================
   Sub-page Header Banner
========================= */
.sub-title {
  padding: 140px 8% 64px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--yellow-light) 100%);
  position: relative;
  overflow: hidden;
}

.sub-title::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: var(--yellow);
  opacity: 0.1;
  border-radius: 50%;
}

.sub-title::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 12%;
  width: 220px; height: 220px;
  background: var(--green);
  opacity: 0.07;
  border-radius: 50%;
}

.sub-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.sub-title p {
  font-size: 1rem;
  color: var(--text-sub);
}

/* =========================
   Service Tabs Page
========================= */
.service-tabs {
  display: flex;
  gap: 52px;
  padding: 64px 8%;
  max-width: 1300px;
  margin: 0 auto;
}

.tabs-menu {
  width: 190px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tab-btn {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: var(--gray-bg);
  border: none;
  border-left: 4px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: left;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'Noto Sans KR', sans-serif;
  transition: all var(--transition);
}

.tab-btn:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.tab-btn.active {
  background: var(--green-light);
  border-left-color: var(--green);
  color: var(--green-dark);
  font-weight: 700;
}

.tabs-content { flex: 1; }

.tab-item { display: none; }

.tab-item.active {
  display: block;
  animation: tabFadeIn 0.4s ease;
}

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

.tab-item h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--green);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-item img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  display: block;
}

.tab-item table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.tab-item table th,
.tab-item table td {
  border: 1px solid var(--border);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.91rem;
}

.tab-item table th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  width: 160px;
}

.tab-item table td {
  color: var(--text-sub);
}

.tab-item table tr:nth-child(even) td {
  background: #FAFFFE;
}

/* =========================
   Review Page
========================= */
.review-section {
  padding: 64px 8%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.review-more {
  text-align: center;
  padding: 10px 8% 50px;
  font-size: 0.97rem;
  color: var(--text-sub);
}

.review-more a {
  display: inline-block;
  margin-top: 14px;
  background: var(--yellow-light);
  color: var(--yellow-text);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  border: 2px solid var(--yellow-dark);
  transition: all var(--transition);
}

.review-more a:hover {
  background: var(--yellow-dark);
  color: white;
  transform: translateY(-2px);
}

.review-call {
  text-align: center;
  padding: 70px 8%;
  background: var(--green-light);
}

.review-call h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

.review-call p {
  color: var(--text-sub);
  margin-bottom: 28px;
}

.call-btn {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 16px 44px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 22px rgba(91,173,78,0.32);
}

.call-btn:hover {
  background: var(--green-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(91,173,78,0.42);
}

.call-sub {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-sub);
}

/* =========================
   Map Page
========================= */
.map-section {
  display: flex;
  gap: 48px;
  padding: 64px 8%;
  align-items: flex-start;
}

.map-info { flex: 1; min-width: 260px; }

.map-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--green);
}

.map-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.mi-label {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  margin-top: 3px;
  flex-shrink: 0;
}

.mi-val {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.65;
}

.map-info a {
  color: var(--green);
  font-weight: 600;
}

.map-box {
  flex: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}

/* =========================
   Guide / About Page
========================= */
.about-intro {
  display: flex;
  gap: 64px;
  align-items: center;
  padding: 72px 8%;
}

.about-intro-img {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-intro-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-intro-text { flex: 1; }

.about-intro-text .label {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-text);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.about-intro-text h2 {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--text);
}

.about-intro-text p {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.88;
  margin-bottom: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 8% 80px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--green-hover);
}

.value-card .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.value-card p {
  font-size: 0.87rem;
  color: var(--text-sub);
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 8% 80px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.info-card table {
  width: 100%;
  border-collapse: collapse;
}

.info-card table tr {
  border-bottom: 1px solid var(--border);
}

.info-card table tr:last-child {
  border-bottom: none;
}

.info-card table td {
  padding: 11px 8px;
  font-size: 0.9rem;
}

.info-card table td:first-child {
  font-weight: 600;
  color: var(--text);
  width: 100px;
}

.info-card table td:last-child {
  color: var(--text-sub);
}

/* =========================
   Footer
========================= */
.footer {
  background: var(--green-footer);
  color: white;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 8% 44px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.footer-left h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 14px;
}

.footer-left p {
  font-size: 0.87rem;
  opacity: 0.72;
  line-height: 1.85;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-right p {
  font-size: 0.87rem;
  opacity: 0.78;
}

.footer-right strong {
  display: inline-block;
  width: 64px;
  font-weight: 600;
  color: var(--yellow);
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 8%;
  font-size: 0.81rem;
  text-align: center;
  opacity: 0.45;
  color: white;
}

/* =========================
   Fixed Contact (PC)
========================= */
.fixed-contact {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.fixed-contact.show {
  opacity: 1;
  pointer-events: auto;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 6px 22px rgba(0,0,0,0.2);
  transition: all var(--transition);
  white-space: nowrap;
}

.contact-btn.call  { background: var(--green); }
.contact-btn.kakao { background: #FEE500; color: var(--kakao-text); }

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

/* =========================
   Mobile Bottom Bar
========================= */
.mobile-contact { display: none; }

/* =========================
   Scroll Animation
========================= */
.scroll-ani {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.scroll-ani.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Responsive — Tablet
========================= */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================
   Responsive — Mobile
========================= */
@media (max-width: 768px) {
  .section { padding: 56px 5%; }

  /* Header */
  .header           { padding: 0 5%; }
  .header.scrolled  { padding: 0 5%; }
  .header.service-header { padding: 0 5%; }
  .header .logo img {
    height: 210px;
    width: auto;
    max-width: none;
    clip-path: inset(28% 0 30% 0);
    margin-top: -68px;
    margin-bottom: -54px;
    display: block;
  }
  .header.scrolled .logo img,
  .header.service-header .logo img {
    height: 210px;
    margin-top: -68px;
    margin-bottom: -54px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    padding: 8px;
    z-index: 10002;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
  }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 76%;
    height: 100vh;
    background: var(--green-footer);
    flex-direction: column;
    padding-top: 90px;
    gap: 0;
    transition: right 0.35s ease;
    z-index: 10000;
    align-items: flex-start;
    box-shadow: -6px 0 24px rgba(0,0,0,0.2);
  }

  .nav.open { right: 0; }

  .nav a,
  .header.scrolled .nav a,
  .service-header .nav a {
    width: 100%;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    padding: 15px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav a:hover,
  .nav a.active,
  .header.scrolled .nav a:hover,
  .header.scrolled .nav a.active,
  .service-header .nav a:hover,
  .service-header .nav a.active {
    color: var(--yellow);
    background: rgba(255,255,255,0.04);
  }

  .nav a::after { display: none; }

  /* Hero */
  .hero {
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
    padding: 90px 6% 40px;
    gap: 24px;
    justify-content: center;
  }
  .hero-content {
    flex: none;
    width: 100%;
    text-align: center;
  }
  .hero-content h2 {
    font-size: 1.75rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .hero-content p {
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.7;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 13px;
    margin-bottom: 18px;
    margin-top: 16px;
  }
  .hero-btn {
    padding: 12px 30px;
    font-size: 0.92rem;
  }
  .hero-gallery {
    max-width: 100%;
    height: auto;
    max-height: none;
    gap: 8px;
  }
  .hero-frame {
    border-width: 3px;
    border-radius: 10px;
    aspect-ratio: 3/2;
  }

  /* About & Review images */
  .about-img img {
    height: 260px;
    object-position: top center;
  }
  .review-card img {
    height: 220px;
    object-position: top center;
  }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .review-grid   { grid-template-columns: 1fr; }
  .about-section { flex-direction: column; gap: 36px; }
  .values-grid   { grid-template-columns: 1fr; }
  .info-grid     { grid-template-columns: 1fr; padding: 0 5% 50px; }

  /* Sub pages */
  .sub-title { padding: 118px 5% 50px; }
  .sub-title h2 { font-size: 1.8rem; }

  .service-tabs {
    flex-direction: column;
    padding: 44px 5%;
    gap: 28px;
  }

  .tabs-menu {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tab-btn {
    width: auto;
    flex: 1;
    text-align: center;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
  }

  .tab-btn.active { border-bottom-color: var(--green); }

  .about-intro { flex-direction: column; padding: 52px 5%; gap: 36px; }
  .about-intro-img img { height: 280px; }
  .values-grid { padding: 0 5% 50px; }

  .map-section { flex-direction: column; padding: 52px 5%; }
  .map-box { min-height: 280px; }

  .review-section { padding: 50px 5%; }
  .review-call    { padding: 56px 5%; }
  .review-more    { padding: 0 5% 44px; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 28px;
    padding: 50px 5% 36px;
  }
  .footer { text-align: center; }
  .footer-right strong { width: auto; margin-right: 6px; }

  /* CTA */
  .cta-section { padding: 60px 5%; }
  .cta-section h2 { font-size: 1.6rem; }
  .btn-white, .btn-kakao { padding: 13px 26px; font-size: 0.95rem; }

  .section-title h2 { font-size: 1.65rem; }
  .section-title { margin-bottom: 40px; }

  /* Mobile contact bar */
  .fixed-contact { display: none !important; }

  .mobile-contact {
    display: flex;
    position: fixed;
    bottom: -90px;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: white;
    padding: 10px 12px 16px;
    gap: 10px;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.12);
    transition: bottom 0.35s ease;
  }

  .mobile-contact.show { bottom: 0; }

  .mobile-btn {
    flex: 1;
    text-align: center;
    padding: 13px 0;
    border-radius: 10px;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    display: block;
  }

  .mobile-btn.call  { background: var(--green); color: white; }
  .mobile-btn.kakao { background: #FEE500; color: var(--kakao-text); }
}
