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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Pretendard",
    "Noto Sans KR",
    Arial,
    sans-serif;
  background: #fff;
  color: #222;
}

/* HEADER */

.site-header {
  width: 100%;
  height: 92px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-inner {
  width: 100%;
  height: 100%;
  padding: 0 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO + COMPANY META */

.brand-area {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 54px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  height: 58px;
  flex-shrink: 0;
}

.logo-image {
  display: block;
  width: 82px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #2f3c34;
  white-space: nowrap;
}

.company-meta {
  height: 54px;
  padding-left: 24px;
  border-left: 1px solid rgba(47, 60, 52, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  color: #4f5e54;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.company-meta div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.company-meta strong {
  color: #2d8c46;
  font-weight: 800;
  letter-spacing: 0.2px;
}

/* NAV */

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

.nav-menu a {
  position: relative;
  color: #465148;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #2d8c46, #4caf63);
  transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2d8c46;
  transform: translateY(-1px);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #2d3a33;
  margin: 7px 0;
  border-radius: 999px;
}

/* MAIN HERO */

.hero {
  width: 100%;
  height: calc(100vh - 170px);
  min-height: 620px;
  margin-top: 92px;
  position: relative;
  overflow: hidden;
  background: #f3f5f4;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  filter: contrast(1.16) saturate(1.18) brightness(0.95);
  transition: opacity 1s ease, transform 5s ease;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(255, 255, 255, 0.04) 42%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

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

.hero-content {
  position: absolute;
  left: 7%;
  top: 72px;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  max-width: 760px;
  padding: 28px 34px;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(2px);
  border-left: 5px solid rgba(45, 140, 70, 0.9);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.green-line {
  display: none;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.24;
  font-weight: 850;
  color: #173524;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-shadow:
    0 2px 8px rgba(255, 255, 255, 0.72),
    0 1px 2px rgba(255, 255, 255, 0.55);
}

.hero-content p {
  font-size: 21px;
  line-height: 1.75;
  font-weight: 650;
  color: #234131;
  text-shadow:
    0 2px 8px rgba(255, 255, 255, 0.72),
    0 1px 2px rgba(255, 255, 255, 0.45);
}

/* MAIN FEATURE */

.feature-section {
  min-height: 170px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e5e5;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  border-right: 1px solid #e5e5e5;
  padding: 20px;
  transition: 0.25s ease;
}

.feature-card:hover {
  background: #fafdfb;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border: 2px solid #2d8c46;
  color: #2d8c46;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
}

.feature-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: #1f2a22;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5b655e;
}

/* COMMON */

.section-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: #2d8c46;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.sub-page {
  padding-top: 92px;
}

/* ABOUT PAGE */

.about-page {
  background: #fff;
}

.about-visual {
  position: relative;
  min-height: 430px;
  padding: 110px 0 90px;
  background:
    linear-gradient(
      120deg,
      rgba(246, 250, 247, 0.96) 0%,
      rgba(246, 250, 247, 0.78) 44%,
      rgba(246, 250, 247, 0.25) 100%
    ),
    url("../images/garage1.jpg") center/cover no-repeat;
  overflow: hidden;
}

.about-visual::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(45, 140, 70, 0.12);
}

.about-visual-text {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.about-visual h1 {
  color: #1d2f24;
  font-size: 52px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -2.4px;
  margin-bottom: 24px;
}

.about-visual p {
  color: #385044;
  font-size: 22px;
  font-weight: 700;
}

.about-intro {
  padding: 110px 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.28fr;
  gap: 56px;
  align-items: start;
}

.about-copy {
  position: relative;
}

.about-copy h2 {
  margin-bottom: 28px;
  color: #1d2f24;
  font-size: 43px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: -2px;
}

.about-copy p {
  margin-bottom: 16px;
  color: #4c5d53;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
  word-break: keep-all;
}

.about-copy .lead {
  color: #293f31;
  font-size: 20px;
  font-weight: 750;
}

.about-photo-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-photo-wrap.intro-photo-layout {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.about-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: #e9eee9;
  box-shadow: 0 22px 46px rgba(20, 40, 25, 0.16);
}

.about-photo-wrap.intro-photo-layout .main-photo,
.about-photo-wrap.intro-photo-layout .sub-photo,
.about-photo-wrap.intro-photo-layout .garage-photo,
.about-photo-wrap.intro-photo-layout .equipment-photo,
.about-photo-wrap.intro-photo-layout .check-photo {
  grid-column: auto;
  min-height: 260px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.08);
  transition: transform 0.5s ease;
}

.about-photo:hover img {
  transform: scale(1.04);
}

.about-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  color: #24442f;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.about-stats {
  padding: 54px 0;
  background: linear-gradient(90deg, #2d8c46 0%, #37a154 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}

.stat-card {
  min-height: 140px;
  padding: 28px 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 96px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.28);
}

.stat-card strong {
  color: #ffffff;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -1px;
  word-break: keep-all;
}

.certification-card strong {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -1.8px;
  white-space: nowrap;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 650;
}

.business-section {
  padding: 110px 0 120px;
  background: #f7faf8;
}

.section-title-row {
  margin-bottom: 38px;
}

.section-title-row h2 {
  margin-bottom: 14px;
  color: #1d2f24;
  font-size: 42px;
  font-weight: 850;
  letter-spacing: -1.8px;
}

.section-title-row p {
  color: #5b665f;
  font-size: 18px;
  font-weight: 500;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.business-card {
  min-height: 330px;
  padding: 0;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e2ece5;
  box-shadow: 0 14px 34px rgba(20, 40, 25, 0.07);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(20, 40, 25, 0.12);
}

.business-card-image {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #e9eee9;
}

.business-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.16) 100%
  );
  pointer-events: none;
}

