/* ===================================================
   SMART RACK - Main Stylesheet
   Brand: Navy Blue + Orange + White
   =================================================== */

:root {
  --navy: #0a1628;
  --navy2: #0f2040;
  --blue: #1a3a6b;
  --blue-light: #1e4d9b;
  --orange: #f47c20;
  --orange2: #e86c10;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

/* =========== RESET & BASE =========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--gray-900);
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; }

/* =========== CONTAINER =========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========== SECTION BASE =========== */
.section {
  padding: 100px 0;
}
.section-label {
  display: inline-block;
  font-family: 'Oswald', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 60px;
}
.eng { font-family: 'Oswald', sans-serif; }
.eng-small {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75em;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 1px;
  display: block;
  margin-top: 3px;
}
.accent { color: var(--orange); }

/* =========== HEADER =========== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(244,124,32,0.3));
}
.gnb { margin-left: auto; }
.gnb ul {
  display: flex;
  gap: 4px;
}
.gnb ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.gnb ul li a:hover {
  color: var(--white);
  background: rgba(244,124,32,0.15);
}
.header-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}

/* =========== BUTTONS =========== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,124,32,0.4); }

.btn-kakao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #FEE500;
  color: #191919;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-kakao:hover { background: #f0d900; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(254,229,0,0.4); }

.btn-kakao-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #FEE500;
  color: #191919;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-kakao-hero:hover { background: #f0d900; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,229,0,0.45); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-naver-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #03C75A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-naver-map:hover { background: #02a84b; transform: translateY(-2px); }

/* Header specific buttons */
.header-kakao {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
}
.header-call {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 6px;
}

/* =========== HERO =========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.65) 50%,
    rgba(10,22,40,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  width: 100%;
}

/* 히어로 로고 - 크고 선명하게 */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.hero-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.15) drop-shadow(0 4px 20px rgba(244,124,32,0.5)) drop-shadow(0 0 40px rgba(30,77,155,0.4));
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: brightness(1.15) drop-shadow(0 4px 20px rgba(244,124,32,0.5)) drop-shadow(0 0 40px rgba(30,77,155,0.4)); }
  50% { filter: brightness(1.25) drop-shadow(0 4px 30px rgba(244,124,32,0.7)) drop-shadow(0 0 60px rgba(30,77,155,0.6)); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(244,124,32,0.4);
  border-radius: 100px;
  background: rgba(244,124,32,0.08);
}
.badge-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: clamp(30px, 5.5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-sub .eng {
  font-family: 'Oswald', sans-serif;
  color: var(--orange);
  letter-spacing: 2px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btns .btn-primary,
.hero-btns .btn-kakao-hero,
.hero-btns .btn-outline {
  min-width: 180px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--orange);
  border-color: var(--orange);
  width: 28px;
  border-radius: 5px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =========== STATS BAR =========== */
.stats-bar {
  background: var(--navy);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 40px;
}
.stat-num {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* =========== ABOUT =========== */
.about {
  background: var(--gray-100);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--orange);
}
.about-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--orange);
}
.about-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.about-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* =========== SERVICES =========== */
.services {
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  background: var(--navy);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover h3 { color: #fff; }
.service-card:hover .eng-small { color: rgba(255,255,255,0.5); }
.service-card:hover p { color: rgba(255,255,255,0.7); }
.service-card:hover .service-icon { background: rgba(244,124,32,0.15); }
.service-num {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 52px;
  color: rgba(0,0,0,0.05);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  transition: var(--transition);
}
.service-card:hover .service-num { color: rgba(255,255,255,0.04); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(10,22,40,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: var(--transition);
}
.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  transition: var(--transition);
}

/* =========== GALLERY =========== */
.gallery {
  background: var(--navy);
}
.gallery .section-title { color: #fff; }
.gallery .section-desc { color: rgba(255,255,255,0.6); }
.gallery-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  background: transparent;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info {
  padding: 16px;
  width: 100%;
}
.gallery-cat {
  display: inline-block;
  padding: 3px 10px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 6px;
}
.gallery-info h4 {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}
.gallery-view {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
}
.gallery-item.hidden { display: none; }

/* =========== LIGHTBOX =========== */
.lightbox-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox-bg.active { opacity: 1; pointer-events: all; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lb-inner {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.lb-inner img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
}
.lb-caption {
  margin-top: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--orange); }

/* =========== WHY US =========== */
.why { background: var(--gray-100); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.accent-card {
  background: var(--navy);
  color: #fff;
}
.accent-card h3 { color: #fff; }
.accent-card p { color: rgba(255,255,255,0.7); }
.why-big-num {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
.why-cta {
  text-align: center;
}
.why-cta-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.why-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========== PROCESS =========== */
.process {
  background: var(--navy2);
}
.process .section-title { color: #fff; }
.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  width: 220px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.step:hover {
  background: rgba(244,124,32,0.12);
  border-color: rgba(244,124,32,0.3);
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 42px;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 14px;
}
.step h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.step p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.step-arrow {
  font-size: 20px;
  color: rgba(255,255,255,0.25);
  padding: 0 16px;
}

/* =========== CTA BAND =========== */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #e05c00 100%);
  padding: 48px 24px;
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta-band-big {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #fff;
}
.cta-band-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.cta-band-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-btn {
  padding: 14px 28px;
  font-size: 15px;
}
.cta-band .btn-primary {
  background: var(--navy);
  color: #fff;
}
.cta-band .btn-primary:hover { background: var(--navy2); }

/* =========== MAP SECTION =========== */
.map-section { background: #fff; }
.map-new-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 0;
  align-items: stretch;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
/* 왼쪽 사진 영역 */
.map-photo-side {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.map-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  gap: 8px;
}
.map-photo-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.map-photo-addr {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.map-open-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-kakao-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: #FEE500;
  color: #191919;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-kakao-map:hover { background: #f0d900; transform: translateY(-2px); }
/* 오른쪽 정보 카드 */
.map-info-side {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--gray-100);
}
.map-logo-wrap img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.map-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-details li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.map-details li i {
  color: var(--orange);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
}
.map-details li strong {
  font-size: 12px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.map-details li span {
  font-size: 15px;
  color: var(--gray-900);
  font-weight: 500;
}
.map-details li span a {
  color: var(--blue-light);
  font-weight: 600;
}
.map-details li span a:hover { color: var(--orange); }
.map-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-btns .btn-naver-map,
.map-btns .btn-kakao {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}
@media (max-width: 900px) {
  .map-new-wrap { grid-template-columns: 1fr; }
  .map-photo-side { min-height: 280px; }
}
@media (max-width: 480px) {
  .map-photo-side { min-height: 220px; }
  .map-info-side { padding: 24px 20px; }
}


}
.map-details li i {
  color: var(--orange);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
}
.map-details li strong {
  font-size: 12px;
  color: var(--gray-500);
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.map-details li span {
  font-size: 15px;
  color: var(--gray-900);
  font-weight: 500;
}
.map-details li span a {
  color: var(--blue-light);
  font-weight: 600;
}
.map-details li span a:hover { color: var(--orange); }
.map-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.map-btns .btn-naver-map,
.map-btns .btn-kakao {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

/* =========== CONTACT =========== */
.contact {
  background: var(--gray-100);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-cta-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}
.contact-left h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.4;
}
.contact-left p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.8;
}
.contact-quick-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-btn {
  padding: 18px 24px;
  font-size: 15px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-btn > i {
  font-size: 24px;
}
.btn-label {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  font-weight: 400;
}
.btn-num {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

/* FORM */
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-200);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.req { color: var(--orange); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--gray-100);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(30,77,155,0.1);
}
.form-group textarea { resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans KR', sans-serif;
}
.btn-submit:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,58,107,0.3);
}

/* =========== FOOTER =========== */
.footer {
  background: var(--navy);
}
.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(1.1);
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-desc .eng {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: 1px;
}
.footer-sns {
  display: flex;
  gap: 10px;
}
.sns-kakao, .sns-blog {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  color: #fff;
}
.sns-kakao { background: #FEE500; color: #191919; }
.sns-blog { background: #03C75A; }
.sns-kakao:hover { transform: translateY(-3px); }
.sns-blog:hover { transform: translateY(-3px); }
.footer-menu h4,
.footer-contact h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-menu ul li {
  margin-bottom: 10px;
}
.footer-menu ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-menu ul li a:hover { color: var(--orange); }
.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact p i { color: var(--orange); margin-top: 3px; }
.footer-contact p a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact p a:hover { color: var(--orange); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

/* =========== FLOATING =========== */
.floating-wrap {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.floating-wrap.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  font-size: 20px;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  min-width: 60px;
  text-align: center;
}
.float-label {
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.float-kakao { background: #FEE500; color: #191919; }
.float-kakao .float-label { color: #191919; }
.float-call { background: var(--orange); }
.float-top { background: var(--navy); font-size: 16px; }
.float-btn:hover { transform: translateY(-4px) scale(1.05); }

/* =========== TOAST =========== */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =========== SCROLL REVEAL =========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========== MOBILE NAV OVERLAY =========== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.97);
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.nav-overlay ul li a {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  padding: 12px 32px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-overlay ul li a:hover {
  color: var(--orange);
  background: rgba(244,124,32,0.1);
}
.nav-overlay-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  width: 240px;
  margin-left: auto;
  margin-right: auto;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { gap: 16px; }
  .step { width: 180px; padding: 28px 20px; }
}

@media (max-width: 900px) {
  .gnb, .header-cta { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 66px; }
  .logo-img { height: 44px; }
  .hero-logo { height: 90px; }
  .map-new-wrap { grid-template-columns: 1fr; }
  .map-photo-side { min-height: 280px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .stat-item { padding: 10px 20px; }
  .stat-num { font-size: 26px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { width: 100%; max-width: 300px; justify-content: center; }
  .process-steps { flex-direction: column; align-items: stretch; }
  .step { width: 100%; }
  .step-arrow { display: none; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 0; padding: 20px 16px; }
  .stat-sep { display: none; }
  .stat-item { padding: 10px 16px; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .hero-logo { height: 72px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 11px; letter-spacing: 2px; }
  .floating-wrap { bottom: 20px; right: 14px; gap: 8px; }
  .float-btn { min-width: 52px; padding: 10px; font-size: 17px; }
}
