/* ===== 폰트 (font 폴더) ===== */
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-4Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-5Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Paperlogy';
  src: url('font/Paperlogy-7Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Paperlogy', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
}

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

/* ===== 헤더 (PC / 모바일 공통) ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: block;
  line-height: 0;
}

.logo {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* 연락처 + 전화 이모티콘 - 깜빡임 */
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #0d47a1;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  box-shadow: 0 2px 12px rgba(13, 71, 161, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-phone:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.3);
}

.phone-icon {
  font-size: 1.3rem;
  animation: phone-blink 1.2s ease-in-out infinite;
}

.phone-number {
  font-weight: 700;
  animation: text-glow 1.2s ease-in-out infinite;
}

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

@keyframes text-glow {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px rgba(13, 71, 161, 0.4); }
  50% { opacity: 0.9; text-shadow: 0 0 16px rgba(13, 71, 161, 0.6); }
}

/* 모바일 헤더 */
@media (max-width: 768px) {
  .header-inner {
    padding: 10px 16px;
  }
  .logo {
    height: 52px;
  }
  .contact-phone {
    font-size: 0.95rem;
    padding: 8px 12px;
    gap: 6px;
  }
  .phone-icon {
    font-size: 1.1rem;
  }
}

/* ===== 이미지 섹션 1~7: 한 섹션 = 이미지 한 장, 잘리지 않음, 한 장처럼 이어짐 ===== */
.gallery-wrap {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  padding-top: 92px; /* PC: 고정 헤더 높이만큼 여백 → 첫 히어로 이미지 전체 노출 */
}

.img-section {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  display: block;
}

.img-section + .img-section {
  margin-top: 0;
}

.section-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  object-fit: contain;
}

/* PC: pc 이미지만 표시 */
.img-mob {
  display: none !important;
}

.img-pc {
  display: block !important;
}

/* 모바일: mob 이미지만 표시 + 히어로 상단 여백 */
@media (max-width: 768px) {
  .gallery-wrap {
    padding-top: 76px; /* 모바일 헤더 높이만큼 여백 */
  }
  .img-pc {
    display: none !important;
  }
  .img-mob {
    display: block !important;
  }
}

/* ===== 비용 섹션 ===== */
.price-section {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f8fafc 0%, #e8f4fd 100%);
}

.price-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  color: #0d47a1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.price-sub {
  text-align: center;
  color: #546e7a;
  font-size: 1.25rem;
  margin-bottom: 56px;
}

/* 항목별 가로 카드 */
.price-cards {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  gap: 24px;
}

.price-card .card-label {
  color: #37474f;
  font-size: 1.25rem;
  font-weight: 500;
}

.price-card .card-price {
  font-weight: 700;
  color: #0d47a1;
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* 문의 카드: 텍스트 + 문의(버튼) */
.price-card--inquiry .card-label {
  flex: 1;
}

.btn-inquiry-card {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(13, 71, 161, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.btn-inquiry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 71, 161, 0.4);
}

@media (max-width: 768px) {
  .price-card {
    padding: 20px 24px;
    gap: 16px;
  }
  .price-card .card-label {
    font-size: 1.1rem;
  }
  .price-card .card-price {
    font-size: 1.2rem;
  }
  .btn-inquiry-card {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* ===== 문의 폼 섹션 ===== */
.form-section {
  padding: 64px 0 80px;
  background: #fff;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.inquiry-form {
  max-width: 480px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #37474f;
}

.required {
  color: #c62828;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd8dc;
  border-radius: 10px;
  font-family: 'Paperlogy', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0d47a1;
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

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

.btn-submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: 'Paperlogy', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.35);
}

/* ===== 푸터 ===== */
.footer {
  padding: 24px 0;
  background: #1a1a1a;
  color: #b0bec5;
  text-align: center;
}

.footer-company {
  font-size: 0.9rem;
}
