/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-width: 380px;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  min-width: 380px;
}

.container {
  margin: 0 auto;
}

/* 모든 section의 좌우 padding을 컨테이너와 동일하게 설정 */
section {
  padding-left: 120px;
  padding-right: 120px;
}

/* maintenance-hero 내부의 container는 padding 120px */
.maintenance-hero > .container {
  padding-left: 120px;
  padding-right: 120px;
}

@media (max-width: 860px) {
  section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .maintenance-hero > .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer .container {
    display: flex;
    flex-direction: column;
  }

  .footer-content {
    display: flex;
    flex-direction: column !important;
  }

  .footer-logo {
    margin-top: 0;
    margin-bottom: 32px;
    padding-right: 0;
  }

  .footer-sections {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 2rem;
    padding-right: 0;
  }

  .footer-section:first-child {
    padding-bottom: 0 !important;
  }

  .footer-section:last-child {
    margin-bottom: 0;
  }

  .footer-bottom {
    margin-top: 0;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
}

/* 헤더 내부 컨테이너는 전체폭 사용 */
.header > .container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 120px;
  width: 100%;
  box-sizing: border-box; /* 패딩을 포함한 너비 계산 */
  background: rgb(219 219 219 / 10%);
  min-height: 60px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}

/* 로고 그룹 스타일 */
.logo-group {
  display: flex !important;
  align-items: center;
  width: 180px;
  height: 40px;
  gap: 2px; /* 두 이미지 사이 간격 */
  background: transparent;
}

.logo-img {
  height: 100%;
  width: auto;
  max-width: 89px; /* 180px / 2 - 간격 고려 */
  object-fit: contain;
  display: block !important;
}

/* asset9.png 이미지를 검정색으로 변경 */
.logo-img[src*="asset9.png"],
.logo-img[alt*="그린에이 로고 9"] {
  filter: brightness(0);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-menu li {
  display: flex;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
  flex-shrink: 0; /* 축소 방지 */
  min-width: 0; /* flex item 최소 너비 제한 */
}

/* navTop_container for Maintenance Page */
.navTop_container__E1TtP {
  /* nav-container와 동일한 스타일 상속 */
  position: relative;
  box-sizing: border-box; /* 패딩을 포함한 너비 계산 */
}

/* navTop_nav_sub_bar_wrap for Maintenance Page */
.navTop_nav_sub_bar_wrap__yqxmE {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav-sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.nav-sub-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.quote-btn {
  background: #53c178;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans KR", sans-serif; /* company.html과 동일한 폰트 */
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  opacity: 1;
  transform: scale(1);
  white-space: nowrap;
  flex-shrink: 0; /* 축소 방지 */
  max-width: 100%; /* 부모 컨테이너를 넘지 않도록 */
  box-sizing: border-box; /* company.html 버튼과 동일한 box-sizing */
  line-height: 1.5; /* company.html 버튼과 동일한 line-height */
  height: auto; /* 높이 자동 조정 */
  min-height: 40px; /* 최소 높이 설정 (padding 12px * 2 + line-height) */
  vertical-align: middle; /* 수직 정렬 */
  letter-spacing: normal; /* letter-spacing 명시적 설정 */
  text-align: center; /* 텍스트 중앙 정렬 */
  text-transform: none; /* 텍스트 변환 없음 */
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: #53c178;
}

/* 드롭다운 메뉴 스타일 */
.dropdown {
  position: relative;
}

/* Tailwind 스타일 메가 메뉴 */
.navbar_hoveredMenuBg {
  position: fixed !important;
  top: 72px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: auto !important; /* 높이 자동 */
  min-height: 200px !important; /* 최소 높이 보장 */
  z-index: 998 !important; /* header(1000)보다 낮지만 hero(1)보다 높음 */
  background: rgb(219 219 219 / 10%) !important;
  /* backdrop-filter는 JavaScript로 동적 적용 */
  border-top: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.12),
    0 4px 6px -2px rgba(0, 0, 0, 0.06) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease-in-out !important;
  transform: translateY(-10px) translateZ(0) !important; /* GPU 가속 */
  will-change: transform, opacity, backdrop-filter !important; /* 렌더링 최적화 */
  backface-visibility: hidden !important; /* 렌더링 최적화 */
  pointer-events: auto !important; /* 클릭 이벤트 허용 */
  /* backdrop-filter 작동을 위한 추가 설정 */
  -webkit-transform: translateY(-10px) translateZ(0) !important;
  transform-style: preserve-3d !important;
}

.container:hover .navbar_hoveredMenuBg,
.nav-container:hover ~ .navbar_hoveredMenuBg,
.navTop_container__E1TtP:hover ~ .navbar_hoveredMenuBg,
.navbar_hoveredMenuBg:hover {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) translateZ(0) !important; /* GPU 가속 유지 */
}

/* 메가 메뉴 강제 닫기 클래스 - JavaScript로 닫을 때 사용 */
.navbar_hoveredMenuBg.mega-menu-closed,
.navbar_hoveredMenuBg.mega-menu-closed:hover,
.container:hover .navbar_hoveredMenuBg.mega-menu-closed,
.nav-container:hover ~ .navbar_hoveredMenuBg.mega-menu-closed,
.navTop_container__E1TtP:hover ~ .navbar_hoveredMenuBg.mega-menu-closed {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) translateZ(0) !important;
  pointer-events: none !important;
}

/* 태블릿 사이즈(860px 이하)에서는 메가 메뉴 호버 비활성화 */
@media (max-width: 860px) {
  .container:hover .navbar_hoveredMenuBg,
  .nav-container:hover ~ .navbar_hoveredMenuBg,
  .navTop_container__E1TtP:hover ~ .navbar_hoveredMenuBg {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
  }
}

/* 햄버거 메뉴가 활성화된 상태에서는 메가 메뉴 호버 비활성화 */
.mobile-nav-active .navbar_hoveredMenuBg {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
}

.mobile-nav-active .container:hover .navbar_hoveredMenuBg,
.mobile-nav-active .nav-container:hover ~ .navbar_hoveredMenuBg {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-10px) !important;
}

.navbar_hoveredMenuContainer {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  padding: 2rem 0 !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  list-style: none !important;
  position: relative !important;
  z-index: 1 !important;
}

.navbar_hoveredListContainer {
  flex: 1 !important;
  padding: 0 1.5rem !important;
  list-style: none !important;
  margin: 0 !important;
}

.mega-menu-header {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: #d1d5db !important;
  text-align: center !important;
  margin-bottom: 1rem !important;
  padding: 0.5rem 0 !important;
  border-bottom: 1px solid rgba(209, 213, 219, 0.3) !important;
  pointer-events: none !important;
  user-select: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-bottom-color 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.navbar_hoveredMenuList {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.navbar_hoveredMenuList a {
  display: block !important;
  text-decoration: none !important;
  color: #ffffff !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  padding: 0.5rem 0 !important;
  border-radius: 0.375rem !important;
  transition: all 0.2s ease !important;
  text-align: center !important;
  width: 100% !important;
}

.navbar_hoveredMenuList a:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  transform: scale(1.05) !important;
  font-size: 0.95rem !important;
}

/* 스크롤 시 메가 메뉴 배경 및 텍스트 색상 변경 */
body.scrolled .navbar_hoveredMenuBg {
  background: #ffffff !important;
  backdrop-filter: blur(100px) saturate(100%) brightness(1) !important;
  -webkit-backdrop-filter: blur(100px) saturate(100%) brightness(1) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.scrolled .navbar_hoveredMenuList a {
  color: #374151 !important;
}

body.scrolled .navbar_hoveredMenuList a:hover {
  color: #1f2937 !important;
  background-color: rgba(107, 114, 128, 0.1) !important;
  transform: scale(1.05) !important;
  font-size: 0.95rem !important;
}

body.scrolled .mega-menu-header {
  color: #6b7280 !important;
  border-bottom: 1px solid rgba(107, 114, 128, 0.3) !important;
}

body.scrolled .nav-menu a {
  color: #000000 !important;
}

.navbar_hoveredMenuList li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dropdown-menu-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #53c178;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-menu-list li a:hover::before {
  transform: scaleY(1);
}

/* 중복된 .quote-btn 스타일 제거 - 첫 번째 정의(234줄) 사용 */

.quote-btn:hover {
  background: #53c178;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(38, 200, 110, 0.3);
}

/* button과 a 태그 모두 동일한 스타일 적용 (company.html 버튼 사이즈 기준) */
.quote-btn,
button.quote-btn,
a.quote-btn {
  box-sizing: border-box;
  line-height: 1.5;
  height: auto;
  min-height: 40px;
  vertical-align: middle;
  font-family: "Noto Sans KR", sans-serif; /* company.html과 동일한 폰트 */
  font-size: 14px; /* company.html과 동일한 폰트 사이즈 */
  font-weight: 500; /* company.html과 동일한 폰트 굵기 */
  letter-spacing: normal; /* letter-spacing 명시적 설정 */
  text-align: center; /* 텍스트 중앙 정렬 */
  text-transform: none; /* 텍스트 변환 없음 */
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 24px; /* tighter to fit in viewport */
  background: #000;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* ensure one-screen fit */
  z-index: 1; /* navbar_hoveredMenuBg(999)보다 낮게 */
  box-sizing: border-box;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 800ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1200ms ease;
}

.hero-slide.active {
  opacity: 0.9;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0;
  min-height: 96px;
}

.container.hero-inner {
  max-width: none;
  padding: 0 120px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  box-sizing: border-box;
  width: 100%;
}

.hero-wrap {
  position: relative;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
}

.hero-copy {
  margin: 12vh auto clamp(24px, 6vh, 96px); /* smaller, responsive bottom gap */
  padding: 0;
}

.hero-title {
  margin: 0 0 1.25rem 0;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
  color: white;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-subtitle {
  margin: 12px 0 0;
  color: #e5e7eb;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
    margin-bottom: 1.1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .maintenance-hero-title {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .maintenance-hero-subtitle {
    font-size: 15px;
  }

  .footer {
    padding: 3.5rem 120px 2rem;
  }

  .footer-content {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap;
    padding: 0 0 40px 0;
  }

  .footer-logo {
    padding-right: 3rem;
  }

  .footer-section {
    padding-right: 3rem;
  }

  .footer-section:last-child {
    padding-right: 0;
  }

  .footer-logo .logo-img {
    max-height: 38px;
  }
}

.hero-bottom {
  position: absolute;
  left: 120px;
  right: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  /* add visual spacer from .hero-copy without changing slide height */
  margin-top: clamp(144px, 36vh, 840px);
  z-index: 2;
  transition: flex-direction 0.3s ease, gap 0.3s ease;
  box-sizing: border-box;
  max-width: calc(100% - 240px);
}

.hero-index {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-idx {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-idx.current {
  font-size: 28px;
  color: #f8fafc;
}

.hero-idx.total {
  color: #dadada;
  font-size: 20px;
}

.hero-progress {
  position: relative;
  width: 120px;
  height: 8px;
  display: flex;
  align-items: center;
}

.hero-progress-bg {
  width: 100%;
  height: 2px;
  background: #ffffff;
  opacity: 0.4;
}

.hero-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  background: #ffffff;
  width: 0%;
}

.hero-progress-fill.animating {
  animation: heroProgress var(--slide-duration, 5s) linear forwards;
}

@keyframes heroProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.hero-arrows {
  display: flex;
  gap: 10px;
}

.hero-arrows .arrow {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrows .arrow .arrow-svg {
  display: block;
}

.rotate-180 {
  transform: scaleX(-1);
}

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

.cta-button {
  background: #53c178;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #53c178;
  transform: translateY(-2px);
}

/* Challenge Section */
.challenge {
  padding: 160px 0;
  background: #ffffff;
}

.challenge-content {
  margin: 0 120px;
}

@media (max-width: 860px) {
  .challenge-content {
    margin: 0 24px;
  }

  .about-hero-wrapper {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 2rem;
    padding: 0;
    min-height: auto !important;
  }

  .about-hero-wrapper .about-hero-content {
    grid-column: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    order: 2 !important;
    min-height: auto !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
  }

  .about-hero-wrapper .about-hero-image-section {
    grid-column: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    order: 1 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }
}

@media (min-width: 781px) and (max-width: 860px) {
  .about-hero-wrapper {
    gap: 2rem;
  }

  .about-hero-wrapper .about-hero-content {
    background: transparent !important;
  }

  #about .about-hero-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: none;
    position: relative;
  }

  #about .about-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('index/공기 설계.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
  }

  #about .about-hero-wrapper .about-hero-content {
    position: relative;
    z-index: 1;
  }

  #about .about-hero-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  #mainService ul li .about-hero-wrapper.service-item .about-hero-content {
    padding: 0 !important;
  }

  .about-hero-wrapper.service-item .about-hero-text-section {
    gap: 1.5rem;
  }
}

.challenge-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #26c86e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-align: center;
}

