@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700&family=Noto+Sans+KR:wght@400;500;700&family=Noto+Serif+KR:wght@700;900&display=swap');

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

:root {
  --primary: #0c1736;
  --primary-light: #1C2541;
  --accent: #FF6B35;
  --accent-dark: #E55A2B;
  --neutral-100: #F8F9FA;
  --neutral-200: #E9ECEF;
  --neutral-300: #DEE2E6;
  --neutral-700: #495057;
  --neutral-900: #212529;
  --gradient-1: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
  --gradient-2: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

body {
  font-family: 'Outfit', 'Noto Sans KR','Noto Serif KR','Playfair Display', sans-serif;
  color: var(--neutral-900);
  line-height: 1.6;
  overflow-x: hidden;
  /*background: var(--neutral-100);*/
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  gap: 3rem;  
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--neutral-700);
  font-weight: 600;
  font-size: 0.95rem; 
  transition: color 0.3s;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--gradient-2);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: white;
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  padding: 2rem;
  border-bottom: 1px solid var(--neutral-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-drawer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--neutral-700);
  cursor: pointer;
}

.mobile-nav-menu {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--neutral-200);
}

.mobile-nav-link {
  display: block;
  padding: 1.2rem 2rem;
  color: var(--neutral-700);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.mobile-nav-link:hover {
  background: var(--neutral-100);
  color: var(--accent);
}

.mobile-drawer-footer {
  padding: 1.5rem;
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--neutral-200);
  background: var(--neutral-100);
}

.mobile-cta {
  display: block;
  text-align: center;
  background: var(--gradient-2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  /* Dynamic viewport height for mobile */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform 5s ease-out;
}

.hero-slide.active.zooming .hero-slide-img {
  transform: scale(1);
}

@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

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

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 100%;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -2px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
  background: var(--gradient-2);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Services Grid */
.services {
  padding: 8rem 0;
  background: var(--neutral-100);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 3rem;
}

.section-subtitle {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -1px;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

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

.service-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--neutral-700);
  line-height: 1.8;
  font-size: 1rem;
}

