/* 현대W&P 웹사이트 CSS - 리팩토링된 버전 */

/* ===== CSS 변수 ===== */
:root {
  --primary-color: #0066cc;
  --secondary-color: #ff6600;
  --accent-color: #00a3c4;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===== 기본 스타일 ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


/* 헤더 높이만큼 스크롤 여유 공간 확보 */
input, select, textarea {
  scroll-margin-top: 150px; /* 헤더 높이 + 충분한 여유 공간 */
  /* 입력 필드에서는 텍스트 선택 허용 */
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

*,
*::before,
*::after {
  max-width: 100%;
}

html {
  overflow-x: hidden;
  /* 터치 확대 방지 */
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  font-family: 'Noto Sans KR', 'Inter', 'Malgun Gothic', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  max-width: 100%;
  /* 터치 확대 방지 */
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 헤더 스타일 ===== */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.brand {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

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

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
  padding: 5px;
  transition: color 0.3s ease;
}

/* ===== 버튼 스타일 ===== */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-primary:hover {
  background: #0052a3;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

/* ===== 메인 배너 스타일 - 무한회전 슬라이더 ===== */
:root {
  --slides-per-view: 4;
}

.main-banner {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 900px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

/* 캐러셀 컨테이너 */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

/* 뷰포트 */
.carousel__viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* 트랙 */
.carousel__track {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  height: 100%;
}

/* 슬라이드 */
.carousel__slide {
  flex: 0 0 calc(100% / var(--slides-per-view));
  position: relative;
  user-select: none;
  height: 100%;
}

.main-banner--swiper {
  width: 100%;
  height: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* 슬라이드 이미지 */
.carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 캐러셀 네비게이션 버튼 */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  user-select: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: bold;
}

.carousel__btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  color: white;
}

.carousel__btn--prev {
  left: 20px;
}

.carousel__btn--next {
  right: 20px;
}

/* 캐러셀 도트 */
.carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.carousel__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel__dots button[aria-selected="true"] {
  background: var(--primary-color);
  transform: scale(1.2);
}

.carousel__dots button:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* 반응형 다중뷰 설정 */
@media (min-width: 1920px) {
  :root { --slides-per-view: 4; }
}

@media (min-width: 1600px) and (max-width: 1919px) {
  :root { --slides-per-view: 3; }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  :root { --slides-per-view: 2; }
}

@media (max-width: 1199px) {
  :root { --slides-per-view: 1; }
}

/* ===== 페이지 공통 스타일 - 최신 트렌드 ===== */

/* 히어로 섹션 */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 섹션 공통 */
.section {
  padding: 40px 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

/* 컨테이너 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 제목 스타일 */
h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
  position: relative;
}

h2::after {
  display: none;
}

.text-center h2::after {
  display: none;
}

.text-center h2 {
  margin-bottom: 0.75rem !important;
}

h2.text-center {
  margin-bottom: 0.75rem !important;
}


/* ===== 공통 카드 스타일 ===== */
.card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #667eea;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.card p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* 서비스 피처 카드 */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  opacity: 0.9;
  margin: 0;
}


/* 시설 특징 */
.facility-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* 운영 정보 */
.operation-info {
  text-align: center;
}

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

.operation-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.operation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.operation-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.operation-item p {
  color: #64748b;
  font-size: 1.1rem;
  margin: 0;
}

.contact-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* 폼 스타일 */
.estimate-container,
.inquiry-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.estimate-form-container,
.inquiry-form-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.form-description {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.estimate-form,
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* ===== 관리자 페이지 스타일 ===== */

/* 통계 카드 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  color: white;
}

.stat-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}

.stat-content p {
  color: #718096;
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
}

/* 관리자 컨트롤 */
.admin-controls {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-group, .search-group, .date-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.date-group {
  background: #f8f9ff;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.date-input {
  padding: 0.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.date-input:focus {
  outline: none;
  border-color: #667eea;
}

.clear-btn {
  background: #718096;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.clear-btn:hover {
  background: #4a5568;
}

.filter-select, .search-input {
  padding: 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.filter-select:focus, .search-input:focus {
  outline: none;
  border-color: #667eea;
}

.search-input {
  min-width: 300px;
}

.search-btn {
  background: #667eea;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background: #5a67d8;
}

/* 관리자 테이블 */
.admin-table-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.admin-table th {
  background: #f7fafc;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: #2d3748;
  border-bottom: 2px solid #e2e8f0;
}

.admin-table td {
  text-align: center;
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.admin-table tr:hover {
  background: #f8f9ff;
}

/* 상태 배지 */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-pending {
  background: #fed7d7;
  color: #c53030;
}

.status-processing {
  background: #bee3f8;
  color: #2b6cb0;
}

.status-completed {
  background: #c6f6d5;
  color: #2f855a;
}

.status-cancelled {
  background: #e2e8f0;
  color: #4a5568;
}

/* 서비스 배지 */
.service-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  background: #edf2f7;
  color: #4a5568;
}

.service-health { background: #e6fffa; color: #234e52; }
.service-sauna { background: #fef5e7; color: #744210; }
.service-corporate { background: #e6f3ff; color: #1a365d; }
.service-school { background: #f0fff4; color: #22543d; }
.service-other { background: #f7fafc; color: #4a5568; }

/* 전화번호 링크 */
.phone-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

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

/* 버튼 스타일 */
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: #667eea;
  color: white;
}

.btn-primary:hover {
  background: #5a67d8;
  transform: translateY(-1px);
}

/* Secondary button */
.btn-secondary {
  background: #edf2f7;
  color: #2d3748;
}

.btn-secondary:hover {
  background: #e2e8f0;
}

/* 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background-color: white;
  margin: 1% auto 3%; /* 상단 여백 줄이고 하단 여백 늘림 */
  padding: 0;
  border-radius: 12px;
  width: 95%;
  max-width: 1400px;
  max-height: 92vh; /* 헤더 축소와 함께 전체 높이 약간 축소 */
  overflow-y: auto;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.modal-header {
  padding: 1rem 1.25rem; /* 헤더 높이 축소 */
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px 12px 0 0;
}

.modal-header h3 {
  margin: 0;
  color: white;
  font-size: 1.25rem; /* 제목 크기 소폭 축소 */
  font-weight: 600;
}

.close {
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.close:hover {
  color: #ff6b6b;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.modal-body {
  padding: 2rem;
  background: #fafbfc;
}

.modal-footer {
  padding: 2rem;
  border-top: 2px solid #e2e8f0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 0 0 12px 12px;
}

/* 상세 정보 그리드 */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1rem;
}

.detail-section {
  background: #f8f9ff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detail-section:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.detail-section h4 {
  margin: 0 0 1rem 0;
  color: #2d3748;
  font-size: 1.1rem;
}

.detail-section p {
  margin: 0.5rem 0;
  color: #4a5568;
  line-height: 1.5;
}

.detail-section strong {
  color: #2d3748;
  font-weight: 600;
}

/* 상태 컨트롤 */
.status-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.status-controls label {
  font-weight: 600;
  color: #2d3748;
  margin-right: 0.5rem;
}

.status-select {
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  background: white;
  min-width: 150px;
  transition: border-color 0.3s ease;
}

.status-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.admin-notes {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.admin-notes label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
}

.admin-notes textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.admin-notes textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .admin-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group, .search-group {
    flex-direction: column;
    align-items: stretch;

  }
  
  .search-input {
    min-width: auto;
  }
  
  .admin-table-container {
    overflow-x: auto;
  }
  
  .admin-table {
    min-width: 600px;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 98%;
    margin: 1% auto;
    max-width: none;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .status-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .status-controls label {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.btn-extra-large {
  padding: 2rem 4rem;
  font-size: 2.7rem;
  font-weight: 800;
  margin-top: 1rem;
  min-width: 400px;
  text-align: center;
  display: inline-block;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
}

.btn-extra-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-extra-large:hover::before {
  left: 100%;
}

.btn-extra-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
  background: #0052a3;
  text-decoration: none;
}

.form-note {
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  margin-top: 1rem;
}

/* 체크박스 스타일 */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

/* 정보 카드 */
.estimate-info,
.inquiry-info {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem;
  border-radius: 20px;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.estimate-info h3,
.inquiry-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.info-card {
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
  color: white;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1e293b;
}

.info-content p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

/* 가격 가이드 */
.pricing-guide {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.pricing-guide h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.pricing-guide ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-guide li {
  padding: 0.5rem 0;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-guide li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
}


/* 서비스 시간 */
.service-hours {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.service-hours h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.service-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-hours li {
  padding: 0.5rem 0;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}

.service-hours li:last-child {
  border-bottom: none;
}

.service-hours strong {
  color: #1e293b;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 25px;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.faq-item p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* 연락처 카드 */
.contact-container {
  margin-top: 3rem;
}

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

.contact-card {
  padding: 2.5rem 2rem;
}

.contact-card .card-icon {
  font-size: 3.5rem;
}

.contact-number,
.contact-email {
  font-size: 1.5rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.contact-address {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.contact-detail {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.contact-hours {
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* 강조 스타일 */
.operation-item.highlight,
.contact-card.highlight {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(102, 126, 234, 0.3);
}

.operation-item.highlight h3,
.contact-card.highlight h3 {
  color: white;
}

.operation-item.highlight p,
.contact-card.highlight .contact-hours {
  color: rgba(255, 255, 255, 0.9);
}

.operation-item.highlight strong,
.contact-card.highlight strong {
  color: white;
  font-size: 1.2em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.highlight-text {
  color: #667eea;
  font-weight: 700;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Footer 강조 스타일 */
.footer-contact .contact-item.highlight {
  background: rgba(102, 126, 234, 0.1);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin: 0.25rem 0;
}

.footer-contact .contact-item.highlight span {
  color: #667eea;
  font-weight: 600;
}

.footer-contact .contact-item.highlight strong {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.footer-hours p:first-child strong {
  color: #667eea;
  font-weight: 700;
  font-size: 1.1em;
}

/* ===== 반응형 스타일 ===== */

/* 태블릿 */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  
  .estimate-container,
  .inquiry-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .estimate-info,
  .inquiry-info {
    position: static;
  }
}

/* 모바일 */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 30px 0;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  
  .service-features,
  .facility-features {
    grid-template-columns: 1fr;
  }

  
  .contact-grid,
  .gallery-grid,
  .operation-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .estimate-form-container,
  .inquiry-form-container {
    padding: 2rem;
  }
  
  .card {
    padding: 1.5rem;
  }
}

/* 작은 모바일 */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .estimate-form-container,
  .inquiry-form-container {
    padding: 1.5rem;
  }
  
  .card {
    padding: 1.5rem 1rem;
  }
  
  .contact-number,
  .contact-email {
    font-size: 1.25rem;
  }
  
  .operation-item.highlight,
  .contact-card.highlight {
    transform: none;
    margin-bottom: 0rem;
  }
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding-top: 80px;
}

.banner-content h1 {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 30px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  letter-spacing: -1px;
}

.banner-content p {
  font-size: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
  font-weight: 500;
  line-height: 1.4;
}

.banner-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.banner-buttons .btn {
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 35px;
  min-width: 200px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-buttons .btn-primary {
  background: linear-gradient(135deg, #ff6600, #ff8833);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.6), 0 2px 8px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.banner-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #e55a00, #ff7722);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.banner-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid rgba(255, 255, 255, 0.8);
  color: #333;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.banner-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  color: #333;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: white;
}

/* 버튼 포커스 상태 (접근성 향상) */
.banner-buttons .btn:focus {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
  transform: translateY(-1px);
}

.banner-buttons .btn:active {
  transform: translateY(0px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Swiper 네비게이션 버튼 - 최신 트렌드 */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  transition: all 0.3s ease;
}

.swiper-button-prev::before {
  border-width: 8px 12px 8px 0;
  border-color: transparent rgba(255, 255, 255, 0.8) transparent transparent;
  margin-left: -3px;
}

.swiper-button-next::before {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
  margin-right: -3px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.swiper-button-prev:hover::before {
  border-color: transparent white transparent transparent;
}

.swiper-button-next:hover::before {
  border-color: transparent transparent transparent white;
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next {
  right: 20px;
}

/* Swiper 페이지네이션 */
.main-swiper--btn_wrapper {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.swiper-pagination {
  display: flex;
  gap: 10px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}

.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* 자동재생 버튼 */
.autoplay-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 14px;
}

.autoplay-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

.autoplay-btn.playing .pause-icon {
  display: block;
}

.autoplay-btn.playing .play-icon {
  display: none;
}

.autoplay-btn:not(.playing) .pause-icon {
  display: none;
}

.autoplay-btn:not(.playing) .play-icon {
  display: block;
}

/* ===== 퀵 메뉴 스타일 ===== */
.main-quick {
  background: var(--bg-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.quick-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.quick-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  padding: 30px 20px;
  border-radius: 15px;
  background: var(--bg-light);
}

.quick-item a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.quick-icon {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}

.quick-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.quick-desc {
  font-size: 14px;
  color: var(--text-light);
}




/* ===== 섹션 스타일 ===== */
section {
  padding: 40px 0;
}


/* ===== 서비스 메뉴 스타일 ===== */
/* 견적 문의 CTA */
.estimate-cta-content {
  text-align: center;
  padding: 0;
}

.estimate-cta-content h2 {
  margin-bottom: 1rem;
  color: #1e293b;
}

.estimate-cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #64748b;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.service-menu {
  background: var(--bg-light);
  padding: 40px 0;
}

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

.service-item {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.service-item h3 {
  padding: 20px 20px 10px;
  font-size: 20px;
}

.service-item p {
  padding: 0 20px 20px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ===== 견적 문의 섹션 스타일 ===== */
.estimate-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 40px 0;
}

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

.estimate-card {
  padding: 30px 20px;
}

.estimate-card .card-icon {
  font-size: 3rem;
}

.estimate-card p {
  margin-bottom: 1rem;
}

.estimate-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.estimate-actions {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.estimate-actions .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
}

/* ===== 섹션 부제목 스타일 ===== */
.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* ===== 서비스 특징 하이라이트 ===== */
.feature-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== 프로세스 스텝 아이콘 ===== */
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* ===== 특수 서비스 배지 ===== */
.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ===== About 페이지 스타일 ===== */
.about-intro {
  margin-bottom: 3rem;
}

.about-intro .lead {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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



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

.vision-card {
  padding: 2.5rem;
}

.vision-card .card-icon {
  font-size: 3.5rem;
  width: 90px;
  height: 90px;
  border-radius: 25px;
}

.vision-card h3 {
  font-size: 1.6rem;
}

.vision-card p {
  font-size: 1.1rem;
}

/* ===== 간단한 프로세스 스타일 ===== */
.simple-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.process-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 0.5rem;
}

.process-arrow {
  font-size: 2.5rem;
  color: #667eea;
  font-weight: bold;
  margin: 0 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}



/* ===== 회사소개 섹션 스타일 ===== */
.company-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
}

.company-section h2 {
  color: white;
}

.company-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.company-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: white;
}

.company-text p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.company-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature img {
  width: 24px;
  height: 24px;
}

.company-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.company-actions .btn {
  padding: 15px 25px;
  font-size: 16px;
}

.company-actions .btn-primary {
  background: white;
  color: var(--primary-color);
}

.company-actions .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.company-actions .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
}

/* ===== 비즈니스 섹션 스타일 ===== */
.business-section {
  background: var(--bg-white);
}

.business-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}

.business-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.business-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.business-features {
  list-style: none;
  margin-bottom: 30px;
}

.business-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
}

.business-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.business-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.business-actions .btn {
  padding: 15px 25px;
  font-size: 16px;
}



/* ===== 푸터 스타일 ===== */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: white;
  margin-top: 0;
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

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

.footer-brand {
  max-width: 400px;
}

.footer-logo h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 8px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
}

.footer-description {
  margin-bottom: 25px;
}

.footer-description p {
  color: #bbb;
  line-height: 1.6;
  font-size: 15px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
  font-size: 15px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: white;
  transform: translateX(5px);
}

.contact-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.footer-section h4 {
  margin-bottom: 25px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 1px;
}

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

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  text-decoration: none;  /* 밑줄 제거 */
  color: inherit;         /* 부모 글자 색상 따라감 */
  
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(8px);
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 10px;
}

.footer-hours {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #444;
}

.footer-hours h5 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}

.footer-hours p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-bottom {
  background: #0f0f0f;
  padding: 25px 0;
  border-top: 1px solid #444;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  color: #999;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

.footer-links-bottom {
  display: flex;
  gap: 25px;
}

.footer-link {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== 반응형 디자인 ===== */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow);
    z-index: 1000;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle:hover {
    color: var(--primary-color);
  }

  .main-banner {
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    width: 100%;
    max-width: 100%;
  }

  .swiper-slide {
    width: 100% !important;
  }

  .banner-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .banner-buttons .btn {
    padding: 15px 30px;
    font-size: 18px;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2) !important;
    border-width: 2px !important;
    font-weight: 700 !important;
  }

  .banner-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6600, #ff8833) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
  }

  .banner-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: #333 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) !important;
  }

  .slider-prev,
  .slider-next {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .slider-prev {
    left: 15px;
  }

  .slider-next {
    right: 15px;
  }

  /* 네비게이션 버튼 모바일 - 최신 트렌드 */
  .swiper-button-prev,
  .swiper-button-next {
    width: 45px;
    height: 45px;
  }

  .swiper-button-prev::before {
    border-width: 6px 10px 6px 0;
  }

  .swiper-button-next::before {
    border-width: 6px 0 6px 10px;
  }

  .swiper-button-prev {
    left: 15px;
  }

  .swiper-button-next {
    right: 15px;
  }


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

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

  .estimate-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .btn-extra-large {
    padding: 1.5rem 2.5rem;
    font-size: 2.1rem;
    min-width: 280px;
  }

  .simple-process {
    flex-direction: column;
    gap: 1rem;
  }

  .process-arrow {
    transform: rotate(90deg);
    font-size: 2rem;
    margin: 0.5rem 0;
  }

  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 2.5rem;
  }

  .process-text {
    font-size: 1rem;
  }

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

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




  .company-content,
  .business-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* 모바일에서 회사소개 섹션 버튼 가시성 개선 */
  .company-actions .btn {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .company-actions .btn-primary {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    text-shadow: none !important;
  }

  .company-actions .btn-primary:hover {
    background: #f8f9fa !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.3);
  }

  .company-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--primary-color) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    text-shadow: none !important;
  }

  .company-actions .btn-secondary:hover {
    background: white !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.3);
  }

  .company-text h3,
  .business-text h3 {
    font-size: 24px;
  }



  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-section h4 {
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a::before {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .footer-links a:hover::before {
    width: 20px;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-links-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* 퀵 메뉴 반응형 */
  .quick-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .quick-item a {
    padding: 20px 15px;
  }

  .quick-icon {
    font-size: 36px;
  }

  .quick-title {
    font-size: 16px;
  }


  /* 브랜드 섹션 반응형 */
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .brand-image {
    height: 250px;
  }


}

@media (max-width: 480px) {
  .main-banner {
    height: 100vh;
    min-height: 500px;
    max-height: 700px;
    width: 100%;
    max-width: 100%;
  }

  .banner-content h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .banner-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .banner-buttons .btn {
    padding: 12px 25px;
    font-size: 16px;
    min-width: 160px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3) !important;
    border-width: 2px !important;
    font-weight: 700 !important;
  }

  .banner-buttons .btn-primary {
    background: linear-gradient(135deg, #ff6600, #ff8833) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
  }

  .banner-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9) !important;
  }

  /* 작은 모바일에서 회사소개 섹션 버튼 가시성 강화 */
  .company-actions .btn {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.4), 0 1px 6px rgba(0, 0, 0, 0.3) !important;
    border-width: 2px !important;
    text-shadow: none !important;
  }

  .company-actions .btn-primary {
    background: white !important;
    color: var(--primary-color) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
  }

  .company-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.98) !important;
    color: var(--primary-color) !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
  }

  /* 네비게이션 버튼 소형 모바일 - 최신 트렌드 */
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .swiper-button-prev::before {
    border-width: 5px 8px 5px 0;
  }

  .swiper-button-next::before {
    border-width: 5px 0 5px 8px;
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-button-next {
    right: 10px;
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .service-item {
    margin: 0 10px;
  }

  section {
    padding: 50px 0;
  }

  /* 퀵 메뉴 모바일 */
  .quick-menu {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .quick-item a {
    padding: 25px 20px;
    flex-direction: row;
    text-align: left;
  }

  .quick-icon {
    font-size: 32px;
    margin-right: 20px;
    margin-bottom: 0;
  }

  .quick-title {
    font-size: 16px;
  }

  .quick-desc {
    font-size: 13px;
  }

  /* 클릭 가능한 카드 스타일 */
  .card-clickable {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
  }
  
  .card-clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: #f8f9ff;
  }

  .info-item-clickable {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .info-item-clickable:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background-color: #f8f9ff;
  }

  /* 전화번호 링크 스타일 초기화 */
  a[href^="tel:"] {
    all: unset;
    cursor: pointer;
    display: inline;
  }

  /* Footer 전화번호 링크 특별 스타일 */
  .footer-phone-link {
    color: white !important;
    text-decoration: none !important;
  }

  .footer-phone-link:hover {
    color: white !important;
    text-decoration: none !important;
  }

  .footer-phone-link:visited {
    color: white !important;
    text-decoration: none !important;
  }

  .footer-phone-link:active {
    color: white !important;
    text-decoration: none !important;
  }

  /* 웹킷 기본 링크 스타일 완전 오버라이드 */
  a:-webkit-any-link {
    color: inherit !important;
    text-decoration: none !important;
  }

  .footer-phone-link:-webkit-any-link {
    color: white !important;
    text-decoration: none !important;
  }

  /* 더 구체적인 선택자로 강제 오버라이드 */
  .footer-contact .footer-phone-link:-webkit-any-link {
    color: white !important;
    text-decoration: none !important;
  }

  /* 모든 상태에서 강제 적용 */
  .footer-phone-link,
  .footer-phone-link:link,
  .footer-phone-link:visited,
  .footer-phone-link:hover,
  .footer-phone-link:active,
  .footer-phone-link:focus {
    color: white !important;
    text-decoration: none !important;
  }

}

/* 최종 강제 오버라이드 - 파일 맨 끝에 배치 */
.footer-contact .footer-phone-link {
  color: white !important;
  text-decoration: none !important;
}

.footer-contact .footer-phone-link:-webkit-any-link {
  color: white !important;
  text-decoration: none !important;
}

/* 이미지 모달 스타일 */
.image-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-modal.show {
  opacity: 1;
}

.image-modal-content {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  padding: 20px;
  width: 90%;
  max-width: 1000px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.image-modal.show .image-modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.image-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s ease;
}

.image-modal-close:hover {
  color: #ff6b6b;
}

.image-modal-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
}

.image-modal.show .image-modal-content img {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.image-modal-content img:hover {
  transform: scale(1.02);
}

.image-modal-info {
  margin-top: 20px;
  color: #fff;
}

.image-modal-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.image-modal-info p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

/* 갤러리 아이템 호버 효과 개선 */
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

/* 애니메이션 */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }
  to { 
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .image-modal-content {
    width: 95%;
    padding: 15px;
    max-width: 95vw;
  }
  
  .image-modal-content img {
    max-height: 65vh;
    border-radius: 8px;
  }
  
  .image-modal-close {
    font-size: 32px;
    right: 15px;
    top: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-modal-info {
    margin-top: 15px;
  }
  
  .image-modal-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .image-modal-info p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .image-modal-content {
    width: 98%;
    padding: 10px;
  }
  
  .image-modal-content img {
    max-height: 60vh;
    border-radius: 6px;
  }
  
  .image-modal-close {
    font-size: 28px;
    right: 10px;
    top: 10px;
    width: 35px;
    height: 35px;
  }
  
  .image-modal-info h3 {
    font-size: 1.2rem;
  }
  
  .image-modal-info p {
    font-size: 0.9rem;
  }
}

/* 관리자 페이지 페이징 및 정렬 스타일 */
.admin-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.items-per-page,
.sort-options {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.items-per-page label,
.sort-options label {
  font-weight: 600;
  color: #495057;
  margin: 0;
}

.items-select,
.sort-select,
.sort-order-select {
  padding: 0.5rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background: white;
  font-size: 0.9rem;
  min-width: 80px;
}

.items-select:focus,
.sort-select:focus,
.sort-order-select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* 정렬 가능한 헤더 */
.sortable {
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: background-color 0.2s ease;
}

.sortable:hover {
  background-color: #f8f9fa;
}

.sort-icon {
  margin-left: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.sortable:hover .sort-icon {
  opacity: 1;
}

.sortable.active .sort-icon {
  opacity: 1;
  color: #007bff;
}

.sortable.asc .sort-icon::before {
  content: "↑";
}

.sortable.desc .sort-icon::before {
  content: "↓";
}

/* 페이징 컨테이너 */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.pagination-info {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pagination-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
  background: white;
  color: #495057;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  min-width: 40px;
}

.pagination-btn:hover:not(:disabled) {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 0.25rem;
  margin: 0 0.5rem;
}

.page-number {
  padding: 0.5rem 0.75rem;
  border: 1px solid #dee2e6;
  background: white;
  color: #495057;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  min-width: 40px;
  text-align: center;
}

.page-number:hover {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.page-number.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .admin-options {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .items-per-page,
  .sort-options {
    justify-content: space-between;
  }
  
  .pagination-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .pagination {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .page-numbers {
    margin: 0;
  }
}