.challenge-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1e293b;
  margin: 0 0 6rem 0;
  letter-spacing: -0.025em;
  text-align: center;
}

.challenge-highlight {
  display: inline-block;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

.challenge-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.8rem;
  background-color: #a4f3bf;
  border-radius: 2px;
  z-index: -1;
}

.challenge-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #666666;
  margin: 0 0 48px 0;
}

@media (max-width: 780px) {
  .challenge {
    padding: 80px 0;
  }

  .challenge-title {
    font-size: 1.875rem;
  }

  .challenge-description {
    font-size: 1rem;
  }
}

/* Main Service Section */
.main-service-section {
  padding: 0;
  background: #ffffff;
}

.main-service-section .container {
  margin: 0 auto;
  padding: 0 120px;
}

#mainTitleArea {
  text-align: center;
  margin-top: 160px;
  margin-bottom: 160px;
  padding-left: 120px;
  padding-right: 120px;
}

#mainTitleArea h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #333333;
  margin: 0 0 24px 0;
  letter-spacing: -0.025em;
}

#mainTitleArea p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #666666;
  margin: 0;
}

.service-item {
  margin-bottom: 0;
  min-height: 56vh;
}

.service-item .about-hero-content {
  min-height: auto;
}

.service-item .about-hero-image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8vh;
  height: auto;
}

.service-item .service-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #53c178;
  border-radius: 50%;
  color: #ffffff;
  font-size: 3rem;
}

.service-item:nth-child(even) .about-hero-content {
  order: 2;
}

.service-item:nth-child(even) .about-hero-image-section {
  order: 1;
}

#mainService ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 160px;
}

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

@media only screen and (min-width: 879px) {
  .main-service-section .container {
    position: relative;
  }

  #mainService .grid {
    top: 0;
    left: 50%;
    height: 100%;
    position: absolute;
    width: 1px;
    background-color: #e5e7eb;
    transform: translateX(-50%);
  }

  #mainService .grid:before {
    content: "\30FB";
    line-height: 1;
    text-indent: 1px;
    display: inline-block;
    color: #e5e7eb;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -9px;
    top: -10px;
    background-color: #fff;
    border-radius: 50%;
  }

  #mainService .grid:after {
    content: "\30FB";
    line-height: 1;
    text-indent: 1px;
    display: inline-block;
    color: #e5e7eb;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    width: 20px;
    height: 20px;
    position: absolute;
    left: -9px;
    bottom: -10px;
    background-color: #fff;
    border-radius: 50%;
  }

  #mainService .about-hero-content {
    padding: 0;
    padding-right: 120px;
  }

  #mainService ul li:nth-child(2) .about-hero-content,
  #mainService ul li:nth-child(4) .about-hero-content {
    padding-right: 0;
    padding-left: 60px;
  }

  #mainService .about-hero-btn-primary {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.5;
    color: #26c86e;
    background-color: transparent;
    padding: 0;
  }
}

@media (min-width: 860px) and (max-width: 880px) {
  #mainService ul li:nth-child(1) .about-hero-wrapper.service-item .about-hero-content,
  #mainService ul li:nth-child(3) .about-hero-wrapper.service-item .about-hero-content {
    padding: 0;
    padding-right: 120px;
  }

  #mainService ul li:nth-child(2) .about-hero-wrapper.service-item .about-hero-content,
  #mainService ul li:nth-child(4) .about-hero-wrapper.service-item .about-hero-content {
    padding: 0;
    padding-left: 60px;
  }
}

@media (max-width: 860px) {
  .main-service-section {
    padding: 0;
  }

  .main-service-section .container {
    padding: 0 24px;
  }

  #mainTitleArea {
    margin-top: 160px;
    margin-bottom: 160px;
    padding-left: 24px;
    padding-right: 24px;
  }

  #mainTitleArea h2 {
    font-size: 1.875rem;
  }

  #mainTitleArea p {
    font-size: 1rem;
  }

  .about-hero-content {
    background: transparent;
  }

  .service-item .service-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  #mainService ul li .about-hero-image-section {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    overflow: hidden;
  }

  .main-service-section .about-hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .main-service-section .about-hero-content {
    padding: 24px !important;
    margin-bottom: 120px;
  }
}

@media (max-width: 780px) {
  .main-service-section {
    padding: 0;
  }

  #mainTitleArea h2 {
    font-size: 1.5rem;
  }
}

/* About Section */
.about {
  padding: 0;
  box-sizing: border-box;
  border: 0 solid;
  margin: 0;
  padding-inline: 0;
}

.about-hero-wrapper {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  align-items: stretch;
  min-height: 56vh;
  color: unset;
}

#about .about-hero-wrapper {
  background-image: url('air-design.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-content {
  grid-column: span 6 / span 6;
  padding: 120px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 0 solid;
  margin: 0;
  background: #ffffff;
  justify-content: center;
}

.about-hero-text-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.about-hero-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.about-hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 0.5rem;
}

.about-hero-badge span {
  color: #666;
}

.about-hero-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.about-hero-badge-link:hover {
  color: #4f46e5;
}

.about-hero-badge-icon {
  display: inline-block;
}

.about-hero-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin: 0 0 24px 0;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
}

.about-hero-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0;
  font-weight: 500;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-font-smoothing: antialiased;
}

.about-hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.about-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  background-color: #24292f;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-font-smoothing: antialiased;
}

.about-hero-btn-primary:hover {
  transform: translateY(-1px);
}

.about-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #666;
  background-color: transparent;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-font-smoothing: antialiased;
}

.about-hero-btn-secondary:hover {
  color: #e0e7ff;
}

.about-hero-image-section {
  grid-column: span 6 / span 6;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  overflow: hidden;
}