/* Stats Section */
.stats {
  background: var(--primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
}

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

.stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 1rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Contact Form */
.contact {
  padding: 8rem 0;
  /*background: linear-gradient(180deg, var(--neutral-100) 0%, white 100%);*/
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-details {
  margin-top: 3rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 0.2rem;
}

.contact-text h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: var(--neutral-700);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: white;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.submit-btn {
  width: 100%;
  background: var(--gradient-2);
  color: white;
  padding: 1.3rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

/* Footer */
.footer {
  background: var(--primary);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 0rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.0em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}


/* Responsive */
@media (max-width: 1200px) {
   .nav-menu {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    max-width: 700px;
  }

   .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

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

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding-top: 70px;
    min-height: calc(100vh - constant(safe-area-inset-top));
    min-height: calc(100vh - env(safe-area-inset-top));
    min-height: calc(100dvh - constant(safe-area-inset-top));
    min-height: calc(100dvh - env(safe-area-inset-top));
  }

  .hero-container {
    padding: 0 1.5rem;
    max-width: 90%;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .services {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
    padding: 0 1.5rem;
  }

  .services-container {
    padding: 0 1.5rem;
  }

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

  .service-card {
    padding: 2rem;
  }

  .stats {
    padding: 4rem 0;
  }

  .stats-container {
    padding: 0 1.5rem;
  }

  .stats-grid {
    gap: 2rem;
  }

  .contact {
    padding: 4rem 0;
  }

  .contact-container {
    padding: 0 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Fix for iOS Safari address bar */
@supports (-webkit-touch-callout: none) {
  .hero {
    min-height: -webkit-fill-available;
  }
}

/* Greeting Page Styles */
.page-hero {
  min-height: 45vh;
  background: linear-gradient(135deg, #0A1128 0%, #2260a5 50%, #2260a5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 2rem;
}

.page-category {
  color: #FFF;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.page-title {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--neutral-100);
  padding: 0.90rem 0;
}

.breadcrumb-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.9rem;
}

.breadcrumb-item {
  color: var(--neutral-700);
  position: relative;
}

.breadcrumb-item a {
  color: var(--neutral-700);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: var(--neutral-300);
}

.breadcrumb-item.active {
  color: var(--accent);
  font-weight: 600;
}

/* Breadcrumb Dropdown */
.breadcrumb-dropdown {
  position: relative;
}

.breadcrumb-toggle {
  cursor: pointer;
}

.breadcrumb-chevron {
  display: inline-block;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  margin-left: 0.2rem;
}

.breadcrumb-dropdown.open .breadcrumb-chevron {
  transform: rotateX(180deg);
}

.breadcrumb-popup {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  overflow: hidden;
}

.breadcrumb-dropdown.open .breadcrumb-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.breadcrumb-popup-item {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--neutral-700);
  text-decoration: none;
  transition: all 0.3s;
  border-bottom: 1px solid var(--neutral-200);
  width: 100%;
  box-sizing: border-box;
}

.breadcrumb-popup-item.active {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumb-popup-item:last-child {
  border-bottom: none;
}

.breadcrumb-popup-item:hover {
  background: var(--neutral-100);
  color: var(--accent);
  padding-left: 2rem;
}

/* Greeting Content */
.greeting-section {
  padding: 6rem 0;
  background: white;
}

.greeting-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
}

.greeting-header {
  text-align: center;
  margin-bottom: 4rem;
}

.greeting-logo {
  max-width: 200px;
  margin-bottom: 2rem;
}

.greeting-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 2rem;
}

.greeting-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-2);
  border-radius: 2px;
}

.greeting-content {
  background: var(--neutral-100);
  border-radius: 20px;
  padding: 4rem;
  line-height: 2;
  font-size: 1.1rem;
  color: var(--neutral-700);
  position: relative;
  overflow: hidden;
}

.greeting-content::before {
  content: '"';
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 8rem;
  color: rgba(255, 107, 53, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.greeting-content p {
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.greeting-content p:last-child {
  margin-bottom: 0;
}

.greeting-signature {
  margin-top: 3rem;
  text-align: right;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
}

/* Values Section */
.values-section {
  padding: 6rem 0;
  background: var(--neutral-100);
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.values-subtitle {
  font-size: 1.1rem;
  color: var(--neutral-700);
}

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

.value-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--neutral-700);
  line-height: 1.8;
}

/* Responsive for Greeting Page */
@media (max-width: 768px) {
  .page-hero {
    min-height: 40vh;
    margin-top: 70px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .breadcrumb-container {
    padding: 0 1.5rem;
  }

  .greeting-container {
    padding: 0 1.5rem;
  }

  .greeting-section {
    padding: 4rem 0;
  }

  .greeting-content {
    padding: 2rem;
  }

  .greeting-content::before {
    font-size: 4rem;
    top: 1rem;
    left: 1rem;
  }

  .greeting-title {
    font-size: 1.8rem;
  }

  .values-section {
    padding: 4rem 0;
  }

  .values-container {
    padding: 0 1.5rem;
  }

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

  .value-card {
    padding: 2rem;
  }

  .values-title {
    font-size: 2rem;
  }
}

/* Vision Page Styles */
.vision-main {
  padding: 6rem 0 8rem;
  background: white;
}

.vision-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.vision-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vision-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.vision-main-description {
  font-size: 1.2rem;
  color: var(--neutral-700);
  line-height: 1.8;
}

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

.vision-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.vision-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.vision-card-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.vision-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.vision-card:hover .vision-card-image img {
  transform: scale(1.1);
}

.vision-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 17, 40, 0.7) 100%);
}

.vision-card-content {
  padding: 3rem;
  text-align: center;
  position: relative;
}

.vision-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.vision-card:hover .vision-icon {
  transform: scale(1.2) rotate(10deg);
}

.vision-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.vision-card-description {
  font-size: 1.05rem;
  color: var(--neutral-700);
  line-height: 1.8;
}

/* Vision Page Responsive */
@media (max-width: 1024px) {
  .vision-main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .vision-main {
    padding: 4rem 0;
  }

  .vision-container {
    padding: 0 1.5rem;
  }

  .vision-header {
    margin-bottom: 3rem;
  }

  .vision-main-title {
    font-size: 2rem;
  }

  .vision-main-description {
    font-size: 1rem;
  }

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

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

  .vision-card-content {
    padding: 2rem;
  }

  .vision-card-title {
    font-size: 1.5rem;
  }

  .vision-card-description {
    font-size: 0.95rem;
  }
}

/* Offices Page Styles */
.offices-main {
  padding: 6rem 0 8rem;
  background: white;
}

.offices-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.offices-header {
  text-align: center;
  margin-bottom: 5rem;
}

.offices-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.offices-main-description {
  font-size: 1.2rem;
  color: var(--neutral-700);
  line-height: 1.8;
}

/* World Map Section */
.offices-map-section {
  margin-bottom: 5rem;
  background: var(--neutral-100);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
}

.offices-map {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.map-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.marker-dot {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  animation: markerPulse 2s infinite;
  position: relative;
}

.marker-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

@keyframes markerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

.marker-label {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
}

.map-marker:hover .marker-label {
  opacity: 1;
  top: -45px;
}

/* Offices Table Section */
.offices-table-section {
  margin-top: 4rem;
}

.offices-table-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: center;
}

.offices-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.offices-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.offices-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.offices-table thead th {
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.offices-table tbody tr {
  border-bottom: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.offices-table tbody tr:last-child {
  border-bottom: none;
}

.offices-table tbody tr:hover {
  background: var(--neutral-100);
}

.offices-table tbody tr.featured {
  background: rgba(255, 107, 53, 0.05);
}

.offices-table tbody tr.featured:hover {
  background: rgba(255, 107, 53, 0.1);
}

.offices-table tbody td {
  padding: 2rem;
  font-size: 0.95rem;
  color: var(--neutral-700);
  vertical-align: top;
}

.office-name {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.office-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.office-address {
  line-height: 1.6;
}

.office-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.office-contact a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Offices Page Responsive */
@media (max-width: 1024px) {
  .offices-main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .offices-main {
    padding: 4rem 0;
  }

  .offices-container {
    padding: 0 1.5rem;
  }

  .offices-header {
    margin-bottom: 3rem;
  }

  .offices-main-title {
    font-size: 2rem;
  }

  .offices-main-description {
    font-size: 1rem;
  }

  .offices-map-section {
    padding: 2rem 1rem;
    margin-bottom: 3rem;
  }

  .marker-label {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .offices-table-title {
    font-size: 1.5rem;
  }

  .offices-table thead th {
    padding: 1rem;
    font-size: 0.85rem;
  }

  .offices-table tbody td {
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }

  .office-name {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .office-icon {
    font-size: 1.5rem;
  }

  /* Mobile: Stack table cells */
  .offices-table {
    display: block;
  }

  .offices-table thead {
    display: none;
  }

  .offices-table tbody {
    display: block;
  }

  .offices-table tbody tr {
    display: block;
    margin-bottom: 2rem;
    border: 1px solid var(--neutral-200);
    border-radius: 12px;
    overflow: hidden;
  }

  .offices-table tbody td {
    display: block;
    text-align: left;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--neutral-200);
  }

  .offices-table tbody td:last-child {
    border-bottom: none;
  }

  .offices-table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
  }

  .office-name::before {
    content: '지사명';
  }

  .office-address::before {
    content: '주소';
  }

  .office-contact::before {
    content: '연락처';
  }
}

/* Company Intro Page Styles */
.intro-main {
  padding: 6rem 0 8rem;
  background: white;
}

.intro-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Intro Header Section */
.intro-header-section {
  position: relative;
  margin-bottom: 6rem;
  border-radius: 24px;
  overflow: hidden;
  /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);*/
}

.intro-image-wrapper {
  position: relative;
  text-align:center;
  overflow: hidden;
}

.intro-main-image {
 
}

.intro-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 17, 40, 0.8) 0%, rgba(10, 17, 40, 0.5) 100%);
}

