
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-primary: 'Spoqa Han Sans Neo', 'Noto Sans KR', sans-serif;
  --font-size-base: 17.64px;
  --line-height-base: 1.7;
  --color-primary: #2c5530;
  --color-secondary: #f5e6d3;
  --color-accent: #fafafa;
  --color-text: #222;
  --max-width: 1200px;
  --spacing-base: 76.4px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 72px;
  --border-radius: 8px;
  --header-height: 65px;
  --hero-height: 500px;
  --section-padding: 60px;
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-accent);
}

/* Container */
.wcontainer_9932 {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header */
.mheader_6833 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 17px 0;
}

.mheader_6833 .wcontainer_9932 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.xlogo_3524 a {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
}

.xnav_3533 > ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.mmenuItem_4120 a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius);
}

.mmenuItem_4120 a:hover {
  color: var(--color-primary);
  background: var(--color-accent);
}

/* Dropdown Menu Styles */
.mmenuItem_4120.has-dropdown {
  position: relative;
}

.parent-menu .arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.3s;
}

.mmenuItem_4120.has-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none !important;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  min-width: 200px;
  z-index: 1000;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Desktop: Show on hover */
@media (min-width: 769px) {
  .mmenuItem_4120.has-dropdown:hover .dropdown-menu {
    display: block !important;
  }
}

.dropdown-menu.active {
  display: block !important;
  animation: fadeInDown 0.3s;
}

.dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  padding-left: 24px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pmobileToggle_7568 {
  display: none !important;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  align-items: center;
}

/* Desktop: Always hide mobile toggle */
@media (min-width: 769px) {
  .pmobileToggle_7568 {
    display: none !important;
  }
}

.pmobileToggle_7568 span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  transition: var(--transition);
}

/* Hero Section */
.khero_7869 {
  margin-top: 70px;
  position: relative;
}

.mheroImage_3506 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
}

.mheroImage_3506::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.mheroImage_3506 .wcontainer_9932 {
  position: relative;
  z-index: 1;
  color: white;
}

.pheroTitle_6389 {
  font-size: 62px;
  font-family: 'Noto Sans', var(--font-primary);
  font-weight: 400;
  color: #333333;
  letter-spacing: normal;
  margin-bottom: var(--spacing-md);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  display: inline-block;
}

.wheroSubtitle_9981 {
  font-size: 20px;
  line-height: 1.6;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Gallery Section */
.xgallery_1644 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.kgalleryItem_7181 {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.kgalleryItem_7181:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.xgalleryImageWrapper_4936 {
  position: relative;
  overflow: hidden;
}

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

.kgalleryItem_7181:hover .mgalleryImage_4058 {
  transform: scale(1.05);
}

.xgalleryOverlay_1721 {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 95, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kgalleryItem_7181:hover .xgalleryOverlay_1721 {
  opacity: 1;
}

.pgalleryOverlayText_9916 {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.pgalleryCaption_6122 {
  padding: var(--spacing-sm);
  background: white;
  text-align: center;
  font-size: 37px;
  font-family: 'Malgun Gothic', var(--font-primary);
  font-weight: 700;
  color: #545f5f;
  letter-spacing: 4px;
}

/* Core Values Section (3-icon boxes) */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.core-value-box {
  background: white;
  border-radius: var(--border-radius);
  padding: var(--spacing-lg);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.core-value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.core-value-icon {
  font-size: 64px;
  margin-bottom: var(--spacing-md);
  line-height: 1;
}

.core-value-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.core-value-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Section - Random padding for each section */
.psection_5907 {
  padding: 79px 0;
}

.psection_5907:nth-of-type(2) {
  padding: 78px 0;
}

.psection_5907:nth-of-type(3) {
  padding: 77px 0;
}

.psectionTitle_6363 {
  font-size: 38px;
  font-family: 'Noto Sans KR', var(--font-primary);
  font-weight: 600;
  color: #7a7a7a;
  background-color: transparent;
  letter-spacing: 2px;
  padding: 0;
  margin-bottom: var(--spacing-lg);
  text-align: center;
  display: inline-block;
  width: auto;
}

.psection_5907:nth-of-type(2) .psectionTitle_6363 {
  font-size: 39px;
  font-family: 'Nanum Gothic', var(--font-primary);
  font-weight: 500;
  color: #d0d0d0;
  background-color: #3a3a3a;
  letter-spacing: 1px;
  padding: var(--spacing-sm) var(--spacing-md);
}

.psection_5907:nth-of-type(3) .psectionTitle_6363 {
  font-size: 40px;
  font-family: 'Noto Sans', var(--font-primary);
  font-weight: 400;
  color: #333333;
  background-color: #444444;
  letter-spacing: normal;
  padding: var(--spacing-sm) var(--spacing-md);
}

.ksectionContent_594 {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.msectionImage_576 {
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.msectionImage_576 img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.wfooter_7792 {
  background: var(--color-primary);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.wfooter_7792 h3,
.wfooter_7792 h4 {
  margin-bottom: var(--spacing-sm);
}

.wrow_4242 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.xfooterLinks_3688 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.xfooterLinks_3688 a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.xfooterLinks_3688 a:hover {
  color: var(--color-secondary);
}

.pfooterCopyright_5386 {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  opacity: 0.8;
}

/* Overview Table Styles */
.overview-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e1e8ed;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.overview-table-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #e1e8ed;
}

.overview-table-row:last-child {
  border-bottom: none;
}

.overview-table-header {
  padding: 20px 24px;
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  border-right: 1px solid #e1e8ed;
  display: flex;
  align-items: center;
}

.overview-table-cell {
  padding: 20px 24px;
  color: #555;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .overview-table-row {
    grid-template-columns: 1fr;
  }

  .overview-table-header {
    border-right: none;
    border-bottom: 1px solid #e1e8ed;
    padding: 16px 20px;
  }

  .overview-table-cell {
    padding: 16px 20px;
  }
}

/* Mobile Dropdown Menu */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    background: var(--color-accent);
    display: none !important;
  }

  .mmenuItem_4120.has-dropdown.active .dropdown-menu {
    display: block !important;
  }

  .parent-menu {
    display: block;
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .mheader_6833 .wcontainer_9932 {
    position: relative;
  }

  .xnav_3533 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
  }

  .xnav_3533.active {
    display: block !important;
    animation: slideDown 0.3s ease-out;
  }

  .xnav_3533 > ul {
    flex-direction: column;
    gap: 0;
    padding: var(--spacing-sm) 0;
  }

  .xnav_3533 .mmenuItem_4120 {
    border-bottom: 1px solid #f0f0f0;
  }

  .xnav_3533 .mmenuItem_4120:last-child {
    border-bottom: none;
  }

  .xnav_3533 .mmenuItem_4120 a {
    display: block;
    padding: 16px 24px;
    width: 100%;
  }

  .pmobileToggle_7568 {
    display: flex !important;
    position: absolute !important;
    top: 20px;
    right: 20px;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  /* Layout C: Hide phone contact on mobile (shown in header is enough) */
  .phone-contact-center {
    display: none !important;
  }

  /* Mobile Hero Section - Ensure background image shows */
  .mheroImage_3506 {
    min-height: 400px !important;
    background-size: cover;
    background-position: center;
  }

  .pheroTitle_6389 {
    font-size: 32px;
  }

  .wheroSubtitle_9981 {
    font-size: 16px;
  }

  .psectionTitle_6363 {
    font-size: 28px;
  }

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.psection_5907 {
  animation: fadeIn 0.6s ease-out;
}