.business-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.08);
  transition: transform 0.45s ease;
}

.business-card:hover .business-card-image img {
  transform: scale(1.06);
}

.business-card-content {
  padding: 26px 24px 30px;
}

.business-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #2d8c46;
  font-size: 15px;
  font-weight: 900;
}

.business-card h3 {
  margin-bottom: 14px;
  color: #1d2f24;
  font-size: 25px;
  font-weight: 850;
}

.business-card p {
  color: #526158;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
}


/* CONTACT PAGE */

.contact-page {
  background: #fff;
}

.contact-visual {
  position: relative;
  min-height: 420px;
  padding: 110px 0 88px;
  background:
    linear-gradient(
      120deg,
      rgba(246, 250, 247, 0.97) 0%,
      rgba(246, 250, 247, 0.8) 46%,
      rgba(246, 250, 247, 0.34) 100%
    ),
    url("../images/slide1.jpg") center/cover no-repeat;
  overflow: hidden;
}

.contact-visual::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(45, 140, 70, 0.12);
}

.contact-visual-text {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.contact-visual h1 {
  margin-bottom: 24px;
  color: #1d2f24;
  font-size: 52px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -2.4px;
}

.contact-visual p {
  color: #385044;
  font-size: 22px;
  font-weight: 700;
}

.contact-section {
  padding: 110px 0 120px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  align-items: stretch;
}

.contact-copy h2 {
  margin-bottom: 28px;
  color: #1d2f24;
  font-size: 43px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: -2px;
}

.contact-copy p {
  margin-bottom: 16px;
  color: #4c5d53;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
  word-break: keep-all;
}

.contact-copy .lead {
  color: #293f31;
  font-size: 20px;
  font-weight: 750;
}

.contact-guide-box {
  margin-top: 34px;
  padding: 30px 32px;
  border: 1px solid #dceae1;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(20, 40, 25, 0.07);
}

.contact-guide-box h3 {
  margin-bottom: 18px;
  color: #1d2f24;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.8px;
}

.contact-guide-box ul {
  list-style: none;
}

.contact-guide-box li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #4c5d53;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  word-break: keep-all;
}

.contact-guide-box li:last-child {
  margin-bottom: 0;
}

.contact-guide-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d8c46;
  box-shadow: 0 0 0 5px rgba(45, 140, 70, 0.11);
}