.about-hero-image {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Service Section */
.service {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #333;
}

.section-header h3 {
  font-size: 1.5rem;
  color: #666;
  font-weight: 300;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #53c178;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.service-card p {
  color: #666;
  font-size: 0.9rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.service-guarantee h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.service-guarantee p {
  color: #666;
}

/* Products Section - NHN Style */
.products {
  padding: 0;
  background: transparent;
}

/* NHN Container Styles */
.min-w-1360 {
  min-width: 0; /* 기본값: 최소 너비 제한 없음 */
  width: 100%; /* 반응형 대응 */
}

/* 데스크톱에서만 최소 너비 적용 */
@media (min-width: 1360px) {
  .min-w-1360 {
    min-width: 1360px;
  }
}

.pl-80 {
  padding-left: 0;
}

.pr-80 {
  padding-right: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* NHN Section Styles */
.products
  section.mx-auto.flex.h-auto.flex-col.justify-center.pb-240.text-center.space-y-66 {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* NHN Typography */
.font-poppins {
  font-family: "Poppins", sans-serif;
}

.text-t3-xl {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.text-t5-xl {
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 700;
}

.text-t5-l {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
}

.text-body9-m {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

.text-grayscale-3 {
  color: #666;
}

/* NHN Layout */
.z-1 {
  z-index: 1;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-8 {
  gap: 2rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.max-w-400px {
  max-width: 400px;
}

.text-xl {
  font-size: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
}

.font-bold {
  font-weight: 700;
}

.rounded-md {
  border-radius: 0.375rem;
}

.h-14 {
  height: 3.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.inline-flex {
  display: inline-flex;
}

.w-full {
  width: 100%;
}

/* Responsive utilities */
@media (max-width: 1024px) {
  .max-lg\:flex-col {
    flex-direction: column;
  }

  .max-lg\:gap-8 {
    gap: 2rem;
  }

  .max-lg\:items-center {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .max-md\:pb-54px {
    padding-bottom: 54px;
  }

  .max-md\:pt-9 {
    padding-top: 36px;
  }

  .max-md\:gap-6 {
    gap: 1.5rem;
  }

  .max-md\:gap-1 {
    gap: 0.25rem;
  }

  .max-md\:text-xl {
    font-size: 1.25rem;
  }
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.space-y-8 > * + * {
  margin-top: 8px;
}

.space-x-20 > * + * {
  margin-left: 20px;
}

.mb-0 {
  margin-bottom: 0;
}

/* NHN Card Styles */
.products ul.flex.space-x-20 {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.products li.relative.h-526.w-224 {
  position: relative;
  height: 526px;
  width: 100%;
  min-height: 200px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
  /* JavaScript로 동적 크기 설정 */
}

/* 반응형 이미지 크기 조정 */
@media (max-width: 1360px) {
  .products li.relative.h-526.w-224 {
    min-width: 320px;
  }
}

@media (max-width: 860px) {
  .products li.relative.h-526.w-224 {
    min-width: 280px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .products li.relative.h-526.w-224 {
    min-width: 280px;
    min-height: 200px;
  }
}

.rounded-10 {
  border-radius: 10px;
}

.overflow-hidden {
  overflow: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

.object-cover {
  object-fit: cover;
}

/* NHN Gradient Overlay */
.gradient-overlay {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

/* NHN Hidden Content */
.products [hidden] {
  display: none;
}

.products [style*="visibility:hidden"] {
  visibility: hidden;
  opacity: 0;
}

/* NHN Hover Effects */
.products li.relative.h-526.w-224:hover [hidden] {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.products li.relative.h-526.w-224:hover .gradient-overlay {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

/* NHN SVG Arrow */
.products svg.h-40.w-40 {
  width: 40px;
  height: 40px;
}

/* Contact Section - Tetherdrop Style */
.contact-section {
  display: flex;
  justify-content: space-between;
  padding: 160px 120px; /* PC 기준 */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.contact-section.animate {
  opacity: 1;
  transform: translateY(0);
}

/* 1024px 초과일 때만 align-items: flex-end 적용 */
@media (min-width: 1025px) {
  .contact-section {
    align-items: flex-end;
  }
}

/* 860px 이상 1024px 이하일 때 align-items: center 적용 */
@media (min-width: 860px) and (max-width: 1024px) {
  .contact-section {
    align-items: center;
  }
}

.contact-section .flex.flex-col.gap-8 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* contact-section 내부의 flex flex-col gap-8 안에 있는 logo-group */
.contact-section .flex.flex-col.gap-8 .logo-group {
  width: auto; /* 고정 사이즈 삭제 */
  gap: 2.4px !important; /* 2px * 1.2 */
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.contact-section .flex.flex-col.gap-8 .logo-group .logo-img {
  max-width: 106.8px !important; /* 89px * 1.2 */
}

/* contact-section 내부의 flex flex-col gap-8 안에 있는 asset9.png 로고 색상을 #333333으로 변경 */
.contact-section .flex.flex-col.gap-8 .logo-group .logo-img[src*="asset9.png"],
.contact-section
  .flex.flex-col.gap-8
  .logo-group
  .logo-img[alt*="그린에이 로고 9"] {
  filter: brightness(0) saturate(0%) invert(20%);
  /* #333333 = rgb(51, 51, 51) - brightness(0)로 검정색 만든 후 invert(20%)로 #333333 색상 적용 */
}

.contact-section .flex.flex-col.gap-5 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-section .w-full.max-w-400px {
  width: 100%;
  max-width: 400px;
}

.contact-section .contact-btn,
.contact-section button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  background: #53c178;
  color: white;
  border: none;
  border-radius: 2rem;
  padding: 1rem 2rem;
  height: 3.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  width: 100%;
}

.contact-section .contact-btn:hover,
.contact-section button:hover {
  background: rgba(83, 193, 120, 0.9);
  transform: scale(1.05);
}

.contact-section .contact-btn:active,
.contact-section button:active {
  transform: scale(0.95);
}

.contact-section h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 860px) {
  .contact-section {
    flex-direction: column;
    gap: 2rem;
    padding: 80px 24px; /* 상하 동일, 좌우 24px 고정 */
    align-items: center !important; /* 860 이하에서도 center 적용 */
  }

  .contact-section .flex.flex-col.gap-8 {
    align-items: center !important; /* 부모 flex container에 가운데 정렬 설정 - !important로 다른 규칙 덮어쓰기 */
    width: 100%; /* 전체 너비 사용 */
  }

  .contact-section .flex.flex-col.gap-8 .logo-group {
    margin: 0 auto !important; /* 가운데 정렬 - !important로 다른 규칙 덮어쓰기 */
  }
}

@media (max-width: 1024px) {
  .contact-section {
    flex-direction: column;
    gap: 2rem;
    padding: 120px 120px; /* 상하 동일 */
  }

  .contact-section .flex.flex-col.gap-8 {
    align-items: center;
  }

  .contact-section .flex.flex-col.gap-8 .logo-group {
    width: auto; /* 고정 사이즈 삭제 */
    gap: 2.4px !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
  }

  .contact-section .flex.flex-col.gap-8 .logo-group .logo-img {
    max-width: 106.8px !important;
  }

  .contact-section .flex.flex-col.gap-5 {
    align-items: center;
    gap: 0.25rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 24px; /* 상하 동일, 좌우 24px 고정 */
  }

  .contact-section h2 {
    font-size: 2.25rem; /* 더 크게 조정 (36px) */
  }

  .contact-section .flex.flex-col.gap-8 .logo-group {
    width: auto; /* 고정 사이즈 삭제 */
    gap: 2.4px !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
  }

  .contact-section .flex.flex-col.gap-8 .logo-group .logo-img {
    max-width: 106.8px !important;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 24px; /* 제일 작은 모바일 상하 60px, 좌우 24px 고정 */
  }

  .contact-section h2 {
    font-size: 1.75rem; /* 480px 이하에서는 28px */
  }
}

/* NHN Text Positioning */
.products .absolute.left-1\/2.top-1\/2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.products .-translate-x-1\/2.-translate-y-1\/2 {
  transform: translate(-50%, -50%);
}

.products .w-max {
  width: max-content;
}

.products .pr-16 {
  padding-right: 16px;
}

/* NHN Products Slider */
.products-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100vw;
  padding: 0;
  height: 526px; /* 기본 높이 */
}

/* 반응형 컨테이너 높이 조정 */
@media (max-width: 860px) {
  .products-slider-container {
    height: auto;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .products-slider-container {
    height: auto;
    min-height: 200px;
  }
}

.products-slider-track {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateX(0);
}

.products-slider-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.products-slider-list li {
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  position: relative;
}

.products-slider-list li.active {
  transform: scale(1);
  z-index: 10;
  opacity: 1;
}

.products-slider-list li:not(.active) {
  transform: scale(0.85);
  opacity: 0.7;
}

/* 첫 번째 카드가 항상 보이도록 보장 */
.products-slider-list li:first-child {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) !important;
  z-index: 10 !important;
  display: block !important;
  min-height: 200px !important;
  height: auto !important;
}

.products-slider-list li:first-child img {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  position: absolute !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* NHN Navigation Styles */
.mt-32 {
  margin-top: 32px;
}

/* 반응형 margin-top */
@media (max-width: 860px) {
  .mt-32 {
    margin-top: 24px;
  }
}

@media (max-width: 480px) {
  .mt-32 {
    margin-top: 16px;
  }
}

.text-t7-l {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
}

/* 반응형 text-t7-l */
@media (max-width: 860px) {
  .text-t7-l {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .text-t7-l {
    font-size: 0.875rem;
  }
}

.text-grayscale-8 {
  color: #999;
}

.text-grayscale-1 {
  color: #212126;
}

.products-nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.products-nav li {
  position: relative;
}

.products-nav li:first-of-type {
  margin-left: 60px;
}

.ml-89 {
  margin-left: 89px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-70 {
  margin-left: 70px;
}

/* 반응형 products-nav 간격 조정 */
@media (max-width: 860px) {
  .products-nav li:first-of-type {
    margin-left: 40px;
  }

  .ml-89 {
    margin-left: 50px;
  }

  .ml-45 {
    margin-left: 30px;
  }

  .ml-70 {
    margin-left: 40px;
  }
}

@media (max-width: 480px) {
  .products-nav {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .products-nav li:first-of-type {
    margin-left: 0;
  }

  .ml-89,
  .ml-45,
  .ml-70 {
    margin-left: 0;
  }
}

.products-nav-btn {
  background: none;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
}

/* 반응형 products-nav-btn */
@media (max-width: 860px) {
  .products-nav-btn {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .products-nav-btn {
    font-size: 0.875rem;
    padding: 8px 12px;
  }
}

.products-nav-btn:hover {
  color: #212126;
}

.products-nav-btn.active {
  color: #212126;
  font-weight: 500;
}

.products-nav-btn.cursor-default {
  cursor: default;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: scale(1.05);
}

.product-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  text-align: center;
}

.product-overlay h4 {
  font-size: 1.5rem;
}

/* Fragrance Section */
.fragrance {
  padding: 5rem 0;
  background: white;
}

.fragrance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fragrance-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.fragrance-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.fragrance-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-tag {
  background: #53c178;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.fragrance-image img {
  width: 100%;
  border-radius: 10px;
}

/* Results Section */
.results {
  padding: 5rem 0;
  background: #f8f9fa;
}

.results-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: white;
  border: 2px solid #ddd;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #53c178;
  color: white;
  border-color: #53c178;
}

.results-content {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.contact-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.contact-form {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 10px;
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #53c178;
}

.submit-btn {
  width: 100%;
  background: #53c178;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: #53c178;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #f6f8fa;
  color: #000000;
  padding: 4rem 120px 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-direction: row !important;
  width: 100%;
  padding: 0 0 48px 0;
  align-items: start;
  flex-wrap: nowrap;
}

.footer-logo {
  padding-right: 12rem;
}

.footer-sections {
  display: flex;
  min-width: 0;
  padding-right: 0;
  flex-wrap: wrap;
  gap: 0;
}

.footer-section {
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 0;
  padding-right: 5rem;
}

.footer-section:first-child {
  padding-bottom: 32px;
}

.footer-section:last-child {
  padding-right: 0;
}

.footer-sections:last-child {
  flex-basis: 100%;
  order: 999;
}

/* 패딩 120px 포함 계산: 실제 콘텐츠 영역 기준 */
/* 1200px 화면 - 240px 패딩 = 960px 콘텐츠 */
/* 1100px 화면 - 240px 패딩 = 860px 콘텐츠 */
/* 1000px 화면 - 240px 패딩 = 760px 콘텐츠 */

@media (min-width: 1400px) {
  .footer-content {
    flex-wrap: nowrap;
  }

  .footer-sections {
    flex-wrap: nowrap;
  }

  .footer-section:first-child {
    padding-bottom: 0;
  }

  .footer-sections:last-child {
    flex-basis: auto;
    order: 0;
  }
}

@media (max-width: 1200px) {
  .footer-logo {
    padding-right: 9rem;
  }
}

@media (max-width: 1199px) and (min-width: 1100px) {
  .footer-logo {
    padding-right: 9rem;
  }

  .footer-section {
    padding-right: 4.5rem;
  }

  .footer-section:last-child {
    padding-right: 0;
  }
}

@media (max-width: 1099px) and (min-width: 1000px) {
  .footer-logo {
    padding-right: 9rem;
  }

  .footer-section {
    padding-right: 4rem;
  }

  .footer-section:last-child {
    padding-right: 0;
  }
}

@media (max-width: 999px) and (min-width: 900px) {
  .footer-logo {
    padding-right: 9rem;
  }

  .footer-section {
    padding-right: 3.5rem;
  }

  .footer-section:last-child {
    padding-right: 0;
  }
}

@media (max-width: 899px) and (min-width: 860px) {
  .footer-logo {
    padding-right: 9rem;
  }

  .footer-section {
    padding-right: 3rem;
  }

  .footer-section:last-child {
    padding-right: 0;
  }
}

.footer-section h3 {
  white-space: nowrap;
}

.footer-section ul li {
  white-space: nowrap;
}

.footer-section p {
  white-space: nowrap;
}

.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo .logo-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: auto;
}

.footer-logo .logo-img {
  height: auto;
  width: auto;
  max-height: 40px;
  opacity: 0.5;
  filter: brightness(0);
  transition: opacity 0.2s ease;
}

.footer-logo a:hover .logo-img {
  opacity: 1;
}

.footer-section h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #737373;
  letter-spacing: 0.02em;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgb(176, 176, 176);
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
}

.footer-section p {
  color: rgb(176, 176, 176);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgb(0 0 0 / 10%);
  padding-top: 2rem;
  max-width: 1200px;
}

.footer-bottom-content {
  margin-bottom: 1.5rem;
}

.footer-bottom-content p {
  color: rgb(176, 176, 176);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-bottom-content p strong {
  color: #737373;
  font-weight: 600;
}

.phone-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

/* Mobile Navigation Sidebar Styles (Tailwind-inspired) */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #f8f9fa;
  background: #ffffff;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: #f8f9fa;
  color: #666;
}

.mobile-nav-content {
  flex: 1;
  padding: 0;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  margin: 0;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-menu li:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: block;
  padding: 18px 24px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f8f9fa;
  transition: none;
}

/* 모바일 하위 메뉴 스타일 */
.mobile-sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  border-top: 1px solid #e5e7eb;
}

.mobile-sub-menu li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-sub-menu li:last-child {
  border-bottom: none;
}

.mobile-sub-menu .mobile-nav-link {
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0.75rem 1.5rem;
  display: block;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-sub-menu .mobile-nav-link:hover {
  color: #53c178;
  background-color: rgba(83, 193, 120, 0.05);
  padding-left: 2rem;
}

/* Mobile Navigation Background Overlay */
.mobile-nav-overlay::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.mobile-nav-overlay.active::before {
  opacity: 1;
  visibility: visible;
}

/* Mobile Navigation Responsive */
@media (max-width: 480px) {
  .mobile-nav-overlay {
    width: 100vw;
  }

  .mobile-nav-header {
    padding: 20px;
  }

  .mobile-nav-link {
    padding: 16px 20px;
    font-size: 15px;
  }

  .mobile-nav-link:hover {
    padding-left: 28px;
  }
}

/* Responsive Design */

@media (max-width: 840px) and (min-width: 480px) {
  .hero-title {
    font-size: 38px;
    line-height: 1.2;
  }

  .maintenance-hero-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .maintenance-hero-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 1020px) {
  .hero-bottom {
    margin-top: clamp(156px, 38vh, 880px);
  }
}

@media (max-width: 860px) {
  .header {
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
  }

  .nav-container {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    min-height: 60px;
  }

  .quote-btn {
    opacity: 0;
    transform: scale(0.8);
    width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    gap: 1rem;
    font-size: 14px;
  }

  .hero {
    min-height: 92vh; /* show a bit of next section */
    padding: 64px 0 20px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-top: 10px;
  }

  /* Adjust background focal point for slides on tablets */
  .hero-slide {
    background-position: center 35%;
  }

  .hero-wrap {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
  }

  .container.hero-inner {
    padding: 0 24px;
    box-sizing: border-box;
    max-width: 100%;
  }

  .hero-bottom {
    box-sizing: border-box;
    max-width: calc(100% - 48px);
  }

  .hero-copy {
    padding: 0;
    margin-top: 10vh;
    margin-bottom: clamp(80px, 5vh, 140px);
  }

  .hero-bottom {
    padding: 0;
    margin: 0;
    left: 24px;
    right: 24px;
    margin-top: clamp(124px, 32vh, 720px);
  }
}

@media (max-width: 780px) {
  .header {
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
  }

  .nav-container {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    min-height: 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .hero {
    min-height: 88vh; /* show more of next section */
    padding: 56px 0 16px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 0.875rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-top: 8px;
  }

  /* Adjust focal point for small screens */
  .hero-slide {
    background-position: center 30%;
  }

  .hero-wrap {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .hero-copy {
    padding: 0;
    margin-top: 8vh;
    margin-bottom: clamp(20px, 5vh, 72px);
  }

  .hero-bottom {
    padding: 0;
    margin: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    left: 24px;
    right: 24px;
    margin-top: 36vh;
    box-sizing: border-box;
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 86vh;
  }
  .hero-title {
    font-size: 29px;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .maintenance-hero-title {
    font-size: 29px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .maintenance-hero-subtitle {
    font-size: 13px;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    margin-top: 6px;
  }

  .hero-slide {
    background-position: center 28%;
  }

  .hero-wrap {
    padding: 0;
    box-sizing: border-box;
    width: 100%;
  }

  .hero-copy {
    margin-bottom: clamp(16px, 4vh, 64px);
  }
  .hero-bottom {
    margin-top: 38vh;
    box-sizing: border-box;
  }
}

@media (max-width: 780px) {
  .about-hero-wrapper {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 2rem;
    padding: 0;
    min-height: auto !important;
  }

  #about .about-hero-wrapper {
    background-image: none !important;
    position: relative;
  }

  #about .about-hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('index/공기 설계.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: -1;
  }

  #about .about-hero-wrapper .about-hero-content {
    position: relative;
    z-index: 1;
    padding: 24px !important;
  }

  .about-hero-wrapper .about-hero-content {
    grid-column: unset !important;
    width: 100% !important;
    padding: 0px !important;
    max-width: 100% !important;
    order: 2 !important;
    min-height: auto !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
    background: transparent !important;
  }


  .about-hero-wrapper.service-item .about-hero-text-section {
    gap: 1.5rem;
  }

  .about-hero-wrapper .about-hero-image-section {
    grid-column: unset !important;
    width: 100% !important;
    max-width: 100% !important;
    order: 1 !important;
    padding: 0 !important;
    flex: 0 0 auto !important;
  }

  .about-hero-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .about-hero-description {
    font-size: 1.125rem;
  }

  .about-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .about-hero-btn-primary,
  .about-hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .fragrance-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer {
    padding: 3rem 24px 1.5rem;
  }

  .footer .container {
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-content {
    display: flex;
    flex-direction: column-reverse !important;
    flex-wrap: nowrap;
    padding: 0 0 32px 0;
  }

  .footer-logo {
    padding-right: 0;
    margin-top: 2rem;
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .footer-sections {
    flex-direction: column;
  }

  .footer-logo .logo-img {
    max-height: 35px;
  }

  .footer-section {
    text-align: left;
  }

  .footer-section h3 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .footer-section ul li {
    margin-bottom: 0.6rem;
  }

  .footer-section ul li a {
    font-size: 0.85rem;
  }

  .footer-section p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    text-align: left;
  }

  .footer-bottom-content p {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .results-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }
  .header {
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
  }

  .nav-container {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    min-height: 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .container.hero-inner {
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 100%;
  }

  .hero-title {
    font-size: 28px; /* increased for mobile */
    line-height: 1.35;
    margin-bottom: 0.625rem;
  }

  .maintenance-hero-title {
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .maintenance-hero-subtitle {
    font-size: 12px;
  }

  .hero-subtitle {
    font-size: 0.85rem; /* increased for mobile */
    margin-top: 6px;
  }

  .hero-slide {
    background-position: center 25%;
  }

  .hero-bottom {
    left: 20px;
    right: 20px;
    box-sizing: border-box;
    max-width: calc(100% - 40px);
    margin-top: 34vh;
  }

  .hero-wrap {
    padding: 0;
    box-sizing: border-box;
    width: 100%;
  }

  .hero-copy {
    margin-bottom: clamp(12px, 4vh, 56px);
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-hero-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .about-hero-description {
    font-size: 1rem;
  }

  .fragrance-text h2,
  .contact-text h2 {
    font-size: 1.8rem;
  }

  .service-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Tablet adjustments for hero-bottom (<= 860px) */
@media (max-width: 860px) {
  .hero-bottom .hero-idx.current {
    font-size: 24px;
  }
  .hero-bottom .hero-idx.total {
    font-size: 16px;
  }
  .hero-bottom .hero-arrows {
    gap: 10px;
  }
  .hero-bottom .hero-arrows .arrow {
    width: 32px;
    height: 32px;
  }
  .hero-bottom .hero-arrows .arrow .arrow-svg {
    width: 24px;
    height: 24px;
  }
}

/* Small mobile adjustments for hero-bottom (<= 380px) */
@media (max-width: 380px) {
  .hero {
    min-height: 78vh;
  }
  .hero-bottom {
    margin-top: 32vh; /* consistent across all slides */
  }
  .hero-bottom .hero-idx.current {
    font-size: 20px;
  }
  .hero-bottom .hero-idx.total {
    font-size: 14px;
  }
  .hero-bottom .hero-arrows {
    gap: 8px;
  }
  .hero-bottom .hero-arrows .arrow {
    width: 28px;
    height: 28px;
  }

  .maintenance-hero-nav-wrapper {
    padding: 6px 10px;
    bottom: 30px;
    left: 20px;
    width: auto;
    max-width: calc(100% - 40px);
    gap: 0.3rem;
    border-radius: 30px;
  }

  .maintenance-hero-btn {
    padding: 6px 12px;
    font-size: 11px;
    width: 85px;
  }
  .hero-bottom .hero-arrows .arrow .arrow-svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 280px) {
  .hero {
    min-height: 76vh;
  }
  .hero-bottom {
    margin-top: 32vh; /* consistent across all slides */
  }
}

/* Hero copy absolute positioning offset (double spacing)
   If .hero-copy is positioned absolute, this increases the bottom gap */
.hero-copy {
  bottom: clamp(420px, 5vh, 80px);
}

/* Map Page Styles */
.location-section {
  padding: 80px 120px;
  background: #f8f9fa;
}

.location-content {
  max-width: 1200px;
  margin: 0 auto;
}

.location-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.location-info h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  margin-top: 2rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#map {
  width: 100%;
  border-radius: 12px;
  padding-bottom: 192px;
}

@media (max-width: 860px) {
  #map {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  #map {
    padding-bottom: 40px;
  }
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #f8f9fa;
  color: #666;
  text-align: center;
}

.map-placeholder i {
  font-size: 3rem;
  color: #53c178;
  margin-bottom: 1rem;
}

.map-placeholder p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.company-details {
  padding: 80px 120px;
  background: white;
}

.details-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Company Info Details - 가로 정렬 */
.company-info-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* 로고 블록 스타일 */
.company-logo-block {
  display: flex;
  align-items: flex-end;
  position: relative;
  font-size: 48px;
  font-weight: bold;
  color: #000080;
  font-style: italic;
}

.logo-greena-text {
  position: relative;
  z-index: 1;
}

.logo-greena-dot {
  position: absolute;
  top: -10px;
  left: 15px;
  width: 15px;
  height: 15px;
  background-color: #ff0000;
  transform: rotate(45deg);
  z-index: 2;
}

.logo-greena-korean-oval {
  background-color: #add8e6;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: normal;
  margin-left: 10px;
  white-space: nowrap;
  transform: translateY(-5px);
}

/* 연락처 블록 스타일 */
.company-contact-block {
  text-align: left;
  color: #333333;
  font-size: 16px;
}

.company-contact-block h3.company-name-korean {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 10px;
}

.company-contact-block p {
  margin-bottom: 5px;
}

.company-contact-block .label {
  font-weight: bold;
  margin-right: 5px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-row {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

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

.info-row .label {
  font-weight: 600;
  color: #333;
  min-width: 150px;
  margin-right: 1rem;
}

.info-row .value {
  color: #666;
  flex: 1;
}

.customer-center {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.customer-center h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: #53c178;
  margin-bottom: 1.5rem;
  text-align: center;
}

.business-hours p {
  margin-bottom: 0.5rem;
  color: #666;
}

.business-hours strong {
  color: #333;
}

/* Map Page Responsive */
@media (max-width: 860px) {
  .location-section {
    padding: 80px 20px;
  }

  .company-details {
    padding: 80px 20px;
  }

  .footer {
    padding: 2rem 20px;
  }

  .details-content {
    gap: 2rem;
  }

  .company-info-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .company-logo-block {
    margin-bottom: 20px;
    font-size: 36px;
  }
}

/* 서브 네비게이션 스타일 - Tailwind CSS 스타일 적용 */
.sub-nav {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 24px 0;
  border-bottom: 1px solid #e2e8f0;
}

.sub-nav-container {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid #e2e8f0;
}

.sub-nav-item {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sub-nav-item:hover {
  color: #53c178;
  background: rgba(83, 193, 120, 0.08);
  transform: translateY(-1px);
}

.sub-nav-item.active {
  background: linear-gradient(135deg, #53c178 0%, #4aad6a 100%);
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 14px 0 rgba(83, 193, 120, 0.39);
}

.sub-nav-item.active:hover {
  background: linear-gradient(135deg, #4aad6a 0%, #3d8b5a 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px 0 rgba(83, 193, 120, 0.5);
}

.content-section {
  padding: 60px 0 192px 0;
  animation: fadeInUp 0.6s ease-out;
}

#company-intro.content-section {
  padding: 0;
}

#certification.content-section {
  padding-top: 0;
}

#air-purifier-section.content-section {
  padding: 0;
}

#maintenance-section.content-section {
  padding: 0;
}

#rental-section.content-section {
  padding: 0;
}

#maintenance-section {
  padding: 0;
}

#rental-section {
  padding: 0;
}

#fragrance-section.content-section {
  padding: 0;
}

.content-section.hidden {
  display: none;
}

#rental-section.content-section.visible,
#rental-section.visible,
#rental-section.content-section:not(.hidden) {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Rental Section Title - only visible in rental-section */
.rental-section-title {
  margin-bottom: 36px;
}

.rental-intro-content {
  display: none;
  padding: 60px 120px 0 120px !important;
}

.rental-intro-content .intro-text {
  margin: 0 auto 0 auto;
}

.rental-intro-content .intro-text h4 {
  font-size: 1rem;
  color: #7b7c7d;
  font-weight: 500;
  margin: 2rem 0 32px 0;
}

@media (max-width: 860px) {
  .rental-intro-content {
    padding: 60px 24px 0 24px !important;
  }

  .rental-section-title {
    padding: 0 24px;
  }
}

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

/* 맵 컨텐츠 스타일 */
.map-content {
  text-align: center;
}

.map-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #53c178;
  margin-bottom: 1rem;
}

.map-content h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 3rem;
}

.map-container {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.location-info {
  background: #f6f8fa;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  margin-bottom: 192px;
  border: 1px solid #e2e8f0;
}

.location-info h4 {
  color: #53c178;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-info p {
  color: #64748b;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* list_end 클래스 bottom margin 복구 */
#map .list_end,
#certification .list_end {
  margin-bottom: 32px;
}

/* 회사소개 페이지 스타일 */
.company-hero {
  background: linear-gradient(135deg, #53c178 0%, #4aad6a 100%);
  color: white;
  text-align: center;
  padding: 120px 0;
}

.company-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.company-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.company-intro {
  padding: 80px 0;
  background: #f8f9fa;
}

.intro-content {
  margin: 0;
  padding: 60px 0 0 0;
  animation: fadeInUp 0.6s ease-out;
}

.intro-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #53c178;
  margin-bottom: 1rem;
  text-align: center;
}

.intro-content h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
}

.intro-text {
  margin: 0 auto 32px auto;
  line-height: 1.8;
}

.intro-image {
  margin-top: 12rem;
  text-align: center;
}

.intro-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.intro-text h4 {
  font-size: 1rem;
  color: #7b7c7d;
  font-weight: 500;
  margin: 2rem 0 0 0;
}

.intro-text h5 {
  display: block;
  font-size: 2.5rem;
  margin-top: 16px;
  margin-block-end: 0.83em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6rem;
  line-height: 1.4;
}

#map .intro-text h5 {
  margin-bottom: 0;
}

#certification .intro-text h5 {
  margin-bottom: 0;
}

#maintenance-section .intro-text h5 {
  margin-bottom: 0;
}

#air-purifier-section .intro-text h5,
#fragrance-section .intro-text h5 {
  margin-bottom: 3rem;
}

.intro-text p {
  font-size: 1.1rem;
  color: #666;
}

/* company.html의 intro-text p 태그에만 bottom margin 적용 */
#company-intro .intro-text p {
  margin-bottom: 48px;
}

/* Maintenance Intro Text Section */
.maintenance-intro-text-section {
  padding: 40px 0 120px 0;
  background: #ffffff;
  text-align: center;
}

.maintenance-intro-text-content {
  margin: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* maintenance-intro-text-content 내부 요소들의 초기 애니메이션 상태 */
.maintenance-intro-text-content:not(.animate) .maintenance-intro-text-line1,
.maintenance-intro-text-content:not(.animate) .maintenance-intro-text-title,
.maintenance-intro-text-content:not(.animate) .maintenance-intro-text-line2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 순차적 애니메이션 delay */
.maintenance-intro-text-content .maintenance-intro-text-line1 {
  transition-delay: 0s;
}

.maintenance-intro-text-content .maintenance-intro-text-title {
  transition-delay: 0.05s;
}

.maintenance-intro-text-content .maintenance-intro-text-line2 {
  transition-delay: 0.1s;
}

/* 애니메이션 활성화 클래스 */
.maintenance-intro-text-content.animate .maintenance-intro-text-line1,
.maintenance-intro-text-content.animate .maintenance-intro-text-title,
.maintenance-intro-text-content.animate .maintenance-intro-text-line2 {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.maintenance-intro-text-line1 {
  font-size: 1.2rem;
  color: #4aad6a;
  font-weight: bold;
  margin: 0;
  line-height: 1.6;
}

.maintenance-intro-text-title {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.maintenance-intro-text-line2 {
  font-size: 1.3rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.maintenance-intro-text-line3 {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* 인증서 페이지 스타일 */
.certificate-hero {
  background: linear-gradient(135deg, #53c178 0%, #4aad6a 100%);
  color: white;
  text-align: center;
  padding: 120px 0;
}

.certificate-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.certificate-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.certificate-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.certificate-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #53c178;
  margin-bottom: 1rem;
  text-align: center;
}

.certificate-content h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 3rem;
  text-align: center;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.certificate-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 0;
}

.certificate-item:hover {
  transform: translateY(-5px);
}

.certificate-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate-placeholder {
  width: 100%;
  height: 100%;
  background: #53c178;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.certificate-info {
  padding: 1.5rem;
}

.certificate-info h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.certificate-info p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cert-date {
  background: #53c178;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Container Gutter M Section (한화 스타일 참고) */
.container.gutter-m {
  padding: 192px 0;
  margin: 0 !important;
  border-top: 1px solid #f6f8fa;
}

.container.gutter-m .left-right-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.container.gutter-m .left {
  flex: 0 0 40%;
  max-width: 40%;
}

.container.gutter-m .right-value-wrapper {
  display: flex;
  flex-direction: column;
  flex: 0 0 55%;
  max-width: 55%;
  gap: 6rem;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container.gutter-m .right {
  flex: 0 0 auto;
  text-align: left;
}

.container.gutter-m .value-box-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.container.gutter-m .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: left;
}

.container.gutter-m .section-description {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  letter-spacing: -0.01em;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Value Box Section (한화 스타일 참고) */
.value-box {
  width: 100%;
  flex: 0 0 auto;
  padding: 40px 32px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-box.active {
  background: #ffffff;
  border: 1px solid #e9ecef;
}

.sub-title-1.box-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.sub-title-1.box-title h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 1rem 0 0;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.sub-title-1.box-title p {
  color: #b0b0b0;
}

.sub-title-5 {
  margin-top: 16px;
}

.sub-title-5 p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  line-height: 1.8;
  letter-spacing: -0.01em;
  margin: 0;
}

@media (max-width: 860px) {
  .value-box {
    padding: 30px 32px;
  }

  .sub-title-1.box-title h3 {
    font-size: 1.2rem;
  }

  .sub-title-5 p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .value-box {
    padding: 24px 32px;
  }

  .value-box.active {
    padding: 16px 20px;
  }

  .sub-title-1.box-title h3 {
    font-size: 1rem;
  }

  .sub-title-5 p {
    font-size: 0.85rem;
  }
}

@media (max-width: 860px) {
  .container.gutter-m {
    padding: 60px 0;
  }

  .container.gutter-m .left-right-content {
    flex-direction: column;
  }

  .container.gutter-m .left,
  .container.gutter-m .right-value-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .container.gutter-m .right-value-wrapper {
    gap: 3rem;
  }

  .container.gutter-m .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .container.gutter-m .section-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .container.gutter-m {
    padding: 40px 0;
  }

  .container.gutter-m .right-value-wrapper {
    gap: 3rem;
  }

  .container.gutter-m .section-title {
    font-size: 1.75rem;
  }

  .container.gutter-m .section-description {
    font-size: 1rem;
  }
}

/* 회사소개/인증서 페이지 반응형 디자인 */
@media (max-width: 860px) {
  .company-hero h1,
  .certificate-hero h1 {
    font-size: 2rem;
  }

  .company-hero p,
  .certificate-hero p {
    font-size: 1rem;
  }

  .intro-content h2,
  .certificate-content h2 {
    font-size: 2rem;
  }

  .certificate-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .company-intro,
  .certificate-section {
    padding: 60px 0;
  }

  .sub-nav-container {
    flex-direction: column;
    gap: 4px;
    padding: 12px;
  }

  .sub-nav-item {
    text-align: center;
    padding: 10px 16px;
  }
}

.logo-greena-dot {
  top: -5px;
  left: 10px;
  width: 12px;
  height: 12px;
}

.logo-greena-korean-oval {
  font-size: 16px;
  padding: 3px 10px;
}

.company-contact-block {
  text-align: left;
  font-size: 14px;
}

.company-contact-block h3.company-name-korean {
  font-size: 20px;
}

/* Floating Action Button */
.float-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}

.float-main-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #26c86e 0%, #1ea85a 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 999;
  padding: 0;
  overflow: hidden;
  pointer-events: auto;
}

.float-main-btn:hover {
  transform: scale(1.1);
}

.float-main-btn.active {
  width: 50px;
  height: 50px;
  background: transparent;
  z-index: 998;
}

.float-btn-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.float-btn-img.float-btn-open {
  width: 52px;
  height: 52px;
}

.float-btn-close {
  opacity: 0;
  visibility: hidden;
}

.float-main-btn.active .float-btn-open {
  opacity: 0;
  visibility: hidden;
}

.float-main-btn.active .float-btn-close {
  opacity: 1;
  visibility: visible;
}

.float-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  position: relative;
  z-index: 1000;
  height: 0;
  overflow: hidden;
  margin: 0;
}

.float-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  flex-direction: column !important;
  height: auto;
  overflow: visible;
  margin-bottom: 16px;
}

.float-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(-20px);
}

.float-item:hover {
  transform: scale(1.15) translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
  color: #26c86e;
}

.float-item:nth-child(1) {
  transition-delay: 0.05s;
}

.float-item:nth-child(2) {
  transition-delay: 0.1s;
}

.float-item:nth-child(3) {
  transition-delay: 0.15s;
}

.float-item:nth-child(4) {
  transition-delay: 0.2s;
}

.float-menu.active .float-item {
  opacity: 1;
  transform: translateY(0);
}

/* Channel.io Style Label Button */
.float-label-button {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 12px;
  margin-top: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  position: relative;
  z-index: 1002;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 플로팅 메뉴가 열렸을 때 라벨 버튼 숨김 */
.float-container:has(.float-main-btn.active) .float-label-button {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  margin-bottom: 0;
}

.float-label-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #d0d0d0;
}

.float-label-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}

.float-label-title {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
  white-space: nowrap;
}

.float-label-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #3a3a3a;
  line-height: 1.4;
}

.float-label-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #3a3a3a;
}

.float-label-status-text {
  font-weight: 400;
  color: #3a3a3a;
}

.float-tooltip {
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 500;
}

.float-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.85);
}

.float-item:hover .float-tooltip,
.float-item:focus .float-tooltip {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0);
}

/* 반응형 */
@media (max-width: 860px) {
  .float-container {
    bottom: 20px;
    right: 20px;
  }

  .float-label-button {
    min-width: 180px;
    padding: 10px 14px;
    margin-bottom: 10px;
  }

  .float-label-title {
    font-size: 12px;
  }

  .float-label-status {
    font-size: 11px;
  }

  .float-label-icon {
    width: 14px;
    height: 14px;
  }

  .float-main-btn {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .float-item {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .float-tooltip {
    font-size: 12px;
    padding: 6px 10px;
    right: 55px;
  }
}

@media (max-width: 480px) {
  .float-container {
    bottom: 15px;
    right: 15px;
  }

  .float-label-button {
    min-width: 160px;
    padding: 8px 12px;
    margin-bottom: 8px;
  }

  .float-label-title {
    font-size: 11px;
  }

  .float-label-status {
    font-size: 10px;
    gap: 4px;
  }

  .float-label-icon {
    width: 12px;
    height: 12px;
  }

  .float-main-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .float-item {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .float-tooltip {
    display: none; /* 모바일에서는 툴팁 숨김 */
  }
}

/* ============================================
   Maintenance Page Styles
   ============================================ */

/* Maintenance Hero Section */
.maintenance-hero {
  position: relative;
  min-height: 500px;
  color: white;
  padding: 180px 0 120px;
  overflow: hidden;
  margin-top: 0;
}

.maintenance-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../company/back.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.maintenance-hero-bg.animate {
  transform: scale(1);
}

.maintenance-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  width: 100%;
}

.maintenance-hero-badge {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

.maintenance-hero-title {
  margin: 0 0 12px 0;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
  color: white;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.maintenance-hero-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Maintenance Hero Navigation Buttons - navTop_nav_sub_bar_wrap__yqxmE 스타일 적용 */

.maintenance-hero-nav-wrapper {
  padding: 12px 18px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: hsla(0, 0%, 100%, 0.4);
  position: absolute;
  bottom: 80px;
  left: 120px;
  border-radius: 50px;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  pointer-events: auto;
}

.maintenance-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  width: 100px;
  background: transparent;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  backdrop-filter: blur(10px);
  pointer-events: auto;
  position: relative;
  z-index: 4;
  cursor: pointer;
  font-family: inherit;
}

.maintenance-hero-btn.active {
  background: rgb(41, 44, 52);
  border: none;
  font-weight: 600;
  transform: scale(1.1);
}

.maintenance-hero-btn:hover:not(.active) {
  background: transparent;
  border: none;
  transform: translateY(-1px);
}

.maintenance-hero-btn.active:hover {
  background: rgb(41, 44, 52);
  border: none;
  transform: scale(1.1);
}

/* Maintenance Intro Section */
.maintenance-intro {
  padding: 80px 0;
  background: #f8f9fa;
}

.maintenance-intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.maintenance-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.maintenance-intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.maintenance-intro-content strong {
  color: #26c86e;
  font-weight: 600;
}

/* Maintenance Services Section */
.maintenance-services {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

.maintenance-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.maintenance-service-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maintenance-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.maintenance-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #26c86e 0%, #1ea85a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.maintenance-service-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.maintenance-service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Maintenance Features Section */
.maintenance-features {
  padding: 80px 0;
  background: #f8f9fa;
}

.maintenance-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.maintenance-feature-item {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.maintenance-feature-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #26c86e;
  margin-bottom: 15px;
}

.maintenance-feature-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

/* Maintenance Details Section */
.maintenance-details-section {
  padding: 80px 120px;
  background: #f8f9fa;
}

/* 렌탈 섹션이 활성화되었을 때 maintenance-details-section과 maintenance-cycle-table-section 숨기기 */
#rental-section.visible ~ .maintenance-details-section,
#rental-section.visible ~ * .maintenance-details-section,
body:has(#rental-section.visible) .maintenance-details-section {
  display: none;
}

#rental-section.visible ~ .maintenance-cycle-table-section,
#rental-section.visible ~ * .maintenance-cycle-table-section,
body:has(#rental-section.visible) .maintenance-cycle-table-section {
  display: none;
}

/* Content Layout (NHN Style) */
#contentLayout {
  padding: 0 120px;
}

#contentLayout .flex.flex-row {
  gap: 62px;
  align-items: flex-start;
}

#contentLayoutRental .flex.flex-row {
  gap: 3rem;
  align-items: flex-start;
}

/* Side Tab Layout (NHN Style) */
#sideTabLayout {
  flex-shrink: 0;
  width: 240px;
}

#sideTabLayoutRental {
  flex-shrink: 0;
  width: 240px;
}

.maintenance-tab-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.maintenance-tab-item {
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 300px;
  text-align: center;
  color: #3a3a3a;
}

.maintenance-tab-item:hover {
  background: #f9fafb;
  color: #000000;
  font-weight: bold;
}

.maintenance-tab-item.active {
  background: #e5e7eb;
  color: #212126;
  font-weight: 600;
}

.maintenance-tab-item span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
  color: inherit;
}

/* Content Area */
.maintenance-content-area {
  flex: 1;
  min-width: 0;
}

.maintenance-detail-item {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: none;
}

.maintenance-detail-item.active {
  display: block;
  animation: fadeInUp 0.4s ease-out;
}

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

.maintenance-detail-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  padding: 0;
}

.maintenance-detail-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 24px;
}

.maintenance-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.maintenance-detail-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 20px;
  padding: 16px 24px;
  background-color: #f8f9fa;
  border-radius: 8px;
  position: relative;
}

.maintenance-detail-list li:last-child {
  margin-bottom: 0;
}

.detail-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #53c178;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.detail-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  flex-shrink: 0;
}

.detail-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.detail-items > div {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
}

@media (max-width: 860px) {
  .maintenance-details-section {
    padding: 60px 24px;
  }

  #contentLayout {
    padding: 0 24px;
  }

  #contentLayout .flex.flex-row {
    flex-direction: column;
    gap: 24px;
  }

  #contentLayoutRental .flex.flex-row {
    flex-direction: column;
    gap: 24px;
  }

  #sideTabLayout {
    width: 100%;
    max-width: 100%;
  }

  #sideTabLayoutRental {
    width: 100%;
    max-width: 100%;
  }

  .maintenance-tab-menu {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .maintenance-tab-menu::-webkit-scrollbar {
    display: none;
  }

  .maintenance-tab-item {
    flex-shrink: 0;
    white-space: nowrap;
    border-radius: 300px;
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .maintenance-tab-item span {
    font-size: 0.85rem;
  }

  .maintenance-content-area {
    width: 100%;
  }

  .maintenance-detail-item {
    padding: 30px 24px;
  }

  .maintenance-detail-title {
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
  }

  .maintenance-detail-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .maintenance-detail-list li {
    font-size: 0.95rem;
    gap: 12px;
  }

  .check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .maintenance-details-section {
    padding: 40px 24px;
  }

  #contentLayoutRental .flex.flex-row {
    flex-direction: column;
    gap: 24px;
  }

  .maintenance-detail-item {
    padding: 24px 20px;
    margin-bottom: 20px;
  }

  .maintenance-detail-title {
    font-size: 1.25rem;
    margin: 0;
    padding: 0;
  }

  .maintenance-detail-description {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .maintenance-detail-list li {
    font-size: 0.9rem;
    gap: 10px;
  }

  .check-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    font-size: 11px;
  }

  .detail-header {
    gap: 10px;
  }

  .detail-items {
    gap: 6px;
  }
}

