/* ================= CSS 변수 (브랜드 테마 컬러 시스템) ================= */
:root {
  /* 로고 기반 고급화 포인트 컬러 */
  --primary-color: #D96B27;
  /* 로고의 주황을 다듬은 코퍼 앰버 (주요 강조) */
  --primary-hover: #B85215;
  /* 호버 시 깊어지는 앰버 */
  --secondary-color: #1B4D3E;
  /* 로고의 초록을 다듬은 딥 포레스트 그린 */
  --accent-gold: #E5A93C;
  /* 슬라이더/텍스트용 따뜻한 골드 앰버 */

  /* 모노톤 및 배경 컬러 */
  --text-main: #111111;
  --text-body: #333333;
  --text-sub: #666666;
  --text-muted: #888888;
  --bg-white: #ffffff;
  --bg-light: #f9f9fb;
  --border-color: #eaeaea;
}

/* ================= 기본 초기화 ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'NanumBarunGothicLight';
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
}

/* ================= 네비게이션 ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  background-color: rgba(255, 255, 255, 0.98);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* 로고 링크 영역 (아이콘 + 텍스트 정렬) */
.logo-link {
  display: flex;
  align-items: center;
  gap: 5px;
  /* 로고와 글자 사이 간격 */
  text-decoration: none;
}

/* 로고 이미지 스타일 */
.logo-img {
  height: 42px;
  /* 헤더 높이에 맞춘 적절한 로고 높이 */
  width: auto;
  /* 비율 유지 */
  display: block;
  object-fit: contain;

  /* 레티나/고해상도 디스플레이에서 PNG 렌더링을 선명하게 유지 */
  image-rendering: -webkit-optimize-contrast;
}