.contact-card {
  position: relative;
  top: auto;
  height: 100%;
  min-height: 100%;
  padding: 46px 38px;
  border-radius: 34px;
  background: linear-gradient(145deg, #2d8c46 0%, #37a154 100%);
  color: #fff;
  box-shadow: 0 24px 54px rgba(45, 140, 70, 0.26);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card::before,
.contact-card::after {
  display: none;
}


.contact-card > strong {
  display: block;
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.contact-card > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
  word-break: keep-all;
}

.estimate-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-bottom: 14px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #ffffff;
  color: #247d3b;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(20, 40, 25, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.estimate-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(20, 40, 25, 0.24);
}

.sub-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-bottom: 30px;
  padding: 15px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.sub-call-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.contact-info-list {
  display: grid;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-info-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
}

.contact-info-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.contact-info-list strong {
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  text-align: right;
}

.contact-process {
  padding: 0 0 110px;
  background: #f8fbf9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  min-height: 190px;
  padding: 30px 26px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #e2ece5;
  box-shadow: 0 14px 34px rgba(20, 40, 25, 0.07);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #2d8c46;
  font-size: 15px;
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 12px;
  color: #1d2f24;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.7px;
}

.process-card p {
  color: #526158;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  word-break: keep-all;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .company-meta {
    display: none;
  }

  .nav-menu {
    gap: 36px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap.intro-photo-layout {
    margin-top: 0;
  }

  .about-photo-wrap.intro-photo-layout .main-photo,
  .about-photo-wrap.intro-photo-layout .sub-photo {
    min-height: 280px;
  }

  .about-photo-wrap.intro-photo-layout .check-photo {
    min-height: 230px;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 0 35px;
  }

  .nav-menu {
    gap: 34px;
  }

  .nav-menu a {
    font-size: 17px;
  }

  .hero-content {
    left: 5%;
    top: 55px;
    max-width: 660px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 340px;
  }

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

@media (max-width: 768px) {
  .site-header {
    height: 76px;
  }

  .header-inner {
    padding: 0 18px;
  }

  .brand-area {
    height: 44px;
  }

  .logo {
    height: 44px;
    gap: 10px;
  }

  .logo-image {
    width: 58px;
    height: 42px;
  }

  .logo-text {
    font-size: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    padding: 18px 22px;
    font-size: 16px;
    border-top: 1px solid #eee;
  }

  .hero {
    height: calc(100vh - 76px);
    min-height: 560px;
    margin-top: 76px;
  }

  .hero-content {
    left: 16px;
    right: 16px;
    top: 26px;
    max-width: none;
    padding: 20px 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(1px);
    border-left-width: 4px;
    border-radius: 0 14px 14px 0;
  }

  .hero-content h1 {
    font-size: 31px;
    letter-spacing: -1.2px;
    margin-bottom: 18px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 1.7;
  }

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

  .sub-page {
    padding-top: 76px;
  }

  .section-inner {
    width: min(100% - 36px, 1280px);
  }

  .about-visual {
    min-height: 360px;
    padding: 76px 0 68px;
  }

  .about-visual h1 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .about-visual p {
    font-size: 17px;
    line-height: 1.6;
  }

  .about-intro {
    padding: 78px 0;
  }

  .about-copy h2 {
    font-size: 31px;
    letter-spacing: -1.3px;
  }

  .about-copy p {
    font-size: 16px;
  }

  .about-copy .lead {
    font-size: 17px;
  }

  .about-photo-wrap,
  .about-photo-wrap.intro-photo-layout {
    grid-template-columns: 1fr;
  }

  .about-photo,
  .about-photo-wrap.intro-photo-layout .main-photo,
  .about-photo-wrap.intro-photo-layout .sub-photo,
  .about-photo-wrap.intro-photo-layout .garage-photo,
  .about-photo-wrap.intro-photo-layout .equipment-photo,
  .about-photo-wrap.intro-photo-layout .check-photo {
    grid-column: auto;
    min-height: 280px;
    border-radius: 22px;
  }

  .about-photo figcaption {
    white-space: normal;
  }

  .about-stats {
    padding: 42px 0;
  }

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

  .stat-card {
    min-height: 120px;
    padding: 24px 14px;
  }

  .stat-card strong {
    font-size: 27px;
  }

  .certification-card strong {
    font-size: 18px;
    letter-spacing: -1px;
    white-space: normal;
  }

  .stat-card span {
    font-size: 14px;
  }

  .business-section {
    padding: 80px 0;
  }

  .section-title-row h2 {
    font-size: 32px;
  }

  .section-title-row p {
    font-size: 16px;
  }

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

  .business-card {
    min-height: auto;
  }

  .business-card-image {
    height: 220px;
  }

  .business-card-content {
    padding: 24px 22px 28px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    width: 52px;
    height: 38px;
  }

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

  .hero-content {
    left: 14px;
    right: 14px;
    top: 24px;
    padding: 18px 16px;
  }

  .hero-content h1 {
    font-size: 27px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-right: 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .business-card-image {
    height: 190px;
  }

  .about-visual h1 {
    font-size: 30px;
  }

  .about-copy h2 {
    font-size: 28px;
  }

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

  .stat-card {
    min-height: 110px;
  }

  .certification-card strong {
    font-size: 17px;
    letter-spacing: -0.8px;
    white-space: normal;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }
}

/* CONTACT RESPONSIVE OVERRIDES */

@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .contact-card {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
  }

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

@media (max-width: 768px) {
  .contact-visual {
    min-height: 360px;
    padding: 76px 0 68px;
  }

  .contact-visual h1 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .contact-visual p {
    font-size: 17px;
    line-height: 1.6;
  }

  .contact-section {
    padding: 78px 0;
  }

  .contact-copy h2 {
    font-size: 31px;
    letter-spacing: -1.3px;
  }

  .contact-copy p {
    font-size: 16px;
  }

  .contact-copy .lead {
    font-size: 17px;
  }

  .contact-guide-box {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .contact-card {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .contact-card > strong {
    font-size: 29px;
  }

  .estimate-call-btn {
    min-height: 60px;
    font-size: 18px;
  }

  .contact-info-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .contact-info-list strong {
    text-align: left;
  }

  .contact-process {
    padding: 0 0 80px;
  }

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

@media (max-width: 480px) {
  .contact-visual h1 {
    font-size: 30px;
  }

  .contact-copy h2 {
    font-size: 28px;
  }

  .contact-card > strong {
    font-size: 27px;
  }
}
/* LOCATION PAGE */

.location-page {
  background: #fff;
}

.location-visual {
  position: relative;
  min-height: 430px;
  padding: 110px 0 90px;
  background:
    linear-gradient(
      120deg,
      rgba(246, 250, 247, 0.96) 0%,
      rgba(246, 250, 247, 0.78) 44%,
      rgba(246, 250, 247, 0.25) 100%
    ),
    url("../images/slide2.jpg") center/cover no-repeat;
  overflow: hidden;
}

.location-visual-text {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.location-visual h1 {
  color: #1d2f24;
  font-size: 52px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: -2.4px;
  margin-bottom: 24px;
}

.location-visual p {
  color: #385044;
  font-size: 22px;
  font-weight: 700;
}

.location-section {
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.location-copy h2 {
  margin-bottom: 28px;
  color: #1d2f24;
  font-size: 43px;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: -2px;
  word-break: keep-all;
}

.location-copy p {
  margin-bottom: 16px;
  color: #4c5d53;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;
  word-break: keep-all;
}

.location-copy .lead {
  color: #293f31;
  font-size: 20px;
  font-weight: 750;
}

.location-info-card {
  margin-top: 34px;
  padding: 30px 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #dceae1;
  box-shadow: 0 14px 34px rgba(20, 40, 25, 0.07);
}

.location-info-card div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #edf3ef;
}

.location-info-card div:first-child {
  padding-top: 0;
}

.location-info-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.location-info-card span {
  color: #2d8c46;
  font-size: 15px;
  font-weight: 900;
}

.location-info-card strong {
  color: #1d2f24;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 850;
  word-break: keep-all;
}

.location-notice {
  margin-top: 18px;
  padding: 26px 28px;
  border-radius: 24px;
  background: #eef8f1;
  border: 1px solid rgba(45, 140, 70, 0.18);
}

.location-notice h3 {
  margin-bottom: 10px;
  color: #1d2f24;
  font-size: 22px;
  font-weight: 850;
}

.location-notice p {
  margin-bottom: 0;
  color: #4c5d53;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.simple-map-card {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #dceae1;
  box-shadow: 0 18px 42px rgba(20, 40, 25, 0.08);
}

.simple-map-title {
  margin-bottom: 20px;
}

.simple-map-title strong {
  display: block;
  margin-bottom: 8px;
  color: #1d2f24;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
}

.simple-map-title span {
  color: #5b665f;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
  word-break: keep-all;
}

.detail-map {
  position: relative;
  min-height: 390px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #d9e8de;
  background:
    linear-gradient(90deg, rgba(45, 140, 70, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(45, 140, 70, 0.055) 1px, transparent 1px),
    #f3f8f5;
  background-size: 42px 42px;
}

.detail-map .map-road {
  position: absolute;
  border-radius: 999px;
  background: #d7e7dc;
  z-index: 1;
}

.map-road-main {
  left: 9%;
  right: 8%;
  top: 52%;
  height: 28px;
  transform: translateY(-50%);
}

.map-road-center {
  top: 11%;
  bottom: 10%;
  left: 53%;
  width: 26px;
  transform: translateX(-50%);
}

.map-road-top {
  left: 10%;
  right: 12%;
  top: 27%;
  height: 22px;
}

.map-road-bottom {
  left: 13%;
  right: 10%;
  bottom: 24%;
  height: 22px;
}

.map-road-diagonal {
  width: 82%;
  height: 20px;
  left: 8%;
  bottom: 20%;
  transform: rotate(-14deg);
  opacity: 0.55;
}

.map-label {
  position: absolute;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff;
  color: #476154;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(20, 40, 25, 0.08);
  z-index: 4;
  white-space: nowrap;
}

.road-label {
  left: 45%;
  top: 43%;
}

.near-box {
  position: absolute;
  padding: 9px 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(45, 140, 70, 0.12);
  color: #5a6b60;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(20, 40, 25, 0.06);
  z-index: 3;
  text-align: center;
  white-space: nowrap;
}

.landmark-school {
  left: 8%;
  top: 9%;
}

.landmark-library {
  right: 7%;
  top: 12%;
}

.landmark-police {
  left: 8%;
  bottom: 19%;
}

.landmark-store {
  right: 9%;
  bottom: 11%;
}

.landmark-khouse {
  left: 10%;
  top: 40%;
}

.company-map-point {
  position: absolute;
  right: -10%;
  top: 25%;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 6;
}

.company-pin {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: #2d8c46;
  transform: rotate(-45deg);
  box-shadow:
    0 10px 24px rgba(45, 140, 70, 0.32),
    0 0 0 7px rgba(45, 140, 70, 0.12);
}

.company-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.company-name-tag {
  min-width: 210px;
  max-width: 250px;
  padding: 13px 16px;
  border-radius: 16px;
  background: #fff;
  border: 2px solid rgba(45, 140, 70, 0.22);
  box-shadow: 0 14px 30px rgba(20, 40, 25, 0.13);
}

.company-name-tag strong {
  display: block;
  margin-bottom: 4px;
  color: #1d2f24;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.company-name-tag em {
  display: block;
  color: #526158;
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 750;
}

.map-guide-text {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #eef8f1;
  border: 1px solid rgba(45, 140, 70, 0.15);
}

.map-guide-text strong {
  display: block;
  margin-bottom: 6px;
  color: #1d2f24;
  font-size: 17px;
  font-weight: 900;
}

.map-guide-text p {
  margin: 0;
  color: #526158;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  word-break: keep-all;
}

.location-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.location-call-btn,
.location-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}

.location-call-btn {
  flex: 1.05;
  background: #2d8c46;
  color: #fff;
  box-shadow: 0 12px 26px rgba(45, 140, 70, 0.2);
}

.location-copy-btn {
  flex: 0.95;
  background: #eef8f1;
  color: #2d8c46;
  border: 1px solid rgba(45, 140, 70, 0.16);
}

@media (max-width: 1200px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
}

@media (max-width: 768px) {
  .location-visual {
    min-height: 360px;
    padding: 76px 0 68px;
  }

  .location-visual h1 {
    font-size: 34px;
    letter-spacing: -1.4px;
  }

  .location-visual p {
    font-size: 17px;
    line-height: 1.6;
  }

  .location-section {
    padding: 78px 0;
  }

  .location-copy h2 {
    font-size: 31px;
    letter-spacing: -1.3px;
  }

  .location-copy p {
    font-size: 16px;
  }

  .location-copy .lead {
    font-size: 17px;
  }

  .location-info-card {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .location-info-card div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .simple-map-card {
    padding: 24px;
    border-radius: 24px;
  }

  .detail-map {
    min-height: 360px;
  }

  .near-box {
    font-size: 11px;
    padding: 7px 10px;
  }

  .landmark-khouse,
  .landmark-police {
    display: none;
  }

  .company-map-point {
    right: -10%;
    top: 25%;
    bottom: auto;
    width: auto;
    transform: none;
    justify-content: flex-start;
  }

  .company-name-tag {
    min-width: 210px;
    max-width: 250px;
    flex: initial;
  }

  .location-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .location-visual h1 {
    font-size: 30px;
  }

  .location-copy h2 {
    font-size: 28px;
  }

  .simple-map-title strong {
    font-size: 24px;
  }

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

  .company-name-tag em {
    font-size: 12px;
  }
}