@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@import url('https://webfontworld.github.io/gmarket/GmarketSans.css');

@font-face {
  font-family: 'GMarketSans';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff') format('woff');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'GMarketSans';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'GMarketSans';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  font-family: 'Pretendard', sans-serif;
  color: #111;
  word-break: keep-all;
}

input,
button,
select,
textarea {
  font-family: inherit;
}

ul {
  list-style: none
}

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

/* background video */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* layout */
.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 79px;
}

.logo img {
  height: 34px;
}

.logo span {
  font-size: 14px;
  margin-left: 6px
}

/* gnb */
.gnb>ul {
  display: flex;
  gap: 40px;
}

.gnb>ul>li {
  position: relative;
  height: 100%;
  padding: 32px 0;
}

.gnb a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

/* arrow */
.gnb .has-sub>a i {
  width: 6px;
  height: 6px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
  transition: .3s;
}

.arrow {
  display: none;
}

/* sub menu */
.sub {
  position: absolute;
  top: 69px;
  left: -50%;
  background: #fff;
  min-width: 160px;
  opacity: 0;
  padding: 20px;
  visibility: hidden;
  transform: translateY(0);
  transition: .3s;
  border: 1px solid #ddd;
}

.gnb li:hover .sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

.sub>li {
  padding: 10px 0;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  will-change: transform, opacity;
  transition: opacity .1s linear;
}

.hero-sub {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width:768px) {
  .hero-title {
    font-size: 30px;
  }

  .gnb>ul>li {
    padding: 0;
  }

  .sub {
    padding: 0;
    border: none;
  }

  .sub>li {
    padding: 0;
  }
}

/* main */
.main {
  padding-top: 79px;
  /* 헤더 80 + 여백 100 */
}

.main .inner {
  padding: 0 50px;
}

.main .inner>section~section {
  border-top: 1px solid #ddd;
}

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

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.sub-title {
  display: block;
  font-size: 18px;
  color: #666;
  margin-bottom: 8px;
}

.title {
  font-size: 40px;
  font-weight: 700;
}

.more {
  font-size: 14px;
  border: 1px solid #ddd;
  padding: 12px 50px;
  transition: .3s;
}

.more:hover {
  background: #111;
  color: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card {
  padding: 20px 20px 30px;
  background: #f9f9f9;
}

.thumb {
  width: 100%;
  height: 220px;
  margin-bottom: 16px;
}

/* 카드 제목 - 2줄 */
.card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 20px 0 6px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 카드 본문 - 3줄 */
.card-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width:768px) {

  .main .inner {
    padding: 0 20px;
  }

  .section-head {
    gap: 20px;
  }

  .title {
    font-size: 24px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .thumb {
    height: 180px;
  }

  .more {
    padding: 10px 30px;
    font-size: 14px;
  }

  .sub-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-desc {
    font-size: 14px;
  }

}

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

.review-card {
  background: #f9f9f9;
  padding: 30px 30px 25px;
}

.point-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.review-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width:768px) {
  .review-list {
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 30px 30px 25px;
  }

  .point-text {
    font-size: 18px;
  }

  .review-text {
    font-size: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}


.lawyer-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform .6s ease;
}

.lawyer-card {
  width: 100%;
  height: 480px;
  min-width: 100%;
  position: relative;
}

.lawyer-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* 텍스트 */
.lawyer-info {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;

  opacity: 0;
  transform: translateY(-20px);
  transition: .5s;
}

.lawyer-card.active .lawyer-info {
  opacity: 1;
  transform: translateY(0);
}

/* 버튼 */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .2);
  color: #fff;
  border: none;
  font-size: 26px;
  cursor: pointer;
  z-index: 9;
}

.slide-btn.prev {
  left: 20px
}

.slide-btn.next {
  right: 20px
}




/* footer */
.footer {
  background: linear-gradient(to bottom right, #fea35a, #f85b05);
  color: #fff;
  padding: 60px 0;
  line-height: 1.4;
}

.footer .inner {}

.footer img {
  width: 320px;
}

.footer p {
  margin: 30px 0;
  line-height: 1.6;
}

.footer .footer-right {
  opacity: .6;
}

/* hamburger */
.hamburger {
  display: none;
  width: 30px;
  height: auto;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #111;
  margin: 5px 0;
  transition: .3s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* mobile */
@media (max-width: 1024px) {

  .hamburger {
    display: block
  }

  .gnb {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #fff;
    transition: .4s;
  }

  .gnb.active {
    right: 0
  }

  .gnb>ul {
    flex-direction: column;
    padding: 40px 20px;
    gap: 0;
  }

  .gnb>ul>li~li {
    border-top: 1px solid #eee;
  }

  .sub {
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease;
  }

  .has-sub.active .sub {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .sub a {
    padding: 10px 10px;
    color: #666;
    font-size: 14px;
  }


  .has-sub.active>a i {
    transform: rotate(-135deg);
  }

  .gnb a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 16px;
  }

  .arrow {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg);
    transition: .3s;
  }

  .has-sub.active .arrow {
    transform: rotate(-135deg);
  }
}

/* Contact Section */
.contact-section {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  font-family: 'GmarketSans', sans-serif;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 80px;
}

/* Tabs */
.contact-tabs {
  display: flex;
  margin-bottom: 100px;
  justify-content: center;
  gap: 24px;
}

.tab-btn {
  flex: 1;
  text-align: center;
  padding: 18px 0;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  background: #eee;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn.active {
  background: #f77e49;
  color: #fff;
  font-weight: 700;
}

/* Tab Content */
.tab-content {
  display: none;
}

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

/* Form */
.contact-form .form-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #f77e49;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

/* Select wrapper for custom arrow */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.contact-form .form-group.full {
  margin-bottom: 24px;
}

.contact-form textarea {
  height: 180px;
  resize: none;
}

/* Notices */
.form-notice {
  margin-top: 20px;
}

.form-notice p {
  font-size: 16px;
  color: #f77e49;
  margin-bottom: 6px;
  font-weight: 500;
}

/* Submit Block */
.submit-btn {
  width: 100%;
  background: #f77e49;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 20px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 40px;
}

.submit-btn:hover {
  background: #e16b39;
}

@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 24px;
  }

  .contact-tabs {
    flex-direction: column;
    gap: 10px;
  }
}