.intro-header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.intro-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.intro-main-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.95;
}

/* Intro Content Section */
.intro-content-section {
  margin-bottom: 5rem;
}

.intro-text-block {
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--neutral-100);
  border-radius: 20px;
  border-left: 5px solid var(--accent);
  transition: all 0.3s ease;
}

.intro-text-block:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.intro-section-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

.title-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.intro-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

.intro-description:last-child {
  margin-bottom: 0;
}

/* Service Highlights */
.intro-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.highlight-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.highlight-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.highlight-desc {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.6;
}

/* Intro Page Responsive */
@media (max-width: 1024px) {
  .intro-main-title {
    font-size: 2.8rem;
  }

  .intro-main-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .intro-main {
    padding: 4rem 0;
  }

  .intro-container {
    padding: 0 1.5rem;
  }

  .intro-header-section {
    margin-bottom: 4rem;
  }

  .intro-image-wrapper {
    height: 300px;
  }

  .intro-main-title {
    font-size: 2rem;
  }

  .intro-main-subtitle {
    font-size: 1rem;
  }

  .intro-content-section {
    margin-bottom: 3rem;
  }

  .intro-text-block {
    padding: 2rem;
    margin-bottom: 2.5rem;
  }

  .intro-section-title {
    font-size: 1.5rem;
    gap: 1rem;
  }

  .title-accent {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .intro-description {
    font-size: 1rem;
  }

  .intro-highlights {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 3rem 0;
  }

  .highlight-card {
    padding: 2.5rem 1.5rem;
  }

  .highlight-icon {
    font-size: 3rem;
  }

  .highlight-title {
    font-size: 1.3rem;
  }
}

/* Organization Chart Page Styles */
.org-main {
  padding: 0rem 0 8rem;
  /*background: linear-gradient(135deg, var(--neutral-100) 0%, white 100%);*/
}

.org-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.org-header {
  text-align: center;
  margin-bottom: 5rem;
}

.org-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.org-main-description {
  font-size: 1.2rem;
  color: var(--neutral-700);
  line-height: 1.8;
}

/* Organization Chart Structure */
.org-chart {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.org-level {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.org-level-ceo,
.org-level-gm {
  margin-bottom: 0;
}

.org-level-dept {
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Organization Box Styles */
.org-box {
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

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

/* CEO Box */
.org-ceo {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  min-width: 280px;
  box-shadow: 0 8px 30px rgba(10, 17, 40, 0.2);
}

.org-ceo:hover {
  box-shadow: 0 12px 40px rgba(10, 17, 40, 0.3);
}

.org-position {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.org-name {
  font-size: 1.4rem;
  font-weight: 700;
}

/* General Manager Box */
.org-gm {
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c5f 100%);
  color: white;
  min-width: 200px;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.25);
}

.org-gm:hover {
  box-shadow: 0 10px 35px rgba(255, 107, 53, 0.35);
}

/* Department Box */
.org-dept {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  border: 2px solid var(--neutral-200);
}

.org-dept-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--neutral-200);
}

.org-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--neutral-700);
}

.contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item a {
  color: var(--neutral-700);
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-all;
}

.contact-item a:hover {
  color: var(--accent);
}

/* Connector Lines */
.org-connector {
  margin: 0 auto;
}

.org-connector-vertical {
  width: 2px;
  height: 40px;
  background: var(--neutral-300);
  margin-bottom: 0;
}

.org-connector-horizontal {
  height: 2px;
  width: 80%;
  max-width: 930px;
  background: var(--neutral-300);
  margin: 0 auto 40px;
}

/* Organization Chart Responsive */
@media (max-width: 1024px) {
  .org-main-title {
    font-size: 2.8rem;
  }

  .org-chart {
    padding: 2rem;
  }

  .org-level-dept {
    gap: 1.2rem;
  }

  .org-dept {
    min-width: 180px;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .org-main {
    padding: 4rem 0;
  }

  .org-container {
    padding: 0 1.5rem;
  }

  .org-header {
    margin-bottom: 3rem;
  }

  .org-main-title {
    font-size: 2rem;
  }

  .org-main-description {
    font-size: 1rem;
  }

  .org-chart {
    padding: 1.5rem;
  }

  .org-level {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .org-level-dept {
    width: 100%;
  }

  .org-box {
    padding: 1.5rem;
  }

  .org-ceo,
  .org-gm {
    min-width: auto;
    width: 100%;
    max-width: 300px;
  }

  .org-dept {
    min-width: auto;
    max-width: none;
    width: 100%;
  }

  .org-dept-name {
    font-size: 1.2rem;
  }

  .org-connector-horizontal {
    width: 2px;
    height: 30px;
    margin: 0 auto 20px;
  }

  .org-connector-vertical {
    height: 30px;
    margin-bottom: 0;
  }

  .contact-item {
    font-size: 0.85rem;
  }
}

/* Map Page Styles */
.map-main {
  padding: 6rem 0 8rem;
  background: white;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.map-header {
  text-align: center;
  margin-bottom: 4rem;
}

.map-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.map-main-description {
  font-size: 1.2rem;
  color: var(--neutral-700);
  line-height: 1.8;
}

/* Company Info Card */
.map-company-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-company-name {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  padding: 1.5rem 3rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--neutral-200);
}

.company-icon {
  font-size: 2.5rem;
}

.map-info-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-top: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--neutral-200);
}

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

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1.1rem;
  color: var(--neutral-700);
  line-height: 1.8;
}

.subway-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.subway-line {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Map Wrapper */
.map-wrapper {
  background: white;
  /*border-radius: 20px;*/
  padding: 2rem;
  /*box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);*/
  border: 1px solid var(--neutral-200);
}

.map-placeholder {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  /*border-radius: 12px;*/
  overflow: hidden;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
}

.map-dummy {
  width: 100%;
  height: auto;
  display: block;
}

.map-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--neutral-500);
  font-style: italic;
}

/* Map Page Responsive */
@media (max-width: 1024px) {
  .map-main-title {
    font-size: 2.8rem;
  }

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

@media (max-width: 768px) {
  .map-main {
    padding: 4rem 0;
  }

  .map-container {
    padding: 0 1.5rem;
  }

  .map-header {
    margin-bottom: 3rem;
  }

  .map-main-title {
    font-size: 2rem;
  }

  .map-main-description {
    font-size: 1rem;
  }

  .map-company-header {
    margin-bottom: 2rem;
  }

  .map-company-name {
    font-size: 1.5rem;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
  }

  .company-icon {
    font-size: 2rem;
  }

  .map-info-card {
    padding: 2rem;
    margin-top: 2rem;
  }

  .map-info-grid {
    gap: 1.5rem;
  }

  .info-label {
    font-size: 0.85rem;
  }

  .info-value {
    font-size: 1rem;
  }

  .map-wrapper {
    padding: 1rem;
  }

  .map-note {
    font-size: 0.8rem;
  }
}

/* Service Page Styles */
.service-main {
  padding: 6rem 0 8rem;
  background: white;
}

.service-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Service Introduction */
.service-intro {
  margin-bottom: 6rem;
}

.service-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.service-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.service-description {
  background: var(--neutral-100);
  border-radius: 20px;
  padding: 3rem;
  border-left: 5px solid var(--accent);
}

.service-description p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
}