/* Maintenance Cycle Table Section */
.maintenance-cycle-table-section {
  padding: 0;
  background: white;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.maintenance-cycle-table-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.maintenance-cycle-table-section .container {
  padding: 0 120px;
}

.maintenance-cycle-table-section .section-title {
  margin-top: 120px;
}

.table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
}

.maintenance-cycle-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.maintenance-cycle-table thead {
  background: #53c178;
  color: white;
}

.maintenance-cycle-table th {
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.maintenance-cycle-table tbody tr {
  transition: background-color 0.2s ease;
}

.maintenance-cycle-table tbody tr:hover {
  background-color: #f8f9fa;
}

.maintenance-cycle-table tbody tr.row-group:hover {
  background-color: #f0fdf4;
}

.maintenance-cycle-table td {
  padding: 16px;
  text-align: center;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
  color: #333;
  vertical-align: middle;
}

.maintenance-cycle-table .cell-category {
  background: #fcfcfc;
  font-weight: 600;
  color: #1ea85a;
  text-align: center;
  vertical-align: middle;
}

.maintenance-cycle-table .cell-task {
  text-align: left;
  padding-left: 24px;
  font-weight: 500;
  color: #1f2937;
}

.maintenance-cycle-table .cell-school,
.maintenance-cycle-table .cell-government,
.maintenance-cycle-table .cell-enterprise {
  color: #3a3a3a;
}

/* 컬럼 너비 조정 */
.maintenance-cycle-table .col-category {
  width: 15%;
}

.maintenance-cycle-table .col-task {
  width: 25%;
}

.maintenance-cycle-table .col-school,
.maintenance-cycle-table .col-government,
.maintenance-cycle-table .col-enterprise {
  width: 20%;
}

/* 반응형 스타일 */
@media (max-width: 860px) {
  .maintenance-cycle-table-section .container {
    padding: 60px 24px;
  }

  .maintenance-cycle-table-section .section-title {
    margin-top: 0;
  }

  .table-wrapper {
    margin: 0 -24px;
    padding: 0 24px;
  }

  .maintenance-cycle-table {
    font-size: 0.85rem;
  }

  .maintenance-cycle-table th {
    padding: 14px 10px;
    font-size: 0.9rem;
  }

  .maintenance-cycle-table td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }

  .maintenance-cycle-table .cell-task {
    padding-left: 12px;
  }
}