/* =======================================================================
   NEW STYLES FOR MAIN (index.html) & COMPANY (company.html)
   ======================================================================= */

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

.section-title {
  font-family: 'GmarketSans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.section-desc {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  font-family: 'Pretendard', sans-serif;
}

/* ---------- index.html ---------- */
.main-hero {
  background: linear-gradient(135deg, #f9a06f, #f77e49);
  padding: 160px 0 120px;
  color: #fff;
  text-align: center;
}

.hero-subtext {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-title {
  font-family: 'GmarketSans', sans-serif;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
}

.main-video-section {
  padding: 100px 0;
  background: #fff;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-container img {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
}

.video-overlay h3 {
  font-size: 34px;
  font-family: 'GmarketSans', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border-radius: 60px 0 60px 0;
}

.quality-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.quality-card:last-child {
  border-right: none;
}

.q-top-left {
  border-top-left-radius: 60px;
}

.q-bottom-right {
  border-bottom-right-radius: 60px;
}

.quality-card .thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.quality-card .text {
  padding: 35px 30px;
  text-align: center;
  flex: 1;
}

.quality-card .q-title {
  font-family: 'GmarketSans', sans-serif;
  color: #f77e49;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

.quality-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

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

.best-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-stats-section {
  padding: 120px 0;
  background: #f4f4f4;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

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

.stat-item .circle {
  width: 220px;
  height: 220px;
  background: #f77e49;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 20px;
}

.stat-item .circle h3 {
  font-family: 'GmarketSans', sans-serif;
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item .circle span {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 300;
}

.stat-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.main-safety-section {
  padding: 100px 0;
  background: #fff;
}

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

.safety-card {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: left;
  transition: .3s;
}

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

.safety-card .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.safety-card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.safety-card h4 {
  font-family: 'GmarketSans', sans-serif;
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.safety-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.main-sanitary-section {
  padding: 100px 0;
  background: #fdfdfd;
}

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

/* ---------- company.html ---------- */
.company-hero {
  position: relative;
  color: #fff;
}

.company-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/company_bg.jpg') no-repeat center center/cover;
  z-index: -1;
}


.company-hero .inner {
  position: relative;
  z-index: 1;
}

.company-hero .hero-title {
  font-family: 'GmarketSans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.company-hero .hero-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.7);
  margin-left: 40px;
  /* Align slightly inward like the image */
  margin-bottom: 25px;
}

.company-hero .hero-desc {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  color: #fff;
  padding-left: 20px;
}

.company-intro {
  background: #fff;
}

.intro-split {
  display: flex;
  align-items: center;
  gap: 80px;
}

.company-logo {
  flex: 0 0 400px;
}

.company-logo img {
  width: 100%;
  display: block;
}

.intro-text {
  flex: 1;
}

.company-title {
  font-family: 'GmarketSans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #f77e49;
  margin-bottom: 24px;
  line-height: 1.3;
}

.company-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.company-desc p {
  margin-bottom: 15px;
}

.company-desc strong {
  font-size: 20px;
  font-weight: 700;
  display: block;
  /* Make it block level like the image design */
  margin-top: 10px;
  margin-bottom: 10px;
}

.company-desc b {
  color: #f77e49;
  font-size: 20px;
  font-weight: 700;
}

.company-values {
  /* Add padding back to separate content from new borders */
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

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

.value-card {
  background: #fafafa;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
}

.value-card .v-head {
  text-align: center;
  padding: 40px 30px 30px;
}

.value-card .v-head span {
  display: block;
  font-size: 16px;
  color: #666;
  margin-bottom: 6px;
}

.value-card .v-head h3 {
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

.value-card .v-img {
  padding: 0 20px;
  /* To prevent images from touching edges if we want square image effect inner */
  border-radius: 6px;
}

.value-card .v-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.value-card .v-desc {
  padding: 30px 30px 40px;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  text-align: center;
  flex: 1;
}

.value-card .v-desc strong {
  display: none;
  /* Removed the strong text logically from HTML since image design replaces it, but hide if any lingers */
}

.company-campaign {
  background: #fff;
}

.campaign-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.campaign-item {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.campaign-item.reverse {
  flex-direction: row-reverse;
}

.campaign-item .c-img {
  flex: 1;
}

.campaign-item .c-img img {
  width: 100%;
  display: block;
}

.campaign-item .c-text {
  flex: 1;
}

.campaign-item.reverse .c-text {
  text-align: right;
}

.campaign-item .c-title {
  font-family: 'GmarketSans', sans-serif;
  font-size: 28px;
  color: #f77e49;
  font-weight: 700;
  margin-bottom: 24px;
}

.campaign-item .c-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.company-partner {
  position: relative;
  overflow: hidden;
  /* For watermark containment */
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.partner-watermark {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(30%);
  font-family: 'GmarketSans', sans-serif;
  font-size: 7vw;
  /* Takes up around 70~80% of the screen width */
  font-weight: 900;
  color: #f77e49;
  opacity: 0.05;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.company-partner .inner {
  position: relative;
  z-index: 1;
  /* Keep content above watermark */
}

.partner-slider-wrap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 60px;
}

.partner-track {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  gap: 20px;
  padding-right: 20px;
  /* Gap between the end of track 1 and start of track 2 */
  animation: slide-partner 80s linear infinite;
}

@keyframes slide-partner {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.partner-logo {
  flex-shrink: 0;
  width: 320px;
  height: 100px;
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: .3s;
  overflow: hidden;
}

.partner-logo:hover {
  border-color: #f77e49;
  box-shadow: 0 5px 15px rgba(247, 126, 73, 0.1);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: .3s;
}

.partner-logo:hover img {
  opacity: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .section-title {
    font-size: 40px;
  }

  .section-desc {
    font-size: 18px;
  }

  .quality-grid {
    border-radius: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  .quality-card {
    border-right: none;
    width: 100%;
  }

  .q-top-left,
  .q-bottom-right {
    border-radius: 0;
  }

  .quality-card .thumb {
    width: 100%;
    border-radius: 12px;
  }

  .quality-card.type-left .thumb,
  .quality-card.type-right .thumb {
    border-radius: 12px;
  }

  .sanitary-hex-grid {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }

  .hex-wrapper {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  .hex-wrapper:nth-child(odd) .hex-text,
  .hex-wrapper:nth-child(even) .hex-text {
    top: 100%;
    bottom: auto;
    padding-top: 20px;
    padding-bottom: 0;
  }

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

  .stats-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

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

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

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* (Old company/partner 768px rules removed – consolidated into main responsive section below) */

/* =======================================================================
   NEW STYLES FOR SERVICE TABS (page/service.html)
   ======================================================================= */

.service-section {
  max-width: 1000px;
  margin: 0 auto;
}

.service-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-title {
  font-family: 'GmarketSans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.service-desc {
  font-size: 16px;
  color: #666;
}



/* Tab 1: Event/Festival */
.service-tab-inner {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.tab-hero-text {
  text-align: left;
  margin-bottom: 60px;
}

.tab-hero-text h3 {
  font-family: 'GmarketSans', sans-serif;
  font-size: 44px;
  line-height: 1.4;
  color: #111;
  font-weight: 700;
}

.tab-hero-text .highlight {
  color: #f77e49;
}

.stats-banner {
  display: flex;
  gap: 30px;
  margin-bottom: 100px;
}

.stat-box {
  flex: 1;
  text-align: center;
  background: #fafafa;
  border-radius: 12px;
  padding: 40px 0;
}

.stat-box:last-child {}

.stat-box strong {
  display: block;
  font-size: 24px;
  color: #f77e49;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-box span {
  font-size: 16px;
  color: #555;
}

.event-banner-img {
  position: relative;
  margin-bottom: 100px;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}

.event-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.overlay-text p {
  font-family: 'GmarketSans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.overlay-text h4 {
  font-family: 'GmarketSans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  background-color: #f77e49;
  padding: 5px 10px 0;
  display: inline-block;
}

.event-process-text {
  text-align: center;
  margin-bottom: 100px;
}

.event-process-text p {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.divider-line {
  width: 1px;
  height: 60px;
  background: #eee;
  margin: 30px auto;
}

.event-process-text .small-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  font-weight: 400;
}

.service-guarantee {
  background: #fafafa;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 80px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  overflow: hidden;
}

.service-guarantee::before {
  content: 'NEWPLACE';
  position: absolute;
  top: 30px;
  right: 0;
  font-family: 'GmarketSans', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
}

.guarantee-text,
.guarantee-box {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-text h3 {
  font-family: 'GmarketSans', sans-serif;
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 700;
}

.guarantee-text .highlight {
  color: #f77e49;
}

.guarantee-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 40px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.check-list li {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.check-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  background: #f77e49;
  border-radius: 4px;
  margin-right: 12px;
}

.check-icon::after {
  content: '';
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 3px;
}

.desc-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

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

.trophy-badge img {
  width: 100%;
}

.trophy-badge span {
  display: block;
  font-size: 16px;
  color: #f77e49;
  font-weight: 600;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-header h3 {
  font-family: 'GmarketSans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
}

.gallery-header p {
  font-size: 16px;
  color: #666;
}

.gallery-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.slider-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
  border: none;
  cursor: pointer;
  position: relative;
}

.slider-arrow.prev::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 16px;
  width: 10px;
  height: 10px;
  border: solid #999;
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
}

.slider-arrow.next::after {
  content: '';
  position: absolute;
  top: 14px;
  right: 16px;
  width: 10px;
  height: 10px;
  border: solid #999;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

.main-image {
  flex: 0 0 80%;
  max-width: 800px;
  margin: 0 40px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}

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

.gallery-thumbs {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
  height: 100px;
  cursor: pointer;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid transparent;
  /* Prevents jumping when active */
  box-sizing: border-box;
  transition: all .2s;
}

.gallery-thumbs img.active {
  border-color: #f77e49;
}

.mt-30 {
  margin-top: 30px;
}

.mt-100 {
  margin-top: 100px;
}

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

.more-event-wrap {
  text-align: right;
  max-width: 800px;
  margin: 0 auto;
}

.btn-more-event {
  display: inline-block;
  margin: 20px 0 0;
  padding: 15px 40px;
  border: 1px solid #f77e49;
  color: #f77e49;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  transition: .3s;
  background: #fff;
}

.btn-more-event:hover {
  background: rgba(247, 126, 73, 0.05);
}

/* Tab 2: Catering */
.catering-inner .gallery-header {
  margin-top: 40px;
}

.catering-inner .gallery-header h3 {
  font-size: 44px;
}

.catering-inner .gallery-header p {
  font-size: 20px;
  line-height: 1.6;
}

.catering-thumbs {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 80px;
  overflow: hidden;
  /* Hide scrollbars, Swiper handles it */
}

/* Linear scrolling effect override for Swiper container */
.catering-thumbs .swiper-wrapper {
  transition-timing-function: linear !important;
}

.catering-thumbs .swiper-slide {
  width: 280px;
  height: 240px;
  background-color: #f9f9f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.catering-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-cards {
  display: flex;
  gap: 30px;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #eee;
}

.info-box {
  flex: 1;
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #f77e49;
}

.info-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.info-box p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.c-process-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  position: relative;
  width: 100%;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #eee;
}

.c-step {
  flex: 1;
  display: grid;
  grid-template-rows: 150px 30px 150px;
  align-items: center;
  justify-items: center;
  position: relative;
}

/* Up/Down positioning using grid rows */
.c-step.up .c-icon {
  grid-row: 1;
  align-self: end;
  margin-bottom: 20px;
}

.c-step.up .c-mid {
  grid-row: 2;
}

.c-step.up .c-text {
  grid-row: 3;
  align-self: start;
  margin-top: 20px;
}

.c-step.down .c-text {
  grid-row: 1;
  align-self: end;
  margin-bottom: 20px;
}

.c-step.down .c-mid {
  grid-row: 2;
}

.c-step.down .c-icon {
  grid-row: 3;
  align-self: start;
  margin-top: 20px;
}

.c-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.c-icon img {
  width: 100%;
  object-fit: contain;
}

.c-text {
  text-align: center;
  width: 100%;
}

.c-text h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.c-text h5.highlight {
  color: #f77e49;
}

.c-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Center Timeline elements */
.c-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.c-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #f77e49;
  background: #fff;
  z-index: 2;
  position: relative;
}

.c-line {
  flex: 1;
  height: 1px;
  background: #f77e49;
  position: relative;
}

.c-line.left {
  /* Line goes to the left edge of the step container */
}

.c-line.right {
  /* Line goes to the right edge of the step container */
}

/* Add arrowhead to the right line */
.c-line.has-arrow::after {
  content: '';
  position: absolute;
  right: -2px;
  /* Pull slightly over the edge to touch the next line seamlessly */
  top: 50%;
  transform: translateY(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: transparent transparent transparent #f77e49;
  z-index: 3;
}

/* The first step has no left line extending beyond its node? 
   Actually, the design shows the line extending out from the node in both directions. 
   We just need the very first left line and very last right line to maybe fade out or be hidden 
   if we don't want them hitting the edges. The user image shows the line extends off-center.
*/
.c-step:first-child .c-line.left {
  background: transparent;
}

.c-step:last-child .c-line.right {
  background: transparent;
}

.branding-section {
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #eee;
}


.branding-img {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.branding-img img {
  display: block;

}

.branding-img p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px #000;
}

.theme-circles-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid #eee;
}

.circle-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.left-list,
.right-list {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  text-align: right;
  list-style: none;
}

.right-list {
  text-align: left;
}

.theme-circles {
  display: flex;
  align-items: center;
  position: relative;
}

.theme-circles .circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 40px;
}

.theme-circles .circle.orange {
  background: rgba(247, 126, 73, 0.9);
  color: #fff;
  z-index: 2;
}

.theme-circles .circle.light {
  background: rgba(247, 126, 73, 0.9);
  color: #fff;
  margin-left: -30px;
  z-index: 1;
}

.theme-circles .circle strong {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.theme-circles .circle p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Tab 3: Rental & Wrapping */
.rental-hero {
  text-align: center;
  margin-bottom: 100px;
  padding-top: 40px;
}

.rental-hero h2 {
  font-family: 'GmarketSans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}

.rental-hero h2 .highlight {
  color: #f77e49;
}

.rental-hero p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.brand-graphic {
  text-align: center;
  margin-bottom: 100px;
}

.brand-graphic img {
  width: 100%;
}

.rental-cards {
  display: flex;
  gap: 30px;
}

.r-card {
  flex: 1;
  background: #fafafa;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
}

.r-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.r-card h3 .highlight {
  color: #f77e49;
}

.r-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* (Old service page 768px rules removed – consolidated into main responsive section below) */

/* =======================================================================
   NEW STYLES FOR MENU TABS (page/menu.html)
   ======================================================================= */

.menu-section {
  max-width: 1000px;
  margin: 0 auto;
}

.menu-tabs {
  margin-bottom: 80px;
}

.menu-tab-inner {
  animation: fadeIn 0.4s ease forwards;
}

.menu-category-banner {
  background: #fafafa;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 60px;
}

.menu-category-banner h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.menu-category-banner p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.menu-category-banner .highlight {
  color: #f77e49;
  font-weight: 600;
}

.menu-list-wrap {
  margin-bottom: 60px;
}

.menu-list-wrap.split-top-line {
  padding-top: 60px;
  border-top: 1px solid #eaeaea;
}

.menu-list-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}

.menu-list-title .highlight {
  color: #f77e49;
  margin-right: 5px;
}

.menu-list-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* 5 Column Default Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px 15px;
}

/* 4 Column Variant for Kids Menu */
.menu-grid.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.menu-item {
  text-align: left;
}

.menu-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #eaeaea;
  margin-bottom: 12px;
}

.menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {

  .menu-grid,
  .menu-grid.grid-col-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

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

}

/* =======================================================================
   NEW STYLES FOR OVERHAULED MAIN PAGE (index.html)
   ======================================================================= */

/* 1. Hero Section */
.main-hero-v2 {
  background: linear-gradient(135deg, #fea35a 0%, #f06900 100%);
  text-align: center;
  color: #fff;
}

.main-hero-v2 .inner {
  background: transparent;
}

.main-hero-v2 .hero-subtext {
  font-family: 'GmarketSans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.main-hero-v2 .hero-title {
  font-family: 'GmarketSans', sans-serif;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 30px;
}

.main-hero-v2 .hero-title .bg-white-text {
  background: #fff;
  color: #f77e49;
  padding: 5px 10px 0px;
  display: inline-block;
}

.main-hero-v2 .hero-divider {
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 30px;
}

.main-hero-v2 .hero-desc {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

/* =============== Section Styles =============== */

.border-divider {
  border-bottom: 1px solid #eee;
}

/* Add uniform padding to valid inner wrappers */
.main .inner {
  padding: 100px 50px;
}

@media (max-width: 768px) {
  .main .inner {
    padding: 50px 20px;
  }
}

/* 2. 전국 유명 푸드트럭 */
.main-video-section {
  padding: 0;
}

.main-video-section .section-desc .highlight {
  color: #f77e49;
  font-weight: 600;
}

.video-single-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.video-single-container img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* 3. FOOD QUALITY */
.main-quality-section {
  background: #fff;
}

.quality-grid-v2 {
  display: flex;
  gap: 8px;
}

.quality-card {
  flex: 1;
  text-align: center;
}

.quality-card .thumb {
  width: 100%;
  height: 350px;
  margin-bottom: 30px;
  overflow: hidden;
}

.quality-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Radii per Mockup */
.quality-card.type-left .thumb {
  border-radius: 150px 0 0 0;
}

.quality-card.type-right .thumb {
  border-radius: 0 150px 0 0;
}

.quality-card .text {
  padding: 0 15px;
}

.quality-card .q-title {
  color: #f77e49;
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.quality-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* 4. BEST 푸드트럭 */
.main-best-section {}

.best-swiper {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}

.best-swiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: #f5f5f5;
  /* Grey placeholder */
}

.best-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom Navigation Arrows */
.best-arrow-prev,
.best-arrow-next {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.3s;
}

.best-arrow-prev:hover,
.best-arrow-next:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.best-arrow-prev::after,
.best-arrow-next::after {
  font-size: 20px;
  font-weight: 700;
}

.best-arrow-prev {
  left: 20px;
}

.best-arrow-next {
  right: 20px;
}

/* 5. 뉴플레이스 컴퍼니 STATS */
.main-stats-section-v2 {
  background: #f8f8f8;
}

.stats-circles-wrap {
  display: flex;
  justify-content: space-center;
  gap: 40px;
}

.main-stats-section-v2 .stat-item {
  flex: 1;
  text-align: center;
}

.circle.orange-gradient {
  background: linear-gradient(135deg, #fea35a 0%, #f06900 100%);
  color: #fff;
  width: 280px;
  height: 280px;
  margin: 0 auto 30px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.circle.orange-gradient h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.circle.orange-gradient h3 span {
  font-size: 34px;
}

.circle.orange-gradient span {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
  line-height: 1.4;
}

.stat-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.main-stats-section-v2 .highlight,
.stat-text .highlight,
.main-safety-section-v2 .highlight {
  color: #f77e49;
  font-weight: 600;
}

/* 6. SAFETY */
.safety-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.s-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}

.icon-top-right {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
}

.icon-top-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s-card h4 {
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: left;
  line-height: 1.4;
}

.s-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  text-align: left;
  word-break: keep-all;
}

.main-sanitary-section-v2 .inner {
  padding-bottom: 150px;
}

.sanitary-hex-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.hex-wrapper {
  width: 220px;
  height: 191px;
  position: relative;
  flex-shrink: 0;
}

.hex-wrapper+.hex-wrapper {
  margin-left: -48px;
  /* Less overlap to create a bigger gap */
}

/* Odd items (1, 3, 5): W-shape Top (High), Text Below */
.hex-wrapper:nth-child(odd) {
  margin-top: 0;
}

.hex-wrapper:nth-child(odd) .hex-text {
  top: 100%;
  padding-top: 25px;
}

/* Even items (2, 4): W-shape Bottom (Low), Text Above */
.hex-wrapper:nth-child(even) {
  margin-top: 100.5px;
  /* Adjust vertical staggering to match the wider gap offset horizontally */
}

.hex-wrapper:nth-child(even) .hex-text {
  bottom: 100%;
  padding-bottom: 25px;
}

.hex-shape {
  width: 100%;
  height: 100%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: #eaeaea;
  overflow: hidden;
  transform: scale(0.92);
  /* Smaller scale = more visible gap */
}

.hex-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hex-text {
  position: absolute;
  width: 260px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hex-title {
  display: block;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  color: #f77e49;
  margin-bottom: 12px;
}

.hex-desc {
  display: block;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* FAQ Section */

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-family: 'GmarketSans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #212121;
  margin-bottom: 30px;
}

.faq-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #666;
  word-break: keep-all;
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  transition: border-color 0.3s;
}

/* Hide list top border when first item is active */
.faq-list:has(.faq-item:first-child.active) {
  border-top-color: transparent;
}

.faq-item {
  border-bottom: 1px solid #eee;
  transition: border-color 0.3s;
}

.faq-item:last-child {
  border-bottom: none;
}

/* Hide border above active item */
.faq-item:has(+ .faq-item.active) {
  border-bottom-color: transparent;
}

.faq-question {
  padding: 35px 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s;
}

.faq-num {
  font-size: 20px;
  font-weight: 700;
  color: #fd5107;
  /* Use the point color from conversation history */
  margin-right: 15px;
}

.faq-question p {
  font-size: 20px;
  font-weight: 600;
  color: #212121;
  flex: 1;
  padding-right: 40px;
  line-height: 1.6;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-arrow::before,
.faq-arrow::after {
  content: '';
  position: absolute;
  background-color: #ccc;
  transition: background-color 0.3s;
}

/* Common arrow shape (chevron down) */
.faq-arrow::before {
  width: 10px;
  height: 2px;
  right: 3px;
  top: 9px;
  transform: rotate(135deg);
}

.faq-arrow::after {
  width: 10px;
  height: 2px;
  left: 0;
  top: 9px;
  transform: rotate(-135deg);
}

.faq-item.active .faq-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item.active {
  border-bottom-color: transparent;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #f9f9f9;
  border-radius: 12px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  /* Large enough to fit content */
}

.answer-inner {
  padding: 30px 40px 30px 40px;
}

.answer-inner p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Main JS Dynamic Styles */
.event-main-img {
  transition: opacity 0.2s ease-in-out;
}

.no-partners-msg {
  padding: 20px;
}

.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 1;
}

/* Style Refactoring Utility Classes */
.w-full {
  width: 100%;
}

.h-100 {
  height: 100%;
}

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

.opacity-60 {
  opacity: 0.6;
}

.lh-16 {
  line-height: 1.6;
}

.text-point {
  color: #e6b131;
}

.text-orange-point {
  color: #f77e49;
}

.text-header-contact {
  color: #f85b05 !important;
}

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

.font-black {
  color: #111;
}

.menu-banner-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.6;
}

/* =========================================================
   Menu Page: Top Banner Auto-Sliding Marquee
   ========================================================= */
.menu-top-banner {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 0;
}

.menu-hero-slider {
  width: 100%;
  overflow: hidden;
}

.menu-hero-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.menu-hero-slider .swiper-slide {
  width: 240px;
  height: 240px;
  background-color: #f9f9f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  /* other styles if any */
}



/* =======================================================================
   COMPREHENSIVE RESPONSIVE OVERRIDES (Consolidated)
   Title: 30px / Sub-title: 18px / Body: 14~16px (Mobile)
   ======================================================================= */

/* ---------- TABLET (max-width: 1024px) ---------- */
@media (max-width: 1024px) {

  /* Main Index – Quality / Stats */
  .quality-grid-v2,
  .best-grid-v2,
  .stats-circles-wrap {
    flex-direction: column;
    align-items: center;
  }

  .quality-card .thumb {
    height: 280px;
  }

  .circle.orange-gradient {
    width: 220px;
    height: 220px;
  }

  .circle.orange-gradient h3 {
    font-size: 28px;
  }

  /* Company – Hero / Intro */
  .company-hero .hero-title {
    font-size: 36px;
  }

  .company-hero .hero-desc {
    font-size: 18px;
  }

  .intro-split {
    gap: 40px;
  }

  .company-logo {
    flex: 0 0 280px;
  }

  .company-title {
    font-size: 36px;
  }

  /* Service – catering process timeline */
  .c-process-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .c-step {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 160px;
  }

  /* FAQ */
  .faq-title {
    font-size: 36px;
  }

  .faq-subtitle {
    font-size: 18px;
  }

  .faq-question p {
    font-size: 18px;
  }

  /* Contact */
  .contact-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}

/* ---------- MOBILE (max-width: 768px) ---------- */
@media (max-width: 768px) {

  /* ===== Global Typography ===== */
  .section-title {
    font-size: 30px !important;
    margin-bottom: 20px;
  }

  .section-desc {
    font-size: 16px !important;
    margin-bottom: 30px;
  }

  .section-title-wrap {
    margin-bottom: 40px;
  }

  /* Sub-headings (h3, h4 equivalent) → 18px */
  h3,
  h4,
  .hex-title,
  .s-card h4,
  .menu-list-title,
  .q-title,
  .quality-card .q-title,
  .c-title,
  .info-box h4,
  .r-card h3,
  .gallery-header h3,
  .guarantee-text h3,
  .faq-num,
  .faq-question p,
  .menu-category-banner h4 {
    font-size: 18px !important;
  }

  /* Body text → 14~16px */
  p,
  .hex-desc,
  .stat-text,
  .quality-card p,
  .s-card p,
  .company-desc,
  .company-desc p,
  .campaign-item .c-text p,
  .info-box p,
  .r-card p,
  .check-list li,
  .desc-text,
  .faq-subtitle,
  .answer-inner p,
  .menu-category-banner p,
  .menu-list-desc,
  .form-notice p,
  .contact-form label,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 14px !important;
  }

  /* ===== Main Page - Hero ===== */
  .main-hero-v2 {
    padding: 60px 0;
  }

  .main-hero-v2 .hero-subtext {
    font-size: 14px !important;
  }

  .main-hero-v2 .hero-title {
    font-size: 30px !important;
    margin-bottom: 20px;
  }

  .main-hero-v2 .hero-title .bg-white-t {
    padding: 4px 10px 0px;
  }

  .main-hero-v2 .hero-divider {
    height: 40px;
    margin: 0 auto 20px;
  }

  .main-hero-v2 .hero-desc {
    font-size: 14px !important;
  }

  /* ===== Main Page - Sections ===== */
  .video-dual-container {
    flex-direction: column;
  }

  .video-single-container img {
    max-height: 280px;
  }

  /* Quality v2 */
  .quality-grid-v2 {
    flex-direction: column;
    gap: 30px;
  }

  .quality-card .thumb {
    height: 220px;
  }

  .quality-card.type-left .thumb,
  .quality-card.type-right .thumb {
    border-radius: 12px;
  }

  /* Stats */
  .stats-circles-wrap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .circle.orange-gradient {
    width: 200px;
    height: 200px;
  }

  .circle.orange-gradient h3 {
    font-size: 26px;
  }

  .circle.orange-gradient h3 span {
    font-size: 26px;
  }

  .circle.orange-gradient span {
    font-size: 14px;
  }

  /* Safety */
  .safety-grid-3col {
    grid-template-columns: 1fr;
  }

  .s-card {
    min-height: 200px;
    padding: 30px 20px;
  }

  /* Sanitary Hex Grid – vertical stack for mobile */
  .sanitary-hex-grid {
    flex-direction: column;
    align-items: center;
    transform: none;
    margin-bottom: 0;
  }

  .hex-wrapper {
    margin: 0 0 130px !important;
  }

  .hex-wrapper:nth-child(odd),
  .hex-wrapper:nth-child(even) {
    margin-top: 0;
  }

  .hex-wrapper:nth-child(odd) .hex-text,
  .hex-wrapper:nth-child(even) .hex-text {
    position: absolute;
    top: 100%;
    bottom: auto;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .main-sanitary-section-v2 .inner {
    padding-bottom: 80px;
  }

  /* ===== Company Page ===== */
  .company-hero .hero-title {
    font-size: 26px !important;
  }

  .company-hero .hero-divider {
    height: 40px;
  }

  .company-hero .hero-desc {
    font-size: 14px !important;
  }

  .intro-split {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .company-logo {
    flex: auto;
    width: 200px;
    margin: 0 auto;
  }

  .company-title {
    font-size: 26px !important;
  }

  .company-desc {
    font-size: 14px !important;
  }

  .company-desc strong {
    font-size: 16px;
  }

  .company-desc b {
    font-size: 16px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card .v-head h3 {
    font-size: 28px;
  }

  .value-card .v-img img {
    height: 180px;
  }

  .value-card .v-desc {
    font-size: 14px;
    padding: 20px;
  }

  .campaign-list {
    gap: 50px;
  }

  .campaign-item,
  .campaign-item.reverse {
    flex-direction: column;
    gap: 20px;
  }

  .campaign-item.reverse .c-text {
    text-align: left;
  }

  .campaign-item .c-title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .company-partner {
    padding: 40px 0 60px;
  }

  .partner-slider-wrap {
    margin-top: 30px;
  }

  .partner-track {
    gap: 8px;
    padding-right: 8px;
  }

  .partner-logo {
    width: 160px;
    height: 50px;
    border-radius: 6px;
  }

  /* ===== Service Page ===== */
  .service-title {
    font-size: 30px !important;
  }

  .service-tabs .tab-btn {
    font-size: 14px;
    padding: 14px 0;
  }

  .tab-hero-text h3 {
    font-size: 22px !important;
  }

  .tab-hero-text {
    margin-bottom: 40px;
  }

  .stats-banner {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
  }

  .stat-box {
    padding: 24px 0;
  }

  .stat-box strong {
    font-size: 20px;
  }

  .event-banner-img {
    height: 180px;
    margin-bottom: 60px;
  }

  .overlay-text p {
    font-size: 18px !important;
  }

  .overlay-text h4 {
    font-size: 20px !important;
  }

  .event-process-text {
    margin-bottom: 60px;
  }

  .event-process-text p {
    font-size: 16px !important;
  }

  .divider-line {
    height: 40px;
    margin: 20px auto;
  }

  .service-guarantee {
    padding: 50px 20px;
    margin-bottom: 60px;
  }

  .service-guarantee::before {
    font-size: 60px;
  }

  .guarantee-text h3 {
    font-size: 22px !important;
    margin-bottom: 30px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .trophy-badge img {
    width: 80%;
    max-width: 250px;
  }

  /* Gallery */
  .gallery-header {
    margin-bottom: 30px;
  }

  .gallery-header h3 {
    font-size: 24px !important;
    margin-bottom: 16px;
  }

  .main-image {
    flex: 0 0 85%;
    margin: 0 10px;
    height: 300px;
  }

  .gallery-thumbs .swiper-slide {
    height: 70px;
  }

  .btn-more-event {
    font-size: 14px;
    padding: 12px 24px;
  }

  /* Catering tab */
  .catering-inner .gallery-header h3 {
    font-size: 30px !important;
  }

  .catering-inner .gallery-header p {
    font-size: 16px !important;
  }

  /* Gallery Slider Arrow Fix */
  .slider-arrow {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .slider-arrow.prev::after {
    top: 12px;
    left: 14px;
    width: 8px;
    height: 8px;
  }

  .slider-arrow.next::after {
    top: 12px;
    right: 14px;
    width: 8px;
    height: 8px;
  }

  /* Catering tab styles */

  .info-cards {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .info-box {
    padding: 24px;
  }

  /* Catering process – vertical for mobile */
  .c-process-wrap {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .c-step,
  .c-step.up,
  .c-step.down {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 400px;
    grid-template-rows: none;
    grid-template-columns: none;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
  }

  .c-step.up .c-icon,
  .c-step.down .c-icon {
    margin: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
  }

  .c-step.up .c-text,
  .c-step.down .c-text {
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .c-step .c-mid {
    display: none;
  }

  .c-text h5 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #111;
    order: 1;
  }

  .c-text p {
    font-size: 13px !important;
    margin-bottom: 0;
    color: #666;
    line-height: 1.5;
    order: 2;
  }

  /* Branding section */
  .branding-section {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .branding-img {
    height: 220px;
  }

  .branding-img p {
    font-size: 14px !important;
  }

  /* Theme circles */
  .theme-circles-wrap {
    margin-top: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .circle-group {
    flex-direction: column;
    gap: 20px;
  }

  .theme-circles {
    flex-direction: column;
  }

  .theme-circles .circle {
    width: 240px;
    height: 240px;
  }

  .theme-circles .circle.light {
    margin-left: 0;
    margin-top: -30px;
  }

  .theme-circles .circle strong {
    font-size: 18px;
  }

  .theme-circles .circle p {
    font-size: 14px !important;
  }

  .left-list,
  .right-list {
    text-align: center;
    font-size: 14px;
  }

  /* Rental tab */
  .rental-hero {
    margin-bottom: 60px;
    padding-top: 20px;
  }

  .rental-hero h2 {
    font-size: 26px !important;
  }

  .rental-hero p {
    font-size: 14px !important;
  }

  .rental-cards {
    flex-direction: column;
    gap: 16px;
  }

  .r-card {
    padding: 30px 24px;
  }

  .r-card h3 {
    font-size: 20px !important;
  }

  /* ===== Menu Page ===== */
  .menu-grid,
  .menu-grid.grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .menu-category-banner {
    padding: 24px 20px;
    margin-bottom: 40px;
  }

  .menu-list-wrap {
    margin-bottom: 40px;
  }

  .menu-list-wrap.split-top-line {
    padding-top: 40px;
  }

  .menu-tabs {
    margin-bottom: 40px;
  }

  /* ===== FAQ Page ===== */
  .faq-title {
    font-size: 30px !important;
    margin-bottom: 20px;
  }

  .faq-subtitle {
    font-size: 14px !important;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-num {
    font-size: 16px !important;
    margin-right: 10px;
  }

  .faq-question p {
    font-size: 16px !important;
    padding-right: 30px;
  }

  .answer-inner {
    padding: 20px;
  }

  .answer-inner p {
    font-size: 14px !important;
  }

  /* ===== Contact Page ===== */
  .contact-title {
    font-size: 30px !important;
    margin-bottom: 40px;
  }

  .contact-tabs {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
  }

  .tab-btn {
    font-size: 15px;
    padding: 14px 0;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .contact-form label {
    font-size: 16px !important;
    margin-bottom: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 14px !important;
    padding: 14px 16px;
  }

  .contact-form textarea {
    height: 140px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 16px 0;
    margin-top: 24px;
  }

  /* ===== Footer ===== */
  .footer {
    padding: 40px 0;
  }

  .footer .inner {
    flex-direction: column;
    text-align: center;
  }

  .footer img {
    width: 200px;
    margin: 0 auto;
  }

  .footer p {
    font-size: 13px;
    margin: 20px 0;
  }

  .footer .footer-right {
    font-size: 12px;
  }
}



/* =========================================================
   Intro Video Overlay (index.html)
   ========================================================= */
#intro-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s ease-in-out, visibility 1s;
  overflow: hidden;
}

#intro-sound-toggle {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

#intro-sound-toggle:hover {
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  #intro-sound-toggle {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  #intro-sound-toggle svg {
    width: 20px;
    height: 20px;
  }
}

#intro-video-wrap.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-click-guide {
  position: absolute;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  animation: blink 1.5s infinite;
  pointer-events: none;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

#intro-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

#intro-video.playing {
  opacity: 1;
}

#intro-skip-btn {
  position: absolute;
  bottom: 8%;
  right: 5%;
  z-index: 10000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s;
}

#intro-skip-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

@media (max-width: 1024px) {
  #intro-video-wrap {
    display: none !important;
  }
}

/* =========================================================
   Quick Menu (Floating)
   ========================================================= */
.quick-menu {
  position: fixed;
  bottom: 50px;
  right: 40px;
  background: #fff;
  padding: 20px 6px 6px;
  border: 1px solid #ddd;
  border-radius: 10px;
  z-index: 1000;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.quick-menu li {
  text-align: center;
  margin-bottom: 20px;
}

.quick-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.quick-menu a:hover {
  opacity: 0.7;
}

.quick-menu img {
  width: 34px;
  height: auto;
  object-fit: contain;
}

/* TOP scroll arrow inside the orange button */
.quick-menu .btn-top {
  width: 100%;
  height: 100%;
  background: #f77e49;
  color: #fff;
  padding: 20px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.quick-menu .btn-top:hover {
  background: #e16b39;
}

@media (max-width: 768px) {
  .quick-menu {
    bottom: 20px;
    right: 16px;
    padding: 20px 6px 6px;
  }

  .quick-menu li {
    margin-bottom: 20px;
  }

  .quick-menu img {
    width: 30px;
  }

  .quick-menu a {
    font-size: 12px;
    gap: 6px;
  }

  .quick-menu .btn-top {
    padding: 15px;
    font-size: 12px;
    width: 100%;
  }
}