.service-description p:last-child {
  margin-bottom: 0;
}

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

/* Strengths Section */
.service-strengths {
  margin-bottom: 6rem;
}

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

.strength-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.strength-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.strength-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.strength-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

/* Service Scope Section */
.service-scope {
  margin-bottom: 4rem;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.scope-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent);
}

.scope-item:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scope-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: bold;
  flex-shrink: 0;
}

.scope-text {
  font-size: 1.05rem;
  color: var(--neutral-700);
  font-weight: 500;
}

/* Service Features Section */
.service-features {
  margin-bottom: 6rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: grayscale(0.3);
  transition: filter 0.3s ease;
}

.feature-card:hover .feature-icon {
  filter: grayscale(0);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Service Page Responsive */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }

  .strengths-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .service-main {
    padding: 4rem 0;
  }

  .service-container {
    padding: 0 1.5rem;
  }

  .service-intro {
    margin-bottom: 4rem;
  }

  .service-image {
    height: 300px;
  }

  .service-description {
    padding: 2rem;
  }

  .service-description p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }

  .service-strengths {
    margin-bottom: 4rem;
  }

  .strengths-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.2rem;
  }

  .strength-card {
    padding: 2.5rem 1.5rem;
  }

  .strength-icon {
    font-size: 3rem;
  }

  .strength-title {
    font-size: 1.1rem;
  }

  .service-features {
    margin-bottom: 4rem;
  }

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

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

  .feature-icon {
    font-size: 3rem;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .feature-desc {
    font-size: 0.95rem;
  }

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

  .scope-item {
    padding: 1.2rem 1.5rem;
  }

  .scope-text {
    font-size: 0.95rem;
  }
}

/* Project Cargo Specific Styles */
.scope-grid-large {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.scope-item-large {
  padding: 2rem 2.5rem;
  font-size: 1.1rem;
}

.scope-item-large .scope-text {
  font-size: 1.15rem;
  font-weight: 600;
}

/* Cargo Details Section */
.cargo-details {
  margin-bottom: 4rem;
}

.cargo-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.cargo-detail-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
}

.cargo-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cargo-detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--neutral-200);
}

.cargo-detail-icon {
  font-size: 2rem;
  color: var(--accent);
}

.cargo-detail-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.cargo-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cargo-detail-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--neutral-700);
  font-size: 1rem;
  line-height: 1.6;
}

.cargo-detail-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.cargo-detail-list li:not(:last-child) {
  border-bottom: 1px solid var(--neutral-100);
}

#subPage{
  width: min(1300px, calc(100% - 40px));
  margin: 0 auto;
  margin-bottom: 50px;
  margin-top: 50px;
}
/* Cargo Details Responsive */
@media (max-width: 1024px) {
  .scope-grid-large {
    grid-template-columns: 1fr;
  }

  .cargo-details-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .scope-grid-large {
    gap: 1.5rem;
  }

  .scope-item-large {
    padding: 1.5rem 2rem;
  }

  .scope-item-large .scope-text {
    font-size: 1rem;
  }

  .cargo-details {
    margin-bottom: 3rem;
  }

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

  .cargo-detail-card {
    padding: 2rem;
  }

  .cargo-detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .cargo-detail-icon {
    font-size: 1.8rem;
  }

  .cargo-detail-header h3 {
    font-size: 1.2rem;
  }

  .cargo-detail-list li {
    font-size: 0.95rem;
    padding: 0.7rem 0;
    padding-left: 1.8rem;
  }
}

/* Express Service Styles */
.express-main {
  padding: 6rem 0 8rem;
  background: white;
}

.express-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Buza Services */
.buza-services {
  margin-bottom: 6rem;
}

.buza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.buza-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.buza-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.buza-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.buza-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.buza-card:hover .buza-image img {
  transform: scale(1.1);
}

.buza-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c5f 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.buza-badge-fresh {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.buza-content {
  padding: 2.5rem;
}

.buza-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
}

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

.buza-info-item {
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid var(--neutral-200);
}

.buza-info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 700;
  color: var(--neutral-600);
  min-width: 120px;
  flex-shrink: 0;
}

.info-value {
  color: var(--neutral-700);
  line-height: 1.6;
}

.buza-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.buza-link:hover {
  gap: 1rem;
  color: var(--accent-dark);
}

.buza-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.feature-tag {
  background: var(--neutral-100);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--neutral-700);
  font-weight: 500;
}

