body.site-pandainter {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color, #ffffff);
  color: var(--text-color, #1e293b);
  font-size: 14px;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: var(--bg-color, #ffffff);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.sticky-header .header-main {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}
.sticky-header .header-main .header-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.sticky-header .header-main .header-content .logo-wrap {
  flex-shrink: 0;
}
.sticky-header .header-main .header-content .logo-wrap .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sticky-header .header-main .header-content .logo-wrap .logo .logo-text {
  color: var(--primary-color, #3b82f6);
  font-size: 20px;
  font-weight: 700;
}
.sticky-header .header-main .header-content .search-wrap {
  flex: 1;
  max-width: 400px;
}
.sticky-header .header-main .header-content .search-wrap .search-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--primary-color, #3b82f6);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}
.sticky-header .header-main .header-content .search-wrap .search-form .search-input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
}
.sticky-header .header-main .header-content .search-wrap .search-form .search-input::placeholder {
  color: #94a3b8;
}
.sticky-header .header-main .header-content .search-wrap .search-form .search-btn {
  background: var(--primary-color, #3b82f6);
  border: none;
  color: #ffffff;
  padding: 12px 16px;
  cursor: pointer;
}
.sticky-header .header-main .header-content .search-wrap .search-form .search-btn:hover {
  filter: brightness(0.9);
}
.sticky-header .header-main .header-content .header-utils {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-header .header-main .header-content .header-utils .util-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-color, #1e293b);
  text-decoration: none;
  font-size: 13px;
}
.sticky-header .header-main .header-content .header-utils .util-btn:hover {
  color: var(--primary-color, #3b82f6);
}
.sticky-header .header-main .header-content .header-utils .util-btn i {
  font-size: 20px;
}
.sticky-header .header-main .header-content .header-utils .util-btn .badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: var(--accent-color, #f59e0b);
  color: #ffffff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
}

.main-navigation {
  background: var(--bg-color, #ffffff);
  border-bottom: 1px solid var(--border-color, #e2e8f0);
}
.main-navigation .nav-wrapper {
  display: flex;
  align-items: center;
  height: 50px;
}
.main-navigation .nav-wrapper .gnb-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation .nav-wrapper .gnb-menu li a {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  color: var(--text-color, #1e293b);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.main-navigation .nav-wrapper .gnb-menu li a:hover {
  color: var(--primary-color, #3b82f6);
}
.main-navigation .nav-wrapper .gnb-menu li.active a {
  color: var(--primary-color, #3b82f6);
  border-bottom-color: var(--primary-color, #3b82f6);
}

.main-container {
  min-height: 60vh;
  padding: 40px 0;
}

.hero-section .hero-slide {
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, var(--primary-color, #3b82f6) 0%, rgb(132.1414634146, 176.6463414634, 249.3585365854) 100%);
  display: flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
}
.hero-section .hero-slide .hero-content {
  padding: 40px;
  max-width: 500px;
  color: #ffffff;
}
.hero-section .hero-slide .hero-content .hero-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.hero-section .hero-slide .hero-content .hero-desc {
  font-size: 16px;
  margin-bottom: 24px;
  opacity: 0.9;
}
.hero-section .hero-slide .hero-content .hero-btn {
  display: inline-block;
  background: #ffffff;
  color: var(--primary-color, #3b82f6);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}
.hero-section .hero-slide .hero-content .hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  border: 1px solid var(--border-color, #e2e8f0);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.product-card .product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card .product-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  background: #f8fafc;
}
.product-card .product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .product-image .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}
.product-card .product-image .badge.badge-sale {
  background: var(--accent-color, #f59e0b);
}
.product-card .product-image .badge.badge-new {
  background: var(--success-color, #22c55e);
}
.product-card .product-info {
  padding: 16px;
}
.product-card .product-info .product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color, #1e293b);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .product-info .price-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card .product-info .price-wrap .discount-rate {
  color: var(--accent-color, #f59e0b);
  font-size: 16px;
  font-weight: 700;
}
.product-card .product-info .price-wrap .price-sale {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color, #1e293b);
}
.product-card .product-info .price-wrap .price-original {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.section-header .section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color, #1e293b);
}
.section-header .view-more {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.section-header .view-more:hover {
  color: var(--primary-color, #3b82f6);
}

.site-footer {
  background: #f8fafc;
  border-top: 1px solid var(--border-color, #e2e8f0);
  padding: 48px 0 32px;
  margin-top: 60px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.site-footer .footer-grid .footer-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-color, #1e293b);
  margin-bottom: 16px;
}
.site-footer .footer-grid .footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-grid .footer-section .footer-links li {
  margin-bottom: 10px;
}
.site-footer .footer-grid .footer-section .footer-links li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
}
.site-footer .footer-grid .footer-section .footer-links li a:hover {
  color: var(--primary-color, #3b82f6);
}
.site-footer .footer-grid .footer-section .social-links {
  display: flex;
  gap: 12px;
}
.site-footer .footer-grid .footer-section .social-links .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s;
}
.site-footer .footer-grid .footer-section .social-links .social-link:hover {
  background: var(--primary-color, #3b82f6);
}
.site-footer .footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-color, #e2e8f0);
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--primary-color, #3b82f6);
  color: #ffffff;
}
.btn-primary:hover {
  filter: brightness(0.9);
}
.btn-secondary {
  background: var(--secondary-color, #64748b);
  color: #ffffff;
}
.btn-secondary:hover {
  filter: brightness(0.9);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--primary-color, #3b82f6);
  color: var(--primary-color, #3b82f6);
}
.btn-outline:hover {
  background: var(--primary-color, #3b82f6);
  color: #ffffff;
}

.text-primary {
  color: var(--primary-color, #3b82f6) !important;
}

.text-accent {
  color: var(--accent-color, #f59e0b) !important;
}

.bg-primary {
  background-color: var(--primary-color, #3b82f6) !important;
}

.bg-light {
  background-color: #f8fafc !important;
}

@media (max-width: 768px) {
  .sticky-header .header-main .header-content {
    flex-wrap: wrap;
  }
  .sticky-header .header-main .header-content .search-wrap {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 12px;
  }
  .hero-section .hero-slide {
    min-height: 300px;
  }
  .hero-section .hero-slide .hero-content {
    padding: 24px;
  }
  .hero-section .hero-slide .hero-content .hero-title {
    font-size: 24px;
  }
}
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  background: #0a0a0a;
}
.hero-section .hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-section .swiper-slide {
  position: relative;
}
.hero-section .hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.hero-section .hero-slide-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.hero-section .hero-slide-bg.bg-1 {
  background-image: url("/images/sites/pandainter/hero1.jpg");
}
.hero-section .hero-slide-bg.bg-2 {
  background-image: url("/images/sites/pandainter/hero2.jpg");
}
.hero-section .hero-slide-bg.bg-3 {
  background-image: url("/images/sites/pandainter/hero3.jpg");
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10%;
  color: #fff;
}
.hero-section .hero-subtitle {
  color: #D4AF37;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.hero-section .hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero-section .text-accent {
  color: #D4AF37;
}
.hero-section .hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-section .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-section .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.hero-section .btn-hero.primary, .hero-section .btn-hero.call-btn {
  background: #D4AF37;
  color: #1a1a1a;
}
.hero-section .btn-hero.primary:hover, .hero-section .btn-hero.call-btn:hover {
  background: #B8962E;
  transform: translateY(-2px);
}
.hero-section .btn-hero.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-section .btn-hero.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}
.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
  color: rgba(255, 255, 255, 0.7);
}
.hero-section .swiper-button-prev:hover,
.hero-section .swiper-button-next:hover {
  color: #D4AF37;
}
.hero-section .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
}
.hero-section .swiper-pagination-bullet-active {
  background: #D4AF37;
}
.hero-section .hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 12px;
  animation: bounce 2s infinite;
  z-index: 10;
}
.hero-section .hero-scroll i {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }
  .hero-section .hero-content {
    padding: 0 20px;
  }
  .hero-section .hero-title {
    font-size: 28px;
  }
  .hero-section .hero-desc {
    font-size: 15px;
  }
}

.business-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}
.business-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.business-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.business-section .section-label {
  display: inline-block;
  color: #D4AF37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.business-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.business-section .section-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}
.business-section .business-swiper-wrap {
  position: relative;
  padding: 0 50px;
}
.business-section .business-swiper-wrap .swiper-button-prev,
.business-section .business-swiper-wrap .swiper-button-next {
  color: #D4AF37;
  width: 44px;
  height: 44px;
}
.business-section .business-swiper-wrap .swiper-button-prev::after,
.business-section .business-swiper-wrap .swiper-button-next::after {
  font-size: 18px;
}
.business-section .business-swiper-wrap .swiper-button-prev {
  left: 0;
}
.business-section .business-swiper-wrap .swiper-button-next {
  right: 0;
}
.business-section .service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s;
}
.business-section .service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
}
.business-section .service-card .card-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.business-section .service-card .card-icon i {
  font-size: 28px;
  color: #D4AF37;
}
.business-section .service-card .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.business-section .service-card .card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.business-section .service-card .card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.business-section .service-card .card-features li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.business-section .service-card .card-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #D4AF37;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .business-section {
    padding: 60px 0;
  }
  .business-section .business-swiper-wrap {
    padding: 0 20px;
  }
  .business-section .section-title {
    font-size: 28px;
  }
}

.company-section {
  padding: 80px 0;
  background: #111;
}
.company-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.company-section .company-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .company-section .company-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.company-section .company-image {
  border-radius: 16px;
  overflow: hidden;
}
.company-section .company-image img {
  width: 100%;
  height: auto;
  display: block;
}
.company-section .company-text .section-header {
  margin-bottom: 24px;
}
.company-section .company-text .section-label {
  display: inline-block;
  color: #D4AF37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.company-section .company-text .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.company-section .company-lead {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
}
.company-section .company-lead strong {
  color: #D4AF37;
}
.company-section .company-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}
.company-section .company-info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 576px) {
  .company-section .company-info-list {
    grid-template-columns: 1fr;
  }
}
.company-section .company-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.company-section .company-info-item i {
  font-size: 20px;
  color: #D4AF37;
  margin-top: 2px;
}
.company-section .company-info-item h5 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-bottom: 4px;
}
.company-section .company-info-item p {
  font-size: 14px;
  color: #fff;
  margin: 0;
}

.notice-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
}
.notice-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.notice-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.notice-section .section-label {
  display: inline-block;
  color: #D4AF37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.notice-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
.notice-section .notice-content {
  display: grid;
}
@media (max-width: 768px) {
  .notice-section .notice-content {
    grid-template-columns: 1fr;
  }
}
.notice-section .notice-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
}
.notice-section .notice-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.notice-section .notice-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.notice-section .notice-box-title i {
  color: #D4AF37;
}
.notice-section .notice-more {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.notice-section .notice-more:hover {
  color: #D4AF37;
}
.notice-section .notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.notice-section .notice-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.notice-section .notice-item:last-child {
  border-bottom: none;
}
.notice-section .notice-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  transition: all 0.2s;
}
.notice-section .notice-item a:hover .notice-title {
  color: #D4AF37;
}
.notice-section .notice-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #D4AF37;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  flex-shrink: 0;
}
.notice-section .notice-title {
  flex: 1;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice-section .notice-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .notice-section {
    padding: 60px 0;
  }
  .notice-section .section-title {
    font-size: 28px;
  }
}

.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}
.contact-section .section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-section .section-label {
  display: inline-block;
  color: #D4AF37;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.contact-section .section-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}
.contact-section .contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .contact-section .contact-content {
    grid-template-columns: 1fr;
  }
}
.contact-section .contact-info .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-section .contact-info .contact-info-item .contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-section .contact-info .contact-info-item .contact-icon i {
  font-size: 20px;
  color: #D4AF37;
}
.contact-section .contact-info .contact-info-item .contact-text h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-section .contact-info .contact-info-item .contact-text p {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}
.contact-section .contact-info .contact-info-item .contact-text p a {
  color: #D4AF37;
  text-decoration: none;
}
.contact-section .contact-info .contact-info-item .contact-text p a:hover {
  text-decoration: underline;
}
.contact-section .contact-info .contact-info-item .contact-text .contact-note {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.contact-section .contact-info .social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.contact-section .contact-info .social-links .social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.contact-section .contact-info .social-links .social-link:hover {
  background: #D4AF37;
  transform: translateY(-3px);
}
.contact-section .contact-form-wrap {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-section .contact-form-wrap .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-form-wrap .form-group label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-section .contact-form-wrap .form-group input,
.contact-section .contact-form-wrap .form-group select,
.contact-section .contact-form-wrap .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s;
}
.contact-section .contact-form-wrap .form-group input::placeholder,
.contact-section .contact-form-wrap .form-group select::placeholder,
.contact-section .contact-form-wrap .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.contact-section .contact-form-wrap .form-group input:focus,
.contact-section .contact-form-wrap .form-group select:focus,
.contact-section .contact-form-wrap .form-group textarea:focus {
  outline: none;
  border-color: #D4AF37;
  background: rgba(0, 0, 0, 0.4);
}
.contact-section .contact-form-wrap .form-group select {
  cursor: pointer;
}
.contact-section .contact-form-wrap .form-group select option {
  background: #1a1a1a;
  color: #fff;
}
.contact-section .contact-form-wrap .form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-section .contact-form-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 576px) {
  .contact-section .contact-form-wrap .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-section .contact-form-wrap .privacy-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0;
}
.contact-section .contact-form-wrap .privacy-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #D4AF37;
}
.contact-section .contact-form-wrap .privacy-check label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  cursor: pointer;
}
.contact-section .contact-form-wrap .privacy-check label a {
  color: #D4AF37;
  text-decoration: underline;
}
.contact-section .contact-form-wrap .submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  border: none;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-section .contact-form-wrap .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}
.contact-section .contact-form-wrap .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.panda-topbar {
  background: linear-gradient(90deg, #d4a853, #e8c67a);
  padding: 8px 0;
  font-size: 13px;
}
.panda-topbar .topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panda-topbar .topbar-left .topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
}
.panda-topbar .topbar-left .topbar-phone i {
  font-size: 16px;
}
.panda-topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.panda-topbar .topbar-right .topbar-link {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
}
.panda-topbar .topbar-right .topbar-link:hover {
  text-decoration: underline;
}
.panda-topbar .topbar-right .topbar-divider {
  color: rgba(0, 0, 0, 0.3);
}

.panda-header {
  background: #1a1a1a;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.panda-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.panda-header .panda-logo {
  text-decoration: none;
}
.panda-header .panda-logo .logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}
.panda-header .panda-logo .logo-text .logo-accent {
  color: #d4a853;
}
.panda-header .panda-logo img {
  max-height: 40px;
}
.panda-header .panda-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.panda-header .panda-nav .nav-item {
  position: relative;
}
.panda-header .panda-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.panda-header .panda-nav .nav-item .nav-link:hover {
  color: #d4a853;
}
.panda-header .panda-nav .nav-item .nav-link i {
  font-size: 12px;
}
.panda-header .panda-nav .nav-item .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #2d2d2d;
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  list-style: none;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.panda-header .panda-nav .nav-item .sub-menu .sub-item .sub-link {
  display: block;
  padding: 10px 20px;
  color: #999999;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.panda-header .panda-nav .nav-item .sub-menu .sub-item .sub-link:hover {
  color: #d4a853;
  background: rgba(255, 255, 255, 0.05);
}
.panda-header .panda-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.panda-header .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.panda-header .mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .panda-header .mobile-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .panda-header .panda-nav {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #2d2d2d;
}
.mobile-menu .mobile-menu-header .mobile-logo {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}
.mobile-menu .mobile-menu-header .mobile-logo .logo-accent {
  color: #d4a853;
}
.mobile-menu .mobile-menu-header .mobile-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}
.mobile-menu .mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
}
.mobile-menu .mobile-nav .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu .mobile-nav .mobile-nav-item .mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid #2d2d2d;
}
.mobile-menu .mobile-nav .mobile-nav-item .mobile-nav-link:hover {
  color: #d4a853;
}
.mobile-menu .mobile-nav .mobile-nav-item .mobile-nav-link i {
  font-size: 12px;
}
.mobile-menu .mobile-nav .mobile-nav-item .mobile-sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}
.mobile-menu .mobile-nav .mobile-nav-item .mobile-sub-menu .mobile-sub-item .mobile-sub-link {
  display: block;
  padding: 12px 20px 12px 36px;
  color: #999999;
  text-decoration: none;
  font-size: 14px;
}
.mobile-menu .mobile-nav .mobile-nav-item .mobile-sub-menu .mobile-sub-item .mobile-sub-link:hover {
  color: #d4a853;
}
.mobile-menu .mobile-nav .mobile-nav-item.open .mobile-sub-menu {
  display: block;
}
.mobile-menu .mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid #2d2d2d;
  display: flex;
  gap: 10px;
}
.mobile-menu .mobile-menu-footer .mobile-btn {
  flex: 1;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  background: #d4a853;
  color: #1a1a1a;
}
.mobile-menu .mobile-menu-footer .mobile-btn.outline {
  background: transparent;
  border: 1px solid #d4a853;
  color: #d4a853;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.sub-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.sub-banner .sub-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  z-index: 0;
}
.sub-banner .sub-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(26, 26, 26, 0.3) 100%);
}
.sub-banner .sub-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.sub-banner .sub-banner-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  letter-spacing: 1px;
}
.sub-banner .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.sub-banner .breadcrumb a {
  color: #d4a853;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.sub-banner .breadcrumb a:hover {
  color: #e8c67a;
  text-decoration: underline;
}
.sub-banner .breadcrumb .separator {
  color: #999999;
  display: flex;
  align-items: center;
}
.sub-banner .breadcrumb .separator i {
  font-size: 12px;
}
.sub-banner .breadcrumb .current {
  color: #ffffff;
  font-weight: 500;
}
@media (max-width: 768px) {
  .sub-banner {
    padding: 60px 0;
  }
  .sub-banner .sub-banner-title {
    font-size: 28px;
  }
  .sub-banner .breadcrumb {
    font-size: 13px;
  }
}