@media (max-width: 480px) {
  .maintenance-cycle-table-section {
    padding: 40px 0;
  }

  .maintenance-cycle-table {
    font-size: 0.75rem;
  }

  .maintenance-cycle-table th {
    padding: 10px 6px;
    font-size: 0.8rem;
  }

  .maintenance-cycle-table td {
    padding: 10px 6px;
    font-size: 0.75rem;
  }

  .maintenance-cycle-table .cell-task {
    padding-left: 8px;
  }
}

/* Maintenance Clients Section */
.maintenance-clients {
  padding: 80px 0;
  background: white;
}

.maintenance-clients-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.client-tab-btn {
  padding: 12px 30px;
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.client-tab-btn:hover {
  background: #e9ecef;
  border-color: #26c86e;
  color: #26c86e;
}

.client-tab-btn.active {
  background: #26c86e;
  border-color: #26c86e;
  color: white;
}

.maintenance-clients-content {
  max-width: 1200px;
  margin: 0 auto;
}

.client-tab-content {
  display: none;
}

.client-tab-content.active {
  display: block;
}

.client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.client-item {
  padding: 12px 24px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 0.95rem;
  color: #333;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.client-item:hover {
  background: #26c86e;
  color: white;
  border-color: #26c86e;
  transform: translateY(-2px);
}

/* Contract Process Section */
.contract-process {
  padding: 80px 0;
  background: #f8f9fa;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #26c86e;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Contact Section for Maintenance Page */
.contact-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

/* Bento Grid Section */
.bento-grid-section {
  /* padding: 100px 0; 삭제 - rental-section, maintenance-section에서 제거 */
  background: #f8f9fa;
}

/* Bento Grid Section 전체화면 슬라이드 (dynamic-content 밖으로 이동) */
.bento-grid-section.framer-1t3518c {
  /* 좌우 padding 완전 제거하여 전체화면 사용 */
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  position: relative;
}

/* GCOO Style Classes */
.framer-1t3518c {
  position: relative;
  width: 100%;
  overflow: hidden;
  will-change: transform;
}

.framer-1puff5l-container {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* Bento Grid Section 내부의 container는 슬라이드 트랙을 위한 패딩만 제공 */
.bento-grid-section.framer-1t3518c > .container {
  padding: 0;
  max-width: none;
  width: 100%;
  margin: 0;
}

/* slide-wrapper도 좌우 padding 없이 */
.bento-grid-section.framer-1t3518c .slide-wrapper {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

.hidden-pc6fso,
.hidden-1yspi3h {
  /* Utility classes for responsive behavior */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Slide Wrapper (GCOO Style) */
.slide-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 500px;
  padding: 80px 0;
}

/* rental-section: top padding 삭제 */
#rental-section .slide-wrapper {
  padding-top: 0;
}

/* maintenance-section: bottom padding 삭제 */
#maintenance-section .slide-wrapper {
  padding-bottom: 0;
}

.slide-track {
  display: flex;
  width: auto;
  min-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  gap: 24px;
  position: relative;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slide-item {
  flex: 0 0 calc(25% - 18px);
  min-width: calc(25% - 18px);
  flex-shrink: 0;
  min-height: 400px;
  height: auto;
}

/* 슬라이드 내부 bento-card-small padding/margin 제거 */
#maintenance-section .slide-item .bento-card.bento-card-small,
#rental-section .slide-item .bento-card.bento-card-small {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  background-size: 80% auto !important;
  background-repeat: no-repeat !important;
  background-position: bottom right !important;
  display: flex;
  flex-direction: column;
}

/* ::after 요소 제거 - maintenance.html에는 없음 */

#maintenance-section .slide-item .bento-card-content,
#rental-section .slide-item .bento-card-content {
  padding: 40px;
  margin: 0;
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* index.html에서만 bento-card-content 크기 더 작게 */
#maintenance-section .slide-item .bento-card-content,
#rental-section .slide-item .bento-card-content {
  padding: 28px !important;
}

/* index.html에서만 slide-item 크기 축소 */
#maintenance-section .slide-item,
#rental-section .slide-item {
  flex: 0 0 calc(22% - 18px) !important;
  min-width: calc(22% - 18px) !important;
}

