/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* Header */
.header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {max-height: 60px; width: auto;}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1a5fb4, #0d9488);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text-cn {
  font-size: 16px;
  font-weight: bold;
  color: #1a5fb4;
}

.logo-text-sub {
  font-size: 12px;
  color: #0d9488;
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}

.nav-item {
  position: relative;
  padding: 8px 0;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover,
.nav-link.active {
  color: #1a5fb4;
}

.nav-link.active {
  border-bottom: 2px solid #1a5fb4;
  padding-bottom: 4px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #666;
  transition: all 0.3s;
}

.dropdown-item:hover {
  color: #1a5fb4;
  background: #f0f7ff;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  padding: 8px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  border-top: 1px solid #e0e0e0;
  padding: 16px 0;
}

.mobile-menu.active {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-nav-item {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  color: #1a5fb4;
  background: #f0f7ff;
}

.mobile-dropdown-content {
  display: none;
  background: #f8f9fa;
  border-left: 2px solid #1a5fb4;
  margin-left: 16px;
}

.mobile-dropdown-content.active {
  display: block;
}

.mobile-dropdown-item {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: #666;
}

.mobile-dropdown-item:hover {
  color: #1a5fb4;
}

/* Hero Banner */
.hero {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero {
    height: 600px;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 24px;
  }
}

.hero-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  max-width: 1000px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 54px;
  }
}

/* Breadcrumb */
.breadcrumb-wrapper {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

.breadcrumb-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(135deg, #1a5fb4, #0d9488);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 14px;
}

.breadcrumb-item {
  color: #666;
}

.breadcrumb-item.active {
  color: #1a5fb4;
}

.breadcrumb-separator {
  color: #999;
}

/* Section Styles */
.section {
  padding: 64px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #1a5fb4;
  text-align: center;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 36px;
  }
}

.section-subtitle {
  font-size: 14px;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 16px;
  }
}

/* Country Tabs */
.country-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .country-tabs {
    gap: 16px;
  }
}

.country-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 4px;
  background: #f0f0f0;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .country-tab {
    padding: 12px 24px;
    font-size: 16px;
  }
}

.country-tab:hover {
  background: #e0e0e0;
}

.country-tab.active {
  background: #1a5fb4;
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 95, 180, 0.3);
}

.country-tab img {
  width: 96px;
  height: 64px;
  border-radius: 2px;
  object-fit: cover;
}

/* Content Box */
.content-box {
  max-width: 1110px;
  margin: 0 auto 48px;
}

.content-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .content-box p {
    font-size: 16px;
  }
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-primary {
  background: #1a5fb4;
  color: #fff;
}

.btn-primary:hover {
  background: #154a8f;
}

.btn-outline {
  border: 1px solid #1a5fb4;
  color: #1a5fb4;
  background: transparent;
}

.btn-outline:hover {
  background: #1a5fb4;
  color: #fff;
}

/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

.gallery-item {
  cursor: pointer;
}

.gallery-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-caption {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .gallery-caption {
    font-size: 14px;
  }
}

/* About Section */
.about-section {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(135deg, #1a5fb4, #0d9488);
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-section {
    padding: 80px 0;
  }
}

.about-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  background: url(../images/about.png);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.about-content {
  position: relative;
  z-index: 10;
  margin-left: auto;
  max-width: 600px;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .about-content {
    padding: 0 24px;
    max-width: 50%;
  }
}

.about-title {
  font-size: 24px;
  font-weight: bold;
  color: #e8a317;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .about-title {
    font-size: 32px;
  }
}

.about-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-content p {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .about-text {
    font-size: 15px;
  }
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  margin-top: 16px;
  transition: all 0.3s;
}

.about-btn:hover {
  background: #fff;
  color: #1a5fb4;
}

/* Partners Section */
.partners-section {
  padding: 64px 0;
  background: #f8f9fa;
  overflow: hidden;
}

@media (min-width: 768px) {
  .partners-section {
    padding: 80px 0;
  }
}