/* 상호명 텍스트 */
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  /* 브랜드 헤더 컬러에 맞게 조정 */
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* 모바일 화면 반응형 조절 */
@media (max-width: 768px) {
  .logo-img {
    height: 34px;
    /* 모바일에서는 살짝 축소 */
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

.logo a {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.navbar nav a {
  color: #555555;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: var(--primary-color);
}

/* ================= 히어로 & 서브 배너 ================= */
.hero {
  height: 75vh;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9)),
    url('https://via.placeholder.com/1920x1080/f5f5f7/cccccc?text=Bokseong+Liquor') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 60px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.hero-content h1 {
  font-size: 2.6rem;
  color: var(--text-main);
  margin: 0.8rem 0 1.8rem;
  font-weight: 800;
  line-height: 1.3;
}

.hero-content h1 span {
  color: var(--accent-gold);
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 0 1.5rem;
}

.hero-content .subtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 1px;
}

.sub-banner {
  margin-top: 65px;
  background-color: #f7f7f9;
  padding: 4rem 5%;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.sub-banner h1 {
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.sub-banner p {
  color: var(--text-sub);
}

/* ================= 좌우 슬라이딩 히어로 슬라이더 ================= */
/* ================= 좌우 슬라이딩 히어로 슬라이더 ================= */
.hero-slider {
  position: relative;
  height: 90.8vh;
  /* 80vh -> 88vh로 화면 아래쪽까지 넉넉하게 확장 */
  min-height: 680px;
  /* 최소 높이도 550px -> 680px로 꽉 차게 변경 */
  overflow: hidden;
  margin-top: 60px;
  width: 100%;
}

.slider-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
}

.slide .hero-content h1 {
  font-size: 2.8rem;
  color: #ffffff;
  margin: 0.8rem 0 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.slide .hero-content h1 span {
  color: var(--accent-gold);
}

.slide .hero-content p {
  color: #e0e0e0;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* 슬라이더 화살표 버튼 */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.slider-arrow:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 25px;
}

.next-btn {
  right: 25px;
}

/* 슬라이더 점(Dots) */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: var(--accent-gold);
  width: 30px;
  border-radius: 6px;
}

/* ================= 버튼 스타일 ================= */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-outline {
  border: 1px solid var(--text-main);
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: #ffffff;
}

.btn-outline-white {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--text-main);
}

.btn-dark {
  background-color: #222222;
  color: #ffffff;
}

.btn-full {
  width: 100%;
}

/* ================= 레이아웃 & 카드 ================= */
.section {
  padding: 5rem 5%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.bg-light {
  background-color: var(--bg-light);
}

.section-title {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 800;
}

.section-desc {
  max-width: 750px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: var(--text-sub);
  font-size: 1.05rem;
}

.more-link {
  display: block;
  text-align: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

/* ================= 제품 라인업 그리드 & 애니메이션 최적화 ================= */

/* 1. 그리드 높이를 고정하여 하단 CTA 박스가 덜컹거리는 것 방지 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
  min-height: 480px;
  /* 카드가 줄어들어도 하단 배너가 위로 튀어 오르지 않음 */
  align-content: start;
}

/* ================= 제품 카드 하드웨어 가속 및 트랜지션 ================= */

.product-card {
  background: var(--bg-white);
  border-radius: 16px;
  border: 2px solid var(--border-color);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;

  /* GPU 하드웨어 가속 활성화 (부드러운 애니메이션 필수) */
  will-change: transform, opacity;
  transform: translateZ(0);
  /* 그래픽 카드 레이어 분리 */

  /* 트랜지션 속도를 0.25초로 살짝 단축해 반응성 향상 */
  opacity: 1;
  transform: scale(1) translateY(0);
  transition: opacity 0.25s ease-out,
    transform 0.25s ease-out,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* 마우스 호버 효과 */
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(217, 107, 39, 0.15);
}

/* 필터링 숨김 처리 */
.product-card.is-hidden {
  opacity: 0;
  transform: scale(0.95) translateY(8px);
  pointer-events: none;
}

.product-card.d-none {
  display: none !important;
}

.category-badge {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.product-card .specs {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.product-card .desc {
  font-size: 0.95rem;
  color: #555555;
}

.center-btn {
  text-align: center;
  margin-top: 2.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

/* ================= 회사소개, 사업분야 & 절차 ================= */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.business-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #eef0f2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.business-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.business-card h3 {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.business-card .target {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.business-card .desc {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* 핵심 강점 섹션 스타일 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-white, #ffffff);
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color, #D96B27);
  box-shadow: 0 15px 35px rgba(217, 107, 39, 0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background-color: rgba(217, 107, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color, #D96B27);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary-color, #D96B27);
  color: #ffffff;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main, #111827);
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-sub, #6b7280);
  line-height: 1.6;
  margin: 0;
  word-break: keep-all;
  /* 한글 단어 단위 끊김 방지 */
}

/* 반응형 모바일 처리 */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.step-card {
  background: var(--bg-light);
  padding: 1.8rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* ================= 수치 & 절차 강조 ================= */
.stats-section {
  background-color: var(--secondary-color);
  /* 신뢰감을 주는 포레스트 그린 배경 */
  color: #ffffff;
  padding: 3rem 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.simple-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.step-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  background: #f0f0f0;
  color: var(--primary-color);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.step-item h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.step-item p {
  font-size: 0.85rem;
  color: #777777;
}

.step-arrow {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: bold;
}

/* ================= 문의하기 & 지도 ================= */
.contact-form-box {
  max-width: 600px;
  margin: 3rem auto 0;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.info-list {
  list-style: none;
  margin: 1.5rem 0;
}

.info-list li {
  margin-bottom: 0.8rem;
}

.call-box {
  background: var(--bg-light);
  padding: 1.2rem;
  border-radius: 8px;
  text-align: center;
}

.phone-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
}

.map-placeholder {
  height: 300px;
  background-color: #f2f2f4;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #777777;
}

/* ================= 푸터 ================= */
footer {
  background-color: #f4f4f6;
  padding: 3rem 5%;
  border-top: 1px solid #e5e5e5;
  font-size: 0.85rem;
  color: #777777;
  text-align: center;
}

.warning-text {
  background-color: #fff5f5;
  border: 1px solid #fecdcd;
  color: #c53030;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1.8rem;
}

.company-info p {
  margin-bottom: 0.3rem;
}

.copyright {
  margin-top: 1rem;
  color: #999999;
}

/* ================= 반응형 미디어 쿼리 ================= */
@media (max-width: 768px) {
  .step-arrow {
    display: none;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

/* ================= 고도화된 페이지 전환 애니메이션 (상단 여백 버그 수정) ================= */
/* body 자체의 기본 여백을 완벽히 제거 */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* 네비게이션을 제외한 메인 콘텐츠 영역에만 슬라이드 애니메이션 적용 */
main,
section,
footer {
  opacity: 0;
  transform: translateY(10px);
  animation: contentIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: opacity, transform;
}

/* 퇴장 애니메이션 */
body.fade-out main,
body.fade-out section,
body.fade-out footer {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 콘텐츠 진입 키프레임 */
@keyframes contentIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= 고급 신뢰수치 섹션 스타일 ================= */
.trust-stats-section {
  position: relative;
  padding: 120px 0 120px;
  background-color: var(--secondary-color, #1B4D3E);
  /* Deep Forest Green */
  color: #ffffff;
  overflow: hidden;

}

.feature-section {
  padding-top: 100px;
}

a

/* 은은한 격자 패턴 오버레이 */
.stats-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}

/* 은은하게 빛나는 앰버/골드 글래스 글로우 효과 */
.stats-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.glow-1 {
  width: 320px;
  height: 320px;
  background: var(--accent-amber, #D96B27);
  opacity: 0.25;
  top: -60px;
  left: -60px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: var(--gold-color, #E5A93C);
  opacity: 0.18;
  bottom: -100px;
  right: -80px;
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* 섹션 헤더 */
.stats-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}

.stats-header .sub-title {
  color: var(--gold-color, #E5A93C);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.stats-header .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.stats-header .section-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

/* 그리드 및 반투명 카드 스티일 (Glassmorphic Card) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-color, #E5A93C);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
}

/* 카드 내 아이콘 */
.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: rgba(217, 107, 39, 0.15);
  /* Amber 소프트 배경 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-color, #E5A93C);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  background: var(--accent-amber, #D96B27);
  color: #ffffff;
}

/* 숫자 파트 */
.stat-number-wrap {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-unit {
  font-size: 1.5rem;
  color: var(--gold-color, #E5A93C);
  margin-left: 2px;
}

.stat-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ffffff;
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* 반응형 대응 */
@media (max-width: 768px) {
  .trust-stats-section {
    padding: 70px 0;
  }

  .stats-header .section-title {
    font-size: 1.75rem;
  }

  .stat-card {
    padding: 28px 20px;
  }

  .stat-number-wrap {
    font-size: 2.2rem;
  }
}

/* ================= 핵심 강점 3가지 세련된 스타일 ================= */
/* ================= 핵심 강점 3가지 세련된 스타일 (호버 동적 강조) ================= */
.feature-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.section-header .sub-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* 1. 기본 카드 스타일 (모든 카드 동일하게 세팅) */
.feature-card {
  position: relative;
  background: var(--bg-white);
  padding: 40px 30px 35px;
  border-radius: 16px;
  border: 2px solid transparent;
  /* 호버 시 테두리 생길 때 위치 덜덜거림 방지 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  /* 부드러운 애니메이션 */
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

/* 카드 상단 우측 숫자 (기본: 연한 회색) */
.card-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #d1d5db;
  /* 기본 연회색 */
  transition: color 0.35s ease;
}

/* 아이콘 박스 (기본: 연한 주황 배경 + 주황 아이콘) */
.feature-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: rgba(217, 107, 39, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-card p {
  font-size: 0.98rem;
  color: var(--text-sub);
  line-height: 1.65;
}


/* -------------------------------------------------- */
/* 2. 마우스 호버 시 (:hover) 동적 강조 효과 */
/* -------------------------------------------------- */

/* 카드 전체: 위로 떠오르며 주황색 테두리 & 주황빛 그림자 생성 */
.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  /* #D96B27 브랜드 오렌지 */
  box-shadow: 0 20px 40px rgba(217, 107, 39, 0.15);
  /* 은은한 주황 글로우 그림자 */
  background: #ffffff;
}

/* 숫자: 호버한 카드의 숫자가 브랜드 주황색으로 선명하게 강조 */
.feature-card:hover .card-badge {
  color: var(--primary-color);
}

/* 아이콘 박스: 배경이 주황색으로 채워지고 아이콘이 하얗게 변하며 살짝 확대 */
.feature-card:hover .icon-box {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: scale(1.08);
}

/* 2번째 카드를 더욱 돋보이게 하는 하이라이트 스타일 */
.feature-card.highlighted {
  border: 2px solid var(--primary-color);
  background: linear-gradient(180deg, #ffffff 0%, #fffbf8 100%);
}

.card-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ddd;
}

.card-badge.accent {
  color: var(--primary-color);
}

.feature-card .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background-color: rgba(217, 107, 39, 0.08);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-card p {
  font-size: 0.98rem;
  color: var(--text-sub);
  line-height: 1.65;
}


/* ================= 납품 문의 CTA 배너 스타일 ================= */
.cta-banner-section {
  padding: 80px 0 100px;
  background-color: var(--bg-light);
}

.cta-box {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #113329 100%);
  border-radius: 20px;
  padding: 60px 50px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(27, 77, 62, 0.25);
  border: 1px solid rgba(229, 169, 60, 0.3);
  /* 은은한 골드 테두리 */
}

/* 배경 글로우 효과 */
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: var(--primary-color);
  opacity: 0.25;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.cta-tag {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 12px;
}

.cta-content h2 span {
  color: var(--accent-gold);
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

/* CTA 버튼 그룹 레이아웃 */
.cta-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 카카오톡 상담 전용 버튼 스타일 */
.btn-kakao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fee500;
  /* 카카오 시그니처 옐로우 */
  color: #191919;
  /* 카카오 다크 브라운/블랙 */
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-kakao:hover {
  background-color: #fada00;
  /* 마우스 호버 시 살짝 짙어짐 */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(254, 229, 0, 0.3);
}

.btn-kakao i {
  font-size: 1.1rem;
}

/* CTA 전용 버튼 */
.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(217, 107, 39, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(217, 107, 39, 0.45);
}

.btn-cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* CTA 반응형 */
@media (max-width: 992px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 45px 30px;
    gap: 30px;
  }

  .cta-content h2 {
    font-size: 1.65rem;
  }

  .cta-btn-group {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ================= Hero 타이틀 순차 페이드인 애니메이션 ================= */

/* 1. 키프레임 정의 */
@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 기본 상태: 활성화되지 않은 슬라이드 속 글자들은 투명 */
.slide .hero-tag,
.slide h1,
.slide p,
.slide .btn-group {
  opacity: 0;
}

/* active 클래스가 들어간 슬라이드 내부 요소만 애니메이션 재생 */
.slide.active .hero-tag {
  animation: heroFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.slide.active h1 {
  animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.35s;
}

.slide.active p {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

.slide.active .btn-group {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.65s;
}

/* ================= 회사소개 (About) 서브페이지 전용 ================= */

/* ================= 양쪽 Glow 효과가 적용된 서브 페이지 헤더 ================= */
.sub-header-banner {
  margin-top: 60px;
  background-color: var(--secondary-color, #1B4D3E);
  /* 딥 포레스트 그린 */
  padding: 90px 5% 80px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* 영역 밖으로 나가는 빛 잘라내기 */
}

/* 1. 좌측 상단 앰버 Glow */
.sub-header-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: var(--primary-color, #D96B27);
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

/* 2. 우측 하단 골드 Glow */
.sub-header-banner::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--accent-gold, #E5A93C);
  opacity: 0.22;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* 글씨가 빛 뒤로 묻히지 않도록 z-index 세팅 */
.sub-header-banner .relative-z {
  position: relative;
  z-index: 2;
}

.sub-header-tag {
  color: var(--accent-gold, #E5A93C);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.sub-header-banner h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 15px;
  color: #ffffff;
}

.sub-header-banner h1 span {
  color: var(--accent-gold, #E5A93C);
}

.sub-header-banner p {
  font-size: 1.00rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto;
}

/* 대표 인사말 영역 */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.story-image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.story-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-badge {
  position: absolute;
  bottom: 25px;
  right: 25px;
  background: var(--primary-color);
  color: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(217, 107, 39, 0.4);
}

.badge-number {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-gold);
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 4px;
}

.text-left {
  text-align: left !important;
}

.story-desc {
  font-size: 1.02rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 18px;
}

.vision-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.v-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.v-card h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 5px;
}

.v-card p {
  font-size: 0.88rem;
  color: var(--text-sub);
}

/* 기업 연혁 타임라인 스타일 */
.timeline-wrap {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}

/* 타임라인 세로 중앙선 */
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  display: flex;
  margin-bottom: 35px;
  position: relative;
}

.timeline-year {
  width: 120px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-color);
  text-align: right;
  padding-right: 20px;
  flex-shrink: 0;
}

.timeline-content {
  padding-left: 40px;
  position: relative;
}

/* 타임라인 포인트 동그라미 */
.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--primary-color);
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-sub);
}

/* 반응형 모바일 대응 */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .timeline-wrap::before {
    left: 15px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 35px;
  }

  .timeline-year {
    width: auto;
    text-align: left;
    padding-right: 0;
    margin-bottom: 5px;
  }

  .timeline-content {
    padding-left: 0;
  }

  .timeline-content::before {
    left: -26px;
    top: -22px;
  }
}

/* ================= 사업분야 (Business) 서브페이지 전용 ================= */

/* 사업 분야 카드 그리드 */
.biz-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.biz-detail-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.biz-detail-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(217, 107, 39, 0.12);
}

.biz-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.biz-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* 아이콘 박스 세련되게 스타일링 */
.biz-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(217, 107, 39, 0.08);
  /* 브랜드 오렌지 연한 배경 */
  color: var(--primary-color);
  /* 브랜드 오렌지 아이콘 컬러 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  /* 아이콘 크기 적정 조절 */
  transition: all 0.35s ease;
}

/* 카드 마우스 호버 시 아이콘 반전 효과 */
.biz-detail-card:hover .biz-icon {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: scale(1.08) rotate(-3deg);
  /* 가볍게 튀어 오르는 액션 */
}

.biz-detail-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.biz-target {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.biz-desc {
  font-size: 0.98rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* 특징 체크 리스트 */
.biz-feature-list {
  list-style: none;
  padding-top: 20px;
  border-top: 1px dashed var(--border-color);
  margin-top: auto;
}

.biz-feature-list li {
  font-size: 0.9rem;
  color: var(--text-body);
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.biz-feature-list li:last-child {
  margin-bottom: 0;
}

.biz-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
}



/* 반응형 모바일 대응 */
@media (max-width: 768px) {
  .biz-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= 납품 문의 (Contact) 서브페이지 전용 ================= */

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
}

/* 좌측 정보 카드 */
.contact-info-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px 35px;
  border: 2px solid var(--border-color);
  /* 기본 테두리 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(217, 107, 39, 0.15);
}

.contact-info-card .sub-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.contact-info-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
}

.info-desc {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* 전화 바로 걸기 박스 */
.call-banner-box {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #113329 100%);
  color: #ffffff;
  padding: 24px 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  /* Glow가 박스 밖으로 넘치지 않도록 제한 */
  border: 1px solid rgba(229, 169, 60, 0.3);
  /* 은은한 골드 테두리 */
  box-shadow: 0 10px 25px rgba(27, 77, 62, 0.25);
  transition: all 0.35s ease;
}

.call-banner-box::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 180px;
  height: 180px;
  background: var(--primary-color, #D96B27);
  opacity: 0.35;
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.call-banner-box:hover::before {
  opacity: 0.6;
}

.call-banner-box:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 12px 30px rgba(217, 107, 39, 0.3);
}

.call-icon {
  font-size: 2rem;
  color: var(--accent-gold);
}

.call-text span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2px;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

/* 세부 연락 정보 리스트 */
.contact-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-detail-list li i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.contact-detail-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.contact-detail-list p {
  font-size: 0.9rem;
  color: var(--text-sub);
}


/* ================= 카카오톡 1:1 상담 카드 전용 스타일 ================= */

.kakao-chat-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf0 100%);
  border-radius: 16px;
  padding: 45px 35px;
  border: 2px solid rgba(229, 169, 60, 0.3);
  /* 기본: 연한 카카오 옐로우 테두리 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 카카오톡 박스 마우스 호버 시: 진한 카카오 시그니처 테두리 & 노란색 글로우 그림자 */
.kakao-chat-card:hover {
  transform: translateY(-8px);
  border: 2px solid rgba(254, 229, 0, 0.6);
  border-color: #fee500;
  /* 선명한 카카오 옐로우 */
  box-shadow: 0 20px 45px rgba(254, 229, 0, 0.45);
  /* 입체적인 노란색 Glow */
  background: #ffffff;
}

.kakao-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  background-color: #3c1e1e;
  /* 카카오 브라운 계열 */
  color: #fee500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.kakao-chat-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #191919;
  margin-bottom: 10px;
}

.kakao-desc {
  font-size: 0.98rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* 카카오 상담 장점 체크리스트 */
.kakao-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

.k-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.k-feature-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.k-feature-item span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

/* 노란색 카카오톡 버튼 */
.btn-kakao-chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #fee500;
  /* 카카오 노란색 */
  color: #191919;
  /* 카카오 텍스트 컬러 */
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(254, 229, 0, 0.4);
  margin-top: auto;
}

.btn-kakao-chat:hover {
  background-color: #fada0a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(254, 229, 0, 0.6);
}

.btn-kakao-chat i {
  font-size: 1.4rem;
}

/* 반응형 대응 */
@media (max-width: 992px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .inquiry-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ================= 오시는 길 (Location) 전용 스타일 ================= */

.location-map-container {
  margin-bottom: 50px;
}

/* ================= 카카오 약도 퍼가기 영역 크기 고정 & 반응형 최적화 ================= */

/* 1. 카카오 지도가 들어갈 부모 박스 정돈 */
.map-box.main-map {
  width: 100%;
  height: 450px;
  background-color: #eef1f5;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  /* 영역 밖으로 나가는 지도 요소 잘라내기 */
  position: relative;
  /* display: flex 삭제 (카카오 지도 렌더링 깨짐 방지) */
}

/* 2. 카카오약도 자동 생성 컨테이너를 부모 크기(100%)에 강제로 맞춤 */
.map-box .root_daum_roughmap {
  width: 100% !important;
  height: 100% !important;
  border-radius: 20px;
  border: none !important;
  padding: 0 !important;
}

/* 3. 지도 내부 지점정보 캔버스 및 iframe 너비 강제 교정 */
.map-box .root_daum_roughmap .outer,
.map-box .root_daum_roughmap .wrap_controllers,
.map-box .root_daum_roughmap .map {
  width: 100% !important;
  height: 100% !important;
}

/* 외부 지도 앱 빠른 바로가기 버튼 */
.map-quick-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-map-link.kakao {
  background-color: #fee500;
  color: #191919;
}

.btn-map-link.naver {
  background-color: #03cf5d;
  color: #ffffff;
}

.btn-map-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 교통 안내 카드 Grid */
.location-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 35px 28px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* 마우스 호버 시 떠오르는 코퍼 앰버 테두리 애니메이션 */
.location-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(217, 107, 39, 0.15);
}

.card-icon {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background-color: rgba(217, 107, 39, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.location-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 15px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.5;
}

.info-list strong {
  color: var(--text-main);
  display: inline-block;
  margin-right: 4px;
}

.link-phone {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.link-phone:hover {
  text-decoration: underline;
}

/* 반응형 레아아웃 */
@media (max-width: 992px) {
  .location-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= 제품 라인업 (Products) 전용 스타일 ================= */

/* 카테고리 필터 탭 */
.product-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}

.filter-btn {
  padding: 12px 26px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  color: var(--text-sub);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 6px 18px rgba(217, 107, 39, 0.25);
}

/* 제품 카드 그리드 */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--bg-white);
  border-radius: 16px;
  border: 2px solid var(--border-color);
  overflow: hidden;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

/* 마우스 호버 시: 떠오르면서 코퍼 앰버 테두리 강조 */
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(217, 107, 39, 0.15);
}

/* 뱃지 */
.badge-hot {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: 0.5px;
}

/* 이미지 썸네일 영역 */
.product-img-box {
  height: 220px;
  background-color: #f7f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.dummy-prod-icon {
  font-size: 4rem;
  color: #c0c6d0;
  transition: transform 0.35s ease;
}

.product-card:hover .dummy-prod-icon {
  transform: scale(1.15) rotate(-3deg);
  color: var(--primary-color);
}

/* 제품 상세 정보 */
.product-info {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.prod-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.prod-desc {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.45;
  margin-bottom: 18px;
}

.prod-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--border-color);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-sub);
  font-weight: 600;
}

/* 하단 견적 문의 CTA 박스 */
.product-cta-box {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #113329 100%);
  border-radius: 16px;
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(27, 77, 62, 0.25);
}

.cta-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.cta-text h3 span {
  color: var(--accent-gold);
}

.cta-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(217, 107, 39, 0.3);
}

.btn-product-cta:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(217, 107, 39, 0.45);
}

/* 반응형 레아아웃 */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-cta-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= 납품 유의사항 (Notice Box) 스타일 ================= */

/* ================= 슬림형 납품 유의사항 (Compact Notice) ================= */

.notice-compact-box {
  background-color: #f8faf9;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.notice-compact-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 0.9rem;
  white-space: nowrap;
  padding-right: 15px;
  border-right: 1px solid var(--border-color);
}

.notice-compact-title i {
  font-size: 1rem;
}

.notice-compact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notice-compact-list li {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.4;
  position: relative;
  padding-left: 12px;
}

/* 불릿 기호 */
.notice-compact-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.notice-compact-list li strong {
  color: var(--text-main);
  font-weight: 700;
}

/* 모바일 반응형: 화면이 좁아지면 위아래로 배치 */
@media (max-width: 768px) {
  .notice-compact-box {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  .notice-compact-title {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 8px;
    width: 100%;
  }
}

/* 전화 문의 카드 강조 스타일 */
.highlight-phone-card {
  position: relative;
  border: 2px solid var(--primary-color, #D96B27);
  box-shadow: 0 10px 30px rgba(217, 107, 39, 0.12);
}

.call-badge {
  display: inline-block;
  background: var(--primary-color, #D96B27);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* 즉시 전화 걸기 CTA 버튼 */
.btn-direct-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-color, #D96B27);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 20px;
  border-radius: 12px;
  margin: 20px 0 30px;
  box-shadow: 0 6px 20px rgba(217, 107, 39, 0.3);
  transition: all 0.3s ease;
}

.btn-direct-call:hover {
  background-color: #c25d1e;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 107, 39, 0.4);
}

/* ================= 카테고리 그리드 UI (첨부 이미지 반영) ================= */

.category-section-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
}

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

.category-card {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.category-card.active {
  border-color: var(--primary-color, #D96B27);
  background-color: #fffcf9;
}

/* 카테고리 아이콘/이미지 배경 색상 박스 */
.cat-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 2rem;
}

.cat-img-box img {
  width: 75%;
  height: auto;
  object-fit: contain;
}

/* 첨부 이미지의 파스텔톤 배경색 */
.bg-all {
  background-color: #f1f5f9;
  color: var(--primary-color);
}

.bg-pink {
  background-color: #fce7f3;
}

.bg-purple {
  background-color: #f3e8ff;
}

.bg-yellow {
  background-color: #fef9c3;
}

.bg-cyan {
  background-color: #e0f2fe;
}

.bg-orange {
  background-color: #ffedd5;
}

.bg-green {
  background-color: #dcfce7;
}

.bg-blue {
  background-color: #e0e7ff;
}

.bg-lightpink {
  background-color: #ffe4e6;
}

.bg-lightpurple {
  background-color: #ede9fe;
}

.cat-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
}

.divider {
  border: 0;
  height: 1px;
  background: var(--border-color, #e2e8f0);
  margin: 40px 0;
}

/* 제품 목록 스타일 */
.product-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.product-list-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
}

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

.product-card {
  background: #fff;
  border: 1px solid var(--border-color, #e2e8f0);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color, #D96B27);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.p-img {
  width: 100%;
  height: 140px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-color, #D96B27);
  margin-bottom: 16px;
}

.p-category {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-color, #D96B27);
  letter-spacing: 0.5px;
}

.p-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 6px 0;
}

.p-desc {
  font-size: 0.88rem;
  color: var(--text-sub, #64748b);
  margin: 0;
}

/* 하단 문의 배너 */
.bottom-cta-banner {
  margin-top: 50px;
  background: #1B4D3E;
  /* 다크 그린 */
  border-radius: 16px;
  padding: 28px 36px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.bottom-cta-banner h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.bottom-cta-banner p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

.btn-phone-call {
  background: var(--primary-color, #D96B27);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 6px 15px rgba(217, 107, 39, 0.4);
  transition: all 0.25s ease;
}

.btn-phone-call:hover {
  background: #c25d1e;
  transform: translateY(-2px);
}

/* 모바일 반응형 처리 */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

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

  .bottom-cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}