/* Use Cases */
.use-cases {
  margin-bottom: 6rem;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.case-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.case-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.case-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.case-desc {
  color: var(--neutral-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.case-examples {
  list-style: none;
  padding: 0;
  margin: 0;
}

.case-examples li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--neutral-600);
}

.case-examples li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Process Timeline */
.express-process {
  margin-bottom: 6rem;
  background: var(--neutral-100);
  padding: 4rem;
  border-radius: 24px;
}

.process-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  flex: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--neutral-600);
}

.process-arrow {
  font-size: 2rem;
  color: var(--accent);
  margin: 0 1rem;
}

/* CTA Section */
.express-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem;
  border-radius: 24px;
  text-align: center;
  color: white;
}

.express-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.express-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.cta-btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

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

.cta-btn-secondary:hover {
  background: var(--neutral-100);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Express Responsive */
@media (max-width: 1024px) {
  .buza-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    flex-wrap: wrap;
  }

  .process-arrow {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(33.333% - 1rem);
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .express-main {
    padding: 4rem 0;
  }

  .express-container {
    padding: 0 1.5rem;
  }

  .buza-services,
  .use-cases,
  .express-process {
    margin-bottom: 4rem;
  }

  .buza-grid {
    gap: 2rem;
  }

  .buza-image {
    height: 200px;
  }

  .buza-content {
    padding: 2rem;
  }

  .buza-title {
    font-size: 1.5rem;
  }

  .info-label {
    min-width: 100px;
    font-size: 0.9rem;
  }

  .info-value {
    font-size: 0.9rem;
  }

  .cases-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-card {
    padding: 2.5rem;
  }

  .case-icon {
    font-size: 3rem;
  }

  .case-title {
    font-size: 1.3rem;
  }

  .express-process {
    padding: 2.5rem 1.5rem;
  }

  .process-timeline {
    flex-direction: column;
  }

  .process-step {
    flex: 1;
    width: 100%;
    margin-bottom: 2rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .express-cta {
    padding: 3rem 2rem;
  }

  .express-cta h2 {
    font-size: 1.8rem;
  }

  .express-cta p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-btn {
    width: 100%;
    padding: 1rem 2rem;
  }
}

/* Inland Transport Specific Styles */
.scope-grid-inland {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.scope-item-inland {
  padding: 2rem 2.5rem;
  min-height: 120px;
  display: flex;
  align-items: center;
}

.scope-item-inland .scope-text {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
}

/* Vehicle Types Section */
.vehicle-types {
  margin-bottom: 4rem;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.vehicle-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid var(--primary);
  text-align: center;
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top-color: var(--accent);
}

.vehicle-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.vehicle-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.vehicle-spec {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--neutral-200);
}

.vehicle-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.vehicle-features li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--neutral-700);
  font-size: 1rem;
}

.vehicle-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.vehicle-features li:not(:last-child) {
  border-bottom: 1px solid var(--neutral-100);
}

/* Inland Transport Responsive */
@media (max-width: 1024px) {
  .scope-grid-inland {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .vehicle-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 768px) {
  .scope-grid-inland {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .scope-item-inland {
    padding: 1.5rem 2rem;
    min-height: auto;
  }

  .scope-item-inland .scope-text {
    font-size: 1rem;
  }

  .vehicle-types {
    margin-bottom: 3rem;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .vehicle-icon {
    font-size: 3rem;
  }

  .vehicle-name {
    font-size: 1.3rem;
  }

  .vehicle-spec {
    font-size: 1rem;
  }

  .vehicle-features li {
    font-size: 0.95rem;
    padding: 0.7rem 0;
    padding-left: 1.8rem;
  }
}

/* Import/Export Service Styles */
.import-main {
  padding: 6rem 0 8rem;
  background: white;
}

.import-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Introduction */
.import-intro {
  text-align: center;
  margin-bottom: 6rem;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--neutral-100) 0%, white 100%);
  border-radius: 24px;
}

.import-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.import-subtitle {
  font-size: 1.3rem;
  color: var(--neutral-700);
  line-height: 1.8;
}

/* Products Section */
.products-section {
  margin-bottom: 6rem;
}

.products-slider {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--neutral-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 2rem 1.5rem;
  text-align: center;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--neutral-600);
}

/* Import Features */
.import-features {
  margin-bottom: 6rem;
}