.panda-footer {
  background: #1a1a1a;
  padding: 48px 0 32px;
}
.panda-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.panda-footer .footer-top {
  background: transparent;
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid #2d2d2d;
}
.panda-footer .footer-top .footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.panda-footer .footer-top .footer-links a {
  color: #999999;
  text-decoration: none;
  font-size: 14px;
  padding: 0 12px;
  transition: color 0.2s;
}
.panda-footer .footer-top .footer-links a:hover {
  color: #ffffff;
}
.panda-footer .footer-top .footer-links a.highlight {
  color: #d4a853;
  font-weight: 600;
}
.panda-footer .footer-top .footer-links a.highlight:hover {
  color: #e8c67a;
}
.panda-footer .footer-top .footer-links .divider {
  color: #2d2d2d;
  font-size: 12px;
}
.panda-footer .footer-info {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.panda-footer .footer-info .footer-logo .logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}
.panda-footer .footer-info .footer-logo .logo-text .logo-accent {
  color: #d4a853;
}
.panda-footer .footer-info .company-info .info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.panda-footer .footer-info .company-info .info-list li {
  font-size: 13px;
}
.panda-footer .footer-info .company-info .info-list li .info-label {
  color: #999999;
}
.panda-footer .footer-info .company-info .info-list li .info-value {
  color: #ffffff;
}
.panda-footer .footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #2d2d2d;
  text-align: center;
}
.panda-footer .footer-bottom .copyright {
  margin: 0;
  font-size: 12px;
  color: #999999;
}
@media (max-width: 768px) {
  .panda-footer {
    padding: 40px 0 24px;
  }
  .panda-footer .footer-top {
    padding-bottom: 24px;
  }
  .panda-footer .footer-top .footer-links {
    gap: 8px 0;
  }
  .panda-footer .footer-top .footer-links a {
    font-size: 13px;
    padding: 0 8px;
  }
  .panda-footer .footer-info {
    padding: 24px 0;
  }
  .panda-footer .footer-info .company-info .info-list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .panda-footer .footer-info .company-info .info-list li {
    text-align: center;
  }
  .panda-footer .footer-bottom {
    padding-top: 20px;
  }
  .panda-footer .footer-bottom .copyright {
    font-size: 11px;
  }
}

body.site-pandainter .footer-top {
  background: transparent;
  border-bottom: none;
}
body.site-pandainter .business-section {
  margin-bottom: 0;
  border: none;
}
body.site-pandainter .breadcrumb {
  background: transparent;
  border-bottom: none;
  margin-bottom: 0;
  padding: 0;
}
body.site-pandainter .hero-section {
  margin-bottom: 0;
}

.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.floating-call .floating-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}
.floating-call .floating-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}
.floating-call .floating-call-btn i {
  line-height: 1;
}