/* index.html에서만 bento-card-subtitle 폰트 크기 축소 */
#maintenance-section .slide-item .bento-card-subtitle,
#rental-section .slide-item .bento-card-subtitle {
  font-size: 20px !important;
}

/* index.html에서만 bento-card-description 폰트 크기 축소 */
#maintenance-section .slide-item .bento-card-description,
#rental-section .slide-item .bento-card-description {
  font-size: 13px !important;
}

/* bento-card-icon 스타일 제거 - maintenance.html에는 일반 .bento-card-icon 스타일이 적용됨 */

.slide-item .bento-card {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* GCOO Style Bento Card Enhancements */
.framer-1puff5l-container .bento-card {
  position: relative;
  overflow: visible;
  will-change: transform;
}

/* bento-card-small 스크롤 문제 해결 */
.bento-card-small {
  overflow: visible;
}

.bento-card-content {
  overflow: visible;
}

.framer-1puff5l-container .bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(83, 193, 120, 0.05) 0%,
    rgba(83, 193, 120, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.framer-1puff5l-container .bento-card:hover::before {
  opacity: 1;
}

/* index.html의 slide-track 내부 bento-card hover 비활성화 */
#maintenance-section .framer-1puff5l-container .bento-card:hover::before,
#rental-section .framer-1puff5l-container .bento-card:hover::before {
  opacity: 0 !important;
}

.bento-grid-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* index.html의 slide-track 내부 bento-card hover 비활성화 */
#maintenance-section .slide-item .bento-card:hover,
#rental-section .slide-item .bento-card:hover {
  transform: none !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
}