.partners-track {
  display: flex;
  gap: 16px;
  animation: scroll 30s linear infinite;
}

@media (min-width: 768px) {
  .partners-track {
    gap: 24px;
  }
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-card {
  flex-shrink: 0;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  transition: box-shadow 0.3s;
}

@media (min-width: 768px) {
  .partner-card {
    width: 180px;
    height: 100px;
    padding: 8px;
  }
}

.partner-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card span {
  font-weight: bold;
  font-size: 14px;
}

@media (min-width: 768px) {
  .partner-card span {
    font-size: 18px;
  }
}

.partner-card.temu span { color: #f97316; }
.partner-card.tiktok span { color: #000; }
.partner-card.mercado span { color: #ffe600; background: #333; padding: 4px 8px; border-radius: 4px; }
.partner-card.falabella span { color: #059669; }
.partner-card.shopee span { color: #ee4d2d; }
.partner-card.amazon span { color: #232f3e; }

/* Marquee Container */
.marquee-container {
  position: relative;
  width: 100%;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

.marquee-container.dark::before {
  background: linear-gradient(to right, #0d3a5c, transparent);
}

.marquee-container.dark::after {
  background: linear-gradient(to left, #0d3a5c, transparent);
}

/* News Section */
.news-section {
  padding: 64px 0;
  background: #fff;
}

@media (min-width: 768px) {
  .news-section {
    padding: 80px 0;
  }
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .news-tabs {
    gap: 16px;
  }
}

.news-tab {
  padding: 8px 16px;
  font-size: 14px;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .news-tab {
    padding: 8px 24px;
    font-size: 16px;
  }
}

.news-tab:hover,
.news-tab.active {
  color: #1a5fb4;
  border-bottom-color: #1a5fb4;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: rgba(26, 95, 180, 0.9);
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
}

.news-card-content {
  padding: 16px;
}

.news-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .news-card-title {
    font-size: 16px;
  }
}

.news-card:hover .news-card-title {
  color: #1a5fb4;
}

.news-card-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-date {
  font-size: 12px;
  color: #999;
}

.news-card-more {
  display: block;
  text-align: center;
  padding: 12px;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
  color: #666;
  transition: all 0.3s;
}

.news-card-more:hover {
  color: #1a5fb4;
  background: #f8f9fa;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination-btn {
  padding: 8px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  transition: all 0.3s;
}

.pagination-btn:hover:not(:disabled) {
  border-color: #1a5fb4;
  color: #1a5fb4;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
  transition: all 0.3s;
}

.pagination-num:hover,
.pagination-num.active {
  border-color: #1a5fb4;
  background: #1a5fb4;
  color: #fff;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0d2847 0%, #0a1f38 100%);
  color: #fff;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 14px;
  color: #9ca3af;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #fff;
}

.footer-link.highlight {
  color: #e8a317;
}

.footer-contact p {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-qr-item {
  text-align: center;
}

.footer-qr-item img {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 8px;
}

.footer-qr-item span {
  font-size: 12px;
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #1e3a5f;
  padding-top: 24px;
  text-align: center;
}

.footer-copyright {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.footer-icp {
  font-size: 12px;
  color: #6b7280;
}

.footer-icp a {
  color: #6b7280;
  transition: color 0.3s;
}

.footer-icp a:hover {
  color: #fff;
}

/* News List Page */
.news-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.news-count {
  font-size: 14px;
  color: #666;
}

.news-count span {
  color: #1a5fb4;
  font-weight: 600;
}

.news-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .news-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* News Detail Page */
.article-header {
  margin-bottom: 32px;
}

.article-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .article-title {
    font-size: 28px;
  }
}

.article-meta {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #999;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 24px 0 16px;
}

.article-content ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-content ol li {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-quote {
  border-left: 4px solid #1a5fb4;
  background: #f0f7ff;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.article-image {
  margin: 24px 0;
  text-align: center;
}

.article-image img {
  max-width: 100%;
  border-radius: 8px;
}

.article-image-caption {
  font-size: 13px;
  color: #999;
  margin-top: 8px;
}

.article-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #e0e0e0;
}

.article-qr {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.article-qr-item {
  text-align: center;
}

.article-qr-item img {
  width: 100px;
  height: 100px;
}

.article-cta {
  text-align: center;
  color: #1a5fb4;
  font-size: 14px;
  margin-bottom: 24px;
}

.article-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.article-action-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 14px;
  color: #666;
  transition: color 0.3s;
}

.article-action-btn:hover,
.article-action-btn.active {
  color: #1a5fb4;
}

.article-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

.article-nav-item {
  font-size: 14px;
  color: #666;
}

.article-nav-item a {
  color: #1a5fb4;
  margin-left: 8px;
}

.article-nav-item a:hover {
  text-decoration: underline;
}

/* About Page */
.about-intro {
  max-width: 800px;
  margin: 0 auto 48px;
}

.about-intro p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Core Values */
.core-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

@media (min-width: 768px) {
  .core-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.core-value-card {
  position: relative;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 768px) {
  .core-value-card {
    height: 320px;
  }
}

.core-value-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.core-value-card:hover img {
  transform: scale(1.1);
}

.core-value-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.core-value-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: #fff;
}

.core-value-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.core-value-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Company Gallery Section */
.company-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #0d3a5c, #0d4a6c);
  overflow: hidden;
}

@media (min-width: 768px) {
  .company-section {
    padding: 80px 0;
  }
}

.company-section .section-title {
  color: #e8a317;
}

.company-track {
  display: flex;
  gap: 16px;
  animation: scroll 25s linear infinite;
}

@media (min-width: 768px) {
  .company-track {
    gap: 24px;
  }
}

.company-track:hover {
  animation-play-state: paused;
}

.company-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .company-image {
    width: 280px;
    height: 200px;
  }
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form Styles */
.form-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 28px;
  font-weight: bold;
  color: #1a5fb4;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .form-title {
    font-size: 32px;
  }
}

.form-desc {
  font-size: 14px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 14px;
  color: #333;
}

.form-label .required {
  color: #ef4444;
  margin-left: 4px;
}

.form-input {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #1a5fb4;
  box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.1);
}

.form-input::placeholder {
  color: #999;
}

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.form-radio input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-radio span {
  font-size: 14px;
  color: #333;
}

.form-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.form-submit .btn {
  min-width: 200px;
  justify-content: center;
}

/* Service List Page */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
}

.service-card-inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .service-card-inner {
    flex-direction: row;
    align-items: stretch;
  }
}

.service-card-image {
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

@media (min-width: 768px) {
  .service-card-image {
    width: 280px;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .service-card-image {
    width: 320px;
  }
}

.service-card-image img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.service-card-content {
  flex: 1;
  padding: 24px;
}

.service-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  padding: 6px 16px;
  background: #1a5fb4;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  transition: background 0.3s;
}

.service-tag:hover {
  background: #154a8f;
}

/* Service Detail Page */
.overview-section {
  padding: 48px 0;
  background: #fff;
}

.overview-content {
  max-width: 800px;
  margin: 0 auto;
}

.overview-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.services-section {
  padding: 64px 0;
  background: linear-gradient(135deg, #0d3a5c, #0d4a6c);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .service-item {
    flex-direction: row;
  }
}

.service-item-image {
  width: 100%;
  height: 160px;
}

@media (min-width: 640px) {
  .service-item-image {
    width: 280px;
    height: auto;
    flex-shrink: 0;
  }
}

.service-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item-content {
  flex: 1;
  padding: 20px;
}

.service-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.service-item-label {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.service-item-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-item-btn {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s;
}

.service-item-btn:hover {
  background: #fff;
  color: #0d3a5c;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-primary {
  color: #1a5fb4;
}

.text-accent {
  color: #e8a317;
}

.bg-gray {
  background: #f8f9fa;
}

.bg-white {
  background: #fff;
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}