.features-grid-import {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.feature-card-import {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
}

.feature-card-import:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon-import {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.feature-title-import {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-desc-import {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Business Flow */
.business-flow {
  margin-bottom: 6rem;
  background: var(--neutral-100);
  padding: 4rem;
  border-radius: 24px;
}

.flow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.flow-step {
  text-align: center;
  flex: 1;
}

.flow-number {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.flow-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.flow-desc {
  font-size: 0.95rem;
  color: var(--neutral-600);
}

.flow-arrow {
  font-size: 2rem;
  color: var(--accent);
  margin: 0 1rem;
}

/* Import CTA */
.import-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 4rem;
  border-radius: 24px;
  text-align: center;
  color: white;
}

.import-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.import-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-btn-import {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--accent);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-import:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Import Responsive */
@media (max-width: 1200px) {
  .products-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .import-title {
    font-size: 2.5rem;
  }

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

  .flow-container {
    flex-wrap: wrap;
  }

  .flow-arrow {
    display: none;
  }

  .flow-step {
    flex: 0 0 calc(33.333% - 1rem);
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .import-main {
    padding: 4rem 0;
  }

  .import-container {
    padding: 0 1.5rem;
  }

  .import-intro {
    padding: 3rem 1.5rem;
    margin-bottom: 4rem;
  }

  .import-title {
    font-size: 2rem;
  }

  .import-subtitle {
    font-size: 1.1rem;
  }

  .products-section {
    margin-bottom: 4rem;
  }

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

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: 1.5rem;
  }

  .product-name {
    font-size: 1.2rem;
  }

  .import-features {
    margin-bottom: 4rem;
  }

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

  .feature-card-import {
    padding: 2.5rem 2rem;
  }

  .feature-icon-import {
    font-size: 3rem;
  }

  .business-flow {
    padding: 2.5rem 1.5rem;
    margin-bottom: 4rem;
  }

  .flow-container {
    flex-direction: column;
  }

  .flow-step {
    flex: 1;
    width: 100%;
    margin-bottom: 2rem;
  }

  .flow-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .import-cta {
    padding: 3rem 2rem;
  }

  .import-cta h2 {
    font-size: 1.8rem;
  }

  .import-cta p {
    font-size: 1rem;
  }

  .cta-btn-import {
    width: 100%;
    padding: 1rem 2rem;
  }
}

/* Warehouse Service Styles */
.warehouse-services {
  margin-bottom: 6rem;
}

.warehouse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.warehouse-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-top: 4px solid var(--primary);
  text-align: center;
}

.warehouse-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top-color: var(--accent);
}

.warehouse-icon {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.warehouse-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--neutral-200);
}

.warehouse-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.warehouse-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--neutral-700);
  font-size: 1rem;
}

.warehouse-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.warehouse-list li:not(:last-child) {
  border-bottom: 1px solid var(--neutral-100);
}

/* WMS Section */
.wms-section {
  background: linear-gradient(135deg, var(--neutral-100) 0%, white 100%);
  padding: 4rem;
  border-radius: 24px;
  margin-bottom: 4rem;
}

.wms-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.wms-feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wms-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.wms-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.wms-feature h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.wms-feature p {
  font-size: 1rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Warehouse Responsive */
@media (max-width: 1024px) {
  .warehouse-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .wms-features {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .warehouse-services {
    margin-bottom: 4rem;
  }

  .warehouse-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .warehouse-icon {
    font-size: 3rem;
  }

  .warehouse-title {
    font-size: 1.3rem;
  }

  .warehouse-list li {
    font-size: 0.95rem;
    padding: 0.7rem 0;
    padding-left: 1.8rem;
  }

  .wms-section {
    padding: 2.5rem 1.5rem;
  }

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

  .wms-feature {
    padding: 1.5rem;
  }

  .wms-icon {
    font-size: 2.5rem;
  }

  .wms-feature h4 {
    font-size: 1.2rem;
  }

  .wms-feature p {
    font-size: 0.95rem;
  }
}

/* Estimate Form Styles */
.estimate-main {
  padding: 6rem 0 8rem;
  /*background: var(--neutral-100);*/
}

.estimate-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 3rem;
}

.estimate-form {
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Form Section */
.form-section {
  padding: 3rem;
  border-bottom: 2px solid var(--neutral-200);
}

.form-section:last-of-type {
  border-bottom: none;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent);
}

.form-section-title i {
  color: var(--accent);
  font-size: 1.6rem;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 0.8rem;
}

.required {
  color: #e74c3c;
  font-weight: bold;
}

/* Form Inputs */
.form-input,
.form-textarea,
.form-file {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--neutral-300);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--neutral-700);
  transition: all 0.3s ease;
  font-family: 'Noto Sans KR', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-file {
  padding: 0.8rem 1rem;
  cursor: pointer;
}

.form-help {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--neutral-500);
}

/* Radio Group */
.radio-group {
  display: flex;
  gap: 2rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--neutral-700);
}

.radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent);
}

.radio-text {
  user-select: none;
}

/* Privacy Section */
.privacy-section {
  background: var(--neutral-100);
}

.privacy-content {
  color: var(--neutral-700);
  line-height: 1.8;
}

.privacy-block {
  margin-bottom: 2rem;
}