.bento-card-large {
  grid-column: span 2;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
}

.bento-card-small {
  background: white;
}

.bento-card-title-only {
  grid-column: span 2;
  background: linear-gradient(135deg, #26c86e 0%, #1ea85a 100%);
  text-align: center;
  padding: 30px;
  border: none;
}

.bento-card-title-only:hover {
  transform: none;
}

.bento-service-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.bento-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bento-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.3;
}

.bento-card-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 16px;
}

.bento-card-text:last-child {
  margin-bottom: 0;
}

.bento-card-icon {
  width: 64px;
  height: 64px;
  background: #53c178;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

#maintenance-section .slide-item .bento-card-subtitle,
#rental-section .slide-item .bento-card-subtitle {
  font-size: 24px !important;
  font-weight: 600;
  /* color 제거 - maintenance.html에는 인라인 색상이 없음 */
  margin-bottom: 16px;
  line-height: 1.3;
  word-wrap: break-word;
  flex-shrink: 0;
}

#maintenance-section .slide-item .bento-card-description,
#rental-section .slide-item .bento-card-description {
  font-size: 14px !important;
  line-height: 1.7;
  color: #3a3a3a !important;
  margin: 0;
  padding-top: 8px !important;
  word-wrap: break-word;
  flex: 1;
  min-height: 0;
}

/* Maintenance Page Responsive */
@media (max-width: 1024px) {
  .slide-item {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }

  #maintenance-section .slide-item .bento-card-content,
  #rental-section .slide-item .bento-card-content {
    padding: 24px !important;
    height: 100% !important;
  }

  #maintenance-section .slide-item .bento-card-subtitle,
  #rental-section .slide-item .bento-card-subtitle {
    font-size: 22px !important;
  }

  #maintenance-section .slide-item .bento-card-description,
  #rental-section .slide-item .bento-card-description {
    font-size: 13px !important;
  }
}

