* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #F6F7F1;
  color: #101F32;
  line-height: 1.5;
  scroll-behavior: smooth;
}
.silk-bg {
  background-image: radial-gradient(circle at 10% 20%, rgba(223,198,140,0.08) 2%, transparent 2.5%);
  background-size: 24px 24px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 20px;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid rgba(16,31,50,0.08);
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #101F32;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo span {
  color: #DFC68C;
}
.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  direction: ltr;
  justify-content: center;
}
.lang-btn {
  background: transparent;
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: #101F32;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 40px;
  transition: all 0.2s;
}
.lang-btn.active {
  background: #101F32;
  color: #F6F7F1;
}
.lang-btn:hover:not(.active) {
  background: #DFC68C30;
}
html[dir="rtl"] .navbar,
html[dir="rtl"] .btn-group,
html[dir="rtl"] .contact-flex,
html[dir="rtl"] .grid-3,
html[dir="rtl"] .news-grid {
  direction: rtl;
}
html[dir="rtl"] .card,
html[dir="rtl"] .news-card,
html[dir="rtl"] .hero p {
  text-align: right;
}
html[dir="rtl"] .hero p {
  text-align: center;
}
.ltr-text {
  display: inline-block;
  direction: ltr !important;
  unicode-bidi: embed;
}
.hero {
  text-align: center;
  padding: 60px 0 40px;
}
.hero-badge {
  display: inline-block;
  background: #DFC68C20;
  color: #101F32;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 20px;
  color: #101F32;
}
h1 span {
  color: #DFC68C;
}
.hero p {
  font-size: 1.1rem;
  color: #2C3E4E;
  max-width: 680px;
  margin: 0 auto 28px;
}
.btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}
.btn-primary {
  background: #101F32;
  color: #F6F7F1;
}
.btn-primary:hover {
  background: #2A3B4F;
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid #DFC68C;
  color: #101F32;
}
.btn-outline:hover {
  background: #DFC68C20;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 56px 0 16px;
  color: #101F32;
}
.section-sub {
  text-align: center;
  color: #4E6270;
  max-width: 700px;
  margin: 0 auto 48px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}
.card {
  background: white;
  border-radius: 28px;
  padding: 32px 24px;
  transition: 0.25s;
  border: 1px solid #EAE3D5;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.card:hover {
  transform: translateY(-6px);
  border-color: #DFC68C;
}
.card-icon {
  font-size: 2.2rem;
  color: #DFC68C;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.card p {
  color: #5A6E7A;
  font-size: 0.9rem;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0 60px;
}
.news-card {
  background: white;
  border-radius: 28px;
  padding: 24px;
  transition: 0.25s;
  border: 1px solid #EAE3D5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: #DFC68C;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}
.news-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #101F32;
  margin-bottom: 12px;
  line-height: 1.4;
}
.news-date {
  font-size: 0.7rem;
  color: #8F9EAD;
  display: block;
  margin-top: 8px;
}
.stats-row {
  background: #101F32;
  color: #F6F7F1;
  border-radius: 48px;
  padding: 48px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  margin: 56px 0;
  gap: 32px;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #DFC68C;
}
.origin-block {
  background: #FFFFFF;
  border-radius: 48px;
  padding: 40px 32px;
  margin: 48px 0;
  text-align: center;
  border: 1px solid #EAE3D5;
}
.origin-block i {
  font-size: 2rem;
  color: #DFC68C;
  margin-bottom: 12px;
  display: inline-block;
}
.contact-section {
  background: transparent;
  border: none;
  padding: 20px 0 24px;
  margin: 0;
  text-align: center;
}
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 32px 0 24px;
}
.contact-item {
  text-align: center;
}
.contact-item i {
  font-size: 1.5rem;
  color: #DFC68C;
  margin-bottom: 8px;
}
.contact-item a {
  text-decoration: none;
  color: #101F32;
  font-weight: 500;
}
.btn-inquiry {
  margin-top: 8px;
}
.response-line {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #8F9EAD;
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #101F32;
  color: #F6F7F1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: none;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: #2A3B4F;
  transform: translateY(-2px);
}
footer {
  text-align: center;
  padding: 28px 0 32px;
  border-top: 1px solid #DCD5C6;
  font-size: 0.75rem;
  color: #6B7E8C;
  margin-top: 0;
}
.footer-logo {
  margin-top: 20px;
}
.footer-logo img {
  max-width: 150px;
  height: auto;
}
@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  .navbar { flex-direction: column; }
  .stats-row { flex-direction: column; }
  .lang-switch { justify-content: center; }
  .scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  .footer-logo img { width: 120px; }
}