.privacy-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.privacy-content p {
  margin-bottom: 0.8rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin-top: 0.8rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

.privacy-agree {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 2px solid var(--accent);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.checkbox-label input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
  accent-color: var(--accent);
}

.checkbox-text {
  user-select: none;
}

/* Submit Button */
.form-submit {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--neutral-100) 0%, white 100%);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 4rem;
  background: linear-gradient(135deg, var(--accent) 0%, #ff8c5f 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn i {
  font-size: 1.1rem;
}

/* Estimate Form Responsive */
@media (max-width: 768px) {
  .estimate-main {
    padding: 4rem 0;
  }

  .estimate-container {
    padding: 0 1.5rem;
  }

  .form-section {
    padding: 2rem 1.5rem;
  }

  .form-section-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

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

  .form-group-full {
    grid-column: 1;
  }

  .form-label {
    font-size: 0.95rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }

  .radio-group {
    gap: 1.5rem;
  }

  .privacy-subtitle {
    font-size: 1.1rem;
  }

  .privacy-content {
    font-size: 0.95rem;
  }

  .privacy-agree {
    padding: 1.2rem;
  }

  .checkbox-label {
    font-size: 1rem;
  }

  .form-submit {
    padding: 2rem 1.5rem;
  }

  .submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }
}

/* Clients Page Styles */
.clients-main {
  padding: 6rem 0 8rem;
  background: white;
}

.clients-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Clients Introduction */
.clients-intro {
  text-align: center;
  margin-bottom: 6rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--neutral-100) 0%, white 100%);
  border-radius: 24px;
}

.clients-intro-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.8;
}

/* Client Category */
.client-category {
  margin-bottom: 5rem;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent);
}

.category-title i {
  color: var(--accent);
  font-size: 1.6rem;
}

/* Client Grid */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2.5rem;
}

.client-logo {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.client-logo img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.client-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-700);
  text-align: center;
  margin: 0;
}

/* Clients Responsive */
@media (max-width: 1024px) {
  .clients-intro-title {
    font-size: 1.7rem;
  }

  .category-title {
    font-size: 1.6rem;
  }

  .client-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .clients-main {
    padding: 4rem 0;
  }

  .clients-container {
    padding: 0 1.5rem;
  }

  .clients-intro {
    margin-bottom: 4rem;
    padding: 2.5rem 1.5rem;
  }

  .clients-intro-title {
    font-size: 1.4rem;
  }

  .client-category {
    margin-bottom: 4rem;
  }

  .category-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .category-title i {
    font-size: 1.3rem;
  }

  .client-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .client-logo {
    padding: 1.5rem;
  }

  .client-logo img {
    height: 120px;
    margin-bottom: 1rem;
  }

  .client-name {
    font-size: 1rem;
  }
}












/* Company Introduction Page Styles */
.intro-main {
  padding: 6rem 0 8rem;
  background: white;
}

.intro-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

.intro-header {
  text-align: center;
  margin-bottom: 5rem;
}

.intro-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.intro-main-description {
  font-size: 1.2rem;
  color: var(--neutral-700);
  line-height: 1.8;
}

/* Company Overview */
.intro-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: center;
}

.intro-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.intro-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 17, 40, 0.3) 100%);
}

.intro-content-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.intro-content p {
  font-size: 1.05rem;
  color: var(--neutral-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Services Grid */
.intro-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.intro-service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.intro-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.intro-service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.intro-service-card:hover .intro-service-icon {
  transform: scale(1.2);
}

.intro-service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.intro-service-description {
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 1.6;
}

/* Company Values */
.intro-values {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 5rem 4rem;
  border-radius: 30px;
  color: white;
}

.intro-values-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.intro-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.intro-value-item {
  text-align: center;
}

.intro-value-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
}

.intro-value-item h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.intro-value-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Intro Page Responsive */
@media (max-width: 1024px) {
  .intro-main-title {
    font-size: 2.8rem;
  }

  .intro-overview {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .intro-values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .intro-main {
    padding: 4rem 0;
  }

  .intro-container {
    padding: 0 1.5rem;
  }

  .intro-header {
    margin-bottom: 3rem;
  }

  .intro-main-title {
    font-size: 2rem;
  }

  .intro-main-description {
    font-size: 1rem;
  }

  .intro-overview {
    margin-bottom: 3rem;
  }

  .intro-image img {
    height: 300px;
  }

  .intro-content-title {
    font-size: 1.5rem;
  }

  .intro-content p {
    font-size: 0.95rem;
  }

  .intro-services {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .intro-service-card {
    padding: 2rem 1.5rem;
  }

  .intro-service-icon {
    font-size: 3rem;
  }

  .intro-values {
    padding: 3rem 2rem;
  }

  .intro-values-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .intro-value-number {
    font-size: 2.5rem;
  }

  .intro-value-item h4 {
    font-size: 1.3rem;
  }

  .intro-value-item p {
    font-size: 0.9rem;
  }
}