@media (max-width: 860px) {
  /* index.html에서 860px 이하일 때 렌탈 섹션 비노출 */
  #rental-section {
    display: none !important;
  }

  .content-section {
    padding-bottom: 40px;
  }

  .certificate-grid {
    flex-direction: column;
  }

  .maintenance-hero {
    min-height: 400px;
    padding: 140px 0 80px;
  }

  .maintenance-hero-content {
    padding: 0;
  }

  .maintenance-hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .maintenance-hero-subtitle {
    font-size: 14px;
    margin-top: 0.25rem;
  }

  .maintenance-hero-badge {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .maintenance-hero-nav-wrapper {
    padding: 10px 16px;
    bottom: 60px;
    gap: 0.5rem;
    left: 24px;
    width: auto;
    max-width: calc(100% - 48px);
  }

  .maintenance-hero-btn {
    padding: 8px 16px;
    font-size: 13px;
    width: 100px;
  }

  .maintenance-intro-title,
  .section-title,
  .intro-text h5 {
    font-size: 2rem;
  }

  .intro-image {
    margin-top: 6rem;
  }

  .maintenance-services-grid,
  .maintenance-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bento-grid-section {
    padding: 60px 0;
  }

  /* Bento Grid Section 전체화면 슬라이드 */
  .bento-grid-section.framer-1t3518c {
    /* 좌우 padding 완전 제거 */
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .bento-grid-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .maintenance-intro-text-section {
    padding: 40px 0 80px 0;
  }

  .maintenance-intro-text-content {
    margin: 0 24px;
  }

  .maintenance-intro-text-title {
    font-size: 2.25rem;
  }

  .maintenance-intro-text-line1,
  .maintenance-intro-text-line2,
  .maintenance-intro-text-line3 {
    font-size: 1rem;
  }

  .maintenance-intro-text-line2 {
    font-size: 1.15rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .framer-1puff5l-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .slide-item {
    flex: 0 0 calc(100% - 20px);
    margin-bottom: 0 !important;
    min-height: 0 !important;
  }

  .slide-wrapper {
    min-height: 400px;
    padding: 60px 0;
  }

  /* rental-section: top padding 삭제 */
  #rental-section .slide-wrapper {
    padding-top: 0;
  }

  /* maintenance-section: bottom padding 삭제 */
  #maintenance-section .slide-wrapper {
    padding-bottom: 0;
  }

  .slide-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  #maintenance-section .slide-item,
  #rental-section .slide-item {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-bottom: 0 !important;
    min-height: 0 !important;
  }

  #maintenance-section .slide-item .bento-card.bento-card-small,
  #rental-section .slide-item .bento-card.bento-card-small {
    border-radius: 12px;
    overflow: hidden;
    padding: 0 0 48px 0 !important;
    height: 100% !important;
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  #maintenance-section .slide-item .bento-card-content,
  #rental-section .slide-item .bento-card-content {
    padding: 24px !important;
    padding-bottom: 48px !important;
    height: 100% !important;
  }

  #maintenance-section .slide-item .bento-card-subtitle,
  #rental-section .slide-item .bento-card-subtitle {
    font-size: 20px !important;
    margin-bottom: 12px;
  }

  #maintenance-section .slide-item .bento-card-description,
  #rental-section .slide-item .bento-card-description {
    font-size: 13px !important;
    line-height: 1.6;
  }

  .bento-card-large,
  .bento-card-title-only {
    grid-column: span 1;
  }

  /* 일반 bento-card 패딩 - 주석 처리하여 maintenance-section 충돌 제거 */
  /* .bento-card {
    padding: 30px 24px;
  } */

  .bento-card-title {
    font-size: 1.5rem;
  }

  .bento-card-text {
    font-size: 1rem;
  }

  .bento-service-title {
    font-size: 1.5rem;
  }

  .slide-wrapper {
    min-height: 350px;
    padding: 40px 0;
  }

  /* rental-section: top padding 삭제 */
  #rental-section .slide-wrapper {
    padding-top: 0;
  }

  /* maintenance-section: bottom padding 삭제 */
  #maintenance-section .slide-wrapper {
    padding-bottom: 0;
  }

  .bento-card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  #maintenance-section .slide-item .bento-card-subtitle,
  #rental-section .slide-item .bento-card-subtitle {
    font-size: 24px !important;
  }

  #maintenance-section .slide-item .bento-card-description,
  #rental-section .slide-item .bento-card-description {
    font-size: 14px !important;
    color: #3a3a3a !important;
    padding-top: 8px !important;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .maintenance-clients-tabs {
    gap: 10px;
  }

  .client-tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .client-list {
    gap: 10px;
  }

  .client-item {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .footer {
    padding: 3rem 24px 1.5rem;
  }

  .footer .container {
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-content {
    display: flex;
    flex-direction: column !important;
    flex-wrap: nowrap;
    padding: 0 0 32px 0;
  }

  .footer-logo {
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 32px;
  }

  .footer-sections {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 2rem;
    padding-right: 0;
  }

  .footer-section:last-child {
    margin-bottom: 0;
  }

  .footer-logo .logo-img {
    max-height: 35px;
  }

  .footer-section h3 {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .footer-section ul li a {
    font-size: 0.85rem;
  }

  .footer-section p {
    font-size: 0.85rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .footer-bottom-content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .maintenance-hero {
    min-height: 350px;
    padding: 120px 0 60px;
  }

  .maintenance-hero-content {
    padding: 0;
  }

  .maintenance-hero-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .maintenance-hero-subtitle {
    font-size: 13px;
    margin-top: 0.25rem;
  }

  .maintenance-hero-badge {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }

  .maintenance-hero-nav-wrapper {
    padding: 8px 12px;
    bottom: 40px;
    border-radius: 40px;
    gap: 0.4rem;
    left: 20px;
    width: auto;
    max-width: calc(100% - 40px);
    flex-wrap: wrap;
  }

  .maintenance-hero-btn {
    padding: 8px 16px;
    font-size: 12px;
    width: 95px;
  }

  .maintenance-intro,
  .maintenance-services,
  .maintenance-features,
  .maintenance-clients,
  .contract-process {
    padding: 60px 0;
  }

  .maintenance-intro-title,
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .bento-grid-section {
    padding: 40px 0;
  }

  /* Bento Grid Section 전체화면 슬라이드 */
  .bento-grid-section.framer-1t3518c {
    /* 좌우 padding 완전 제거 */
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .bento-grid-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .bento-card {
    padding: 40px 20px;
  }

  .bento-card-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .bento-card-text {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .bento-service-title {
    font-size: 1.25rem;
  }

  .bento-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  #maintenance-section .slide-item .bento-card.bento-card-small,
  #rental-section .slide-item .bento-card.bento-card-small {
    padding: 40px 20px !important;
  }

  #maintenance-section .slide-item .bento-card-subtitle,
  #rental-section .slide-item .bento-card-subtitle {
    font-size: 24px !important;
    margin-bottom: 12px;
  }

  #maintenance-section .slide-item .bento-card-description,
  #rental-section .slide-item .bento-card-description {
    font-size: 14px !important;
    color: #3a3a3a !important;
    padding-top: 8px !important;
  }

  .intro-text h5 {
    font-size: 1.75rem;
    margin-bottom: 4rem;
  }

  #maintenance-section .intro-text h5 {
    margin-bottom: 0;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .maintenance-intro-text-section {
    padding: 40px 0 80px 0;
  }

  .maintenance-intro-text-title {
    font-size: 2rem;
  }

  .maintenance-intro-text-line1,
  .maintenance-intro-text-line2,
  .maintenance-intro-text-line3 {
    font-size: 1rem;
  }

  .maintenance-intro-text-line2 {
    font-size: 1.1rem;
  }

  .maintenance-service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .maintenance-service-item h3 {
    font-size: 1.2rem;
  }

  .maintenance-feature-item {
    padding: 30px 20px;
  }

  .maintenance-feature-item h3 {
    font-size: 1.2rem;
  }

  .client-tab-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .client-item {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .footer {
    padding: 2.5rem 24px 1.5rem;
  }

  .footer .container {
    display: flex !important;
    flex-direction: column !important;
  }

  .footer-content {
    display: flex;
    flex-direction: column !important;
    flex-wrap: nowrap;
    padding: 0 0 24px 0;
  }

  .footer-logo {
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 32px;
  }

  .footer-sections {
    flex-direction: column;
  }

  .footer-section {
    margin-bottom: 2rem;
    padding-right: 0;
  }

  .footer-section:last-child {
    margin-bottom: 0;
  }

  .footer-logo .logo-img {
    max-height: 32px;
  }

  .footer-section h3 {
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
  }

  .footer-section ul li {
    margin-bottom: 0.5rem;
  }

  .footer-section ul li a {
    font-size: 0.8rem;
  }

  .footer-section p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }

  .footer-bottom-content {
    margin-bottom: 1rem;
  }

  .footer-bottom-content p {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
  }
}

/* Product Gallery and Options Container */
.pd-prod-container {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 0;
  align-items: flex-start;
}

/* fragrance-section이 활성화되면 pd-prod-container 숨김 */
/* JavaScript에서 직접 제어하므로 CSS는 제거 */

/* Product Coming Soon Section */
.product-coming-soon {
  padding: 120px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  display: none; /* 기본적으로 숨김 */
  border: 1px solid #dee3ed;
  background-color: #dee3ed;
}

.product-coming-soon.animate {
  opacity: 1;
  transform: translateY(0);
  background-color: #f6f8fc;
  border-radius: 12px;
  margin-top: 80px;
}

.product-coming-soon-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.product-coming-soon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #969ea8;
  font-size: 32px;
}

.product-coming-soon-text {
  font-size: 1.5rem;
  font-weight: 500;
  color: #969ea8;
  margin: 0;
}

@media (max-width: 860px) {
  .product-coming-soon {
    padding: 80px 24px;
  }

  .product-coming-soon-icon {
    font-size: 28px;
  }

  .product-coming-soon-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .product-coming-soon {
    padding: 60px 24px;
  }

  .product-coming-soon-icon {
    font-size: 24px;
  }

  .product-coming-soon-text {
    font-size: 1.1rem;
  }

  .product-coming-soon-content {
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .pd-prod-container {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .pd-prod-container {
    gap: 20px;
    padding: 30px 0;
  }
}

/* Product Gallery Styles */
.pd-prod-gallery-wrapper {
  flex: 1;
  min-width: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}

.pd-prod-gallery-wrapper.revamp-scrollspy-target {
  padding-top: 0;
}

.pd-prod-gallery-wrapper .container {
  margin-top: 20px;
}

@media (max-width: 480px) {
  .pd-prod-gallery-wrapper .container {
    margin-top: 20px;
  }
}

.pd-prod-gallery {
  width: 100%;
  margin: 0;
}

.pd-prod-gallery-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-prod-gallery-viewer {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.pd-prod-size-tag {
  position: absolute;
  top: 12px;
  z-index: 10;
  background: #24292f;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.4;
  margin-right: 8px;
  text-align: left;
}

.pd-prod-size-tag:first-of-type {
  left: 12px;
}

.pd-prod-size-tag:nth-of-type(2) {
  left: calc(12px + 1 * (100px + 8px));
}

.pd-prod-size-tag:nth-of-type(3) {
  left: calc(12px + 2 * (100px + 8px));
}

.pd-prod-size-tag:nth-of-type(4) {
  left: calc(12px + 3 * (100px + 8px));
}

.pd-prod-size-tag span {
  display: inline-block;
}

.pd-prod-gallery-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.4s ease;
}

.pd-prod-gallery-slide {
  min-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pd-prod-gallery-slide.active {
  opacity: 1;
  position: relative;
}

.pd-prod-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 20px;
  box-sizing: border-box;
}

.pd-prod-gallery-thumbnails {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .pd-prod-gallery-thumbnails {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .pd-prod-gallery-thumbnails {
    gap: 8px;
  }
}

.pd-prod-gallery-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.pd-prod-gallery-thumb:hover {
  border-color: #53c178;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(83, 193, 120, 0.3);
}

.pd-prod-gallery-thumb.active {
  border-color: #53c178;
  box-shadow: 0 0 0 2px rgba(83, 193, 120, 0.2);
}

.pd-prod-gallery-thumb.active img {
  opacity: 1;
}

.pd-prod-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.3;
  background: #ffffff;
}

/* Product Options Styles */
.pd-prod-options {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}

.pd-prod-options-content {
  max-width: 1200px;
  margin: 0 auto;
}

.pd-prod-options-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.pd-prod-option-group {
  margin-bottom: 40px;
}

.pd-prod-option-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  display: block;
}

.pd-prod-option-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

@media (max-width: 860px) {
  .pd-prod-option-list {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .pd-prod-option-list {
    gap: 10px;
  }
}

.pd-prod-option-item {
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.pd-prod-option-item:hover {
  border-color: #53c178;
  background: #f0f9f4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(83, 193, 120, 0.15);
}

.pd-prod-option-item.active {
  border-color: #53c178;
  background: #e8f5ed;
  box-shadow: 0 0 0 3px rgba(83, 193, 120, 0.1);
}

.pd-prod-option-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.pd-prod-option-name {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  flex: 1;
}

.pd-prod-option-item.active .pd-prod-option-name {
  color: #53c178;
}

.pd-prod-option-desc {
  font-size: 0.85rem;
  color: #666;
  display: block;
}

/* Size Badge Styles (정보 표시용) - Option 1: Minimal Tag Style with Left Border */
.pd-prod-size-badge {
  background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
  border: 1.5px solid #53c178;
  border-left: 4px solid #53c178;
  border-radius: 6px;
  padding: 12px 16px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  text-align: left;
  position: relative;
}

.pd-prod-size-badge:hover {
  background: linear-gradient(135deg, #e8f5ed 0%, #f0f9f4 100%);
  box-shadow: 0 2px 8px rgba(83, 193, 120, 0.15);
  transform: translateX(2px);
}

.pd-prod-size-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #53c178;
  display: inline-block;
  line-height: 1.4;
}

.pd-prod-size-desc {
  font-size: 0.75rem;
  color: #64748b;
  display: inline-block;
  line-height: 1.4;
  margin-left: 4px;
}

.pd-prod-size-desc::before {
  content: "•";
  margin-right: 6px;
  color: #cbd5e1;
}

/* Size Selection List 스타일 조정 */
#sizeSelection {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 860px) {
  #sizeSelection {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  #sizeSelection {
    gap: 8px;
  }
}

.pd-prod-selected-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-prod-selected-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-prod-selected-label {
  font-weight: 600;
  color: #666;
  min-width: 120px;
}

.pd-prod-selected-value {
  font-weight: 600;
  color: #53c178;
  font-size: 1.1rem;
}

.pd-prod-inquiry-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

.pd-prod-inquiry-btn {
  display: inline-block;
  background: linear-gradient(135deg, #53c178 0%, #4aad6a 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(83, 193, 120, 0.3);
}

.pd-prod-inquiry-btn:hover {
  background: linear-gradient(135deg, #4aad6a 0%, #3d8b5a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(83, 193, 120, 0.4);
}

/* Responsive Styles */
@media (max-width: 860px) {
  .pd-prod-container {
    flex-direction: column;
    padding: 40px 0;
    gap: 30px;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
  }

  .pd-prod-gallery-wrapper {
    padding: 0;
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .pd-prod-gallery-wrapper.revamp-scrollspy-target {
    padding-top: 0;
  }

  .pd-prod-gallery-wrapper .container {
    margin-top: 20px;
  }

  .pd-prod-gallery {
    padding: 24px;
  }

  .pd-prod-options {
    padding: 24px;
    border-radius: 12px;
    margin-left: 24px;
    margin-right: 24px;
    width: calc(100% - 48px);
    box-sizing: border-box;
  }

  .pd-prod-options .container {
    padding-left: 0;
    padding-right: 0;
  }

  .pd-prod-gallery-viewer {
    aspect-ratio: 4/3;
  }

  .pd-prod-size-tag {
    top: 10px;
    padding: 5px 10px;
    font-size: 0.8rem;
    margin-right: 6px;
  }

  .pd-prod-size-tag:first-of-type {
    left: 10px;
  }

  .pd-prod-size-tag:nth-of-type(2) {
    left: calc(10px + 1 * (90px + 6px));
  }

  .pd-prod-size-tag:nth-of-type(3) {
    left: calc(10px + 2 * (90px + 6px));
  }

  .pd-prod-size-tag:nth-of-type(4) {
    left: calc(10px + 3 * (90px + 6px));
  }

  .pd-prod-gallery-thumb {
    width: 60px;
    height: 60px;
  }

  .pd-prod-options-title {
    font-size: 1.35rem;
    margin-top: 24px;
    margin-bottom: 30px;
  }

  .pd-prod-option-list {
    grid-template-columns: 1fr;
  }

  #sizeSelection {
    flex-direction: column;
    gap: 8px;
  }

  .pd-prod-size-badge {
    width: 100%;
    padding: 12px 16px;
  }

  .pd-prod-selected-summary {
    padding: 20px;
  }

  .pd-prod-selected-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pd-prod-selected-label {
    min-width: auto;
  }

  .pd-prod-inquiry-btn {
    width: 100%;
    padding: 14px 32px;
  }
}

@media (max-width: 480px) {
  .pd-prod-options {
    padding: 24px 16px;
  }

  .pd-prod-gallery-thumbnails {
    gap: 8px;
  }

  .pd-prod-gallery-thumb {
    width: 50px;
    height: 50px;
  }

  .pd-prod-options-title {
    font-size: 1.15rem;
  }

  .pd-prod-option-item {
    padding: 16px;
  }

  .pd-prod-size-badge {
    padding: 10px 14px;
  }

  .pd-prod-size-name {
    font-size: 0.85rem;
  }

  .pd-prod-size-desc {
    font-size: 0.75rem;
  }

  .pd-prod-size-tag {
    top: 8px;
    padding: 4px 8px;
    font-size: 0.75rem;
    margin-right: 4px;
  }

  .pd-prod-size-tag:first-of-type {
    left: 8px;
  }

  .pd-prod-size-tag:nth-of-type(2) {
    left: calc(8px + 1 * (80px + 4px));
  }

  .pd-prod-size-tag:nth-of-type(3) {
    left: calc(8px + 2 * (80px + 4px));
  }

  .pd-prod-size-tag:nth-of-type(4) {
    left: calc(8px + 3 * (80px + 4px));
  }
}
