/* ========================================
   华弘真空科技 - 官网样式表
   设计系统: Swiss Modernism 2.0
   Primary: #0F172A (Dark Navy)
   Accent: #0369A1 (Teal Blue)  
   Bg Light: #F8FAFC
   Text Body: #475569
   Text Muted: #64748B
   Border: #E0E8F0
   Dark Card: #1E293B
   Font: Noto Sans SC
   ======================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.clear{clear:both;}
.flink {
  margin-top: 50px;
  width: 100%;
}

.flink .flink_tit {
  width: 100%;
  position: relative;
}

.flink .flink_tit p {
  height: 12px;
  width: 100%;
  background: url(../img/dian.png);
  position: absolute;
  top: 15px;
}

.flink .flink_tit span {
  height: 42px;
  background: #fff;
  color: #1C4587;
  font-size: 14px;
  border: 1px solid #1C4587;
  position: relative;
  z-index: 9;
  display: block;
  width: 115px;
  text-align: center;
  line-height: 42px;
  margin-left: 0px;
}

.flink .flink_list {
  width: 100%;
  margin-top: 20px;
  margin-left: 0px;
}

.flink .flink_list ul li {
  float: left;
  margin-right: 28px;
  margin-bottom: 8px;
}

.flink .flink_list ul li a {
  font-size: 12px;
  color: #5a5a5a;
}

.flink .flink_list ul li a:hover {
  color: #036aac;
}

.pro_tag {
    border-top: 1px dashed #999;
    border-bottom: 1px dashed #999;
    line-height: 40px;
    margin-top: 20px;
}

.pro_tag span {
  font-size: 14px;
  color: #333;
}
.pro_tag a {
  font-size: 11px;
  color: #666;
  padding-right: 15px;
}
.pro_tag a:hover {
  color: #036aac;
}
.showarea {
    padding: 15px 0;
}
.showarea h3 {
  padding-bottom: 10px;
  font-size: 16px;
  color: #036aac;
  border-bottom: 1px solid #e4e4e4;
  display: block;
}
.showarea h3 span {
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
}
.showarea .list {
      overflow: hidden;
    margin-top: 20px;
}
.showarea .list a {
    display: block;
    margin-right: 17px;
    font-size: 14px;
    float: left;
    margin-bottom: 12px;
}
.showarea .list a:hover {
  color: #036aac;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #475569;
  background: #F8FAFC;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid #E0E8F0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  height: 80px;
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img{width:329px;height:77px;}
.logo-icon {
  width: 40px;
  height: 40px;
  background: #0369A1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  color: #64748B;
  letter-spacing: 1px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav > a,
.main-nav .nav-link {
  font-size: 15px;
  color: #334155;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.main-nav > a:hover,
.main-nav > a.active,
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #0369A1;
  font-weight: 500;
}

.main-nav > a.active::after,
.main-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #0369A1;
  border-radius: 1px;
}

/* Dropdown Arrow */
.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  color: #94A3B8;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: #0369A1;
}

/* Dropdown Container */
.nav-item {
  position: relative;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #FFFFFF;
  border: 1px solid #E0E8F0;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15,23,42,0.12);
  min-width: 160px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  font-size: 14px;
  color: #475569;
  padding: 10px 20px;
  white-space: nowrap;
  transition: all 0.15s ease;
  font-weight: 400;
}

.dropdown-menu a:hover {
  background: #F0F9FF;
  color: #0369A1;
}

/* Header Phone */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #0369A1;
}

.header-phone .phone-icon {
  width: 20px;
  height: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0F172A;
  border-radius: 1px;
  transition: 0.3s;
}

/* ========================================
   SECTION COMMON
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 14px;
  color: #64748B;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: #0369A1;
  margin: 0 auto;
  border-radius: 1.5px;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
  color: #FFFFFF;
}

/* ========================================
   HERO CAROUSEL
   ======================================== */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 640px;
  overflow: hidden;
  background: #0F172A;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  transition: opacity 0.6s ease;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
}

.slide-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  background: #0369A1;
  color: #FFFFFF;
  font-size: 14px;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 18px;
  color: #CBD5E1;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(15,23,42,0.4);
  color: #FFFFFF;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  opacity: 0;
}

.hero-carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-arrow:hover {
  background: rgba(3,105,161,0.6);
  border-color: #0369A1;
}

.carousel-prev {
  left: 32px;
}

.carousel-next {
  right: 32px;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #0369A1;
  border-color: #0369A1;
  transform: scale(1.2);
}

.carousel-dot:hover {
  border-color: #FFFFFF;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  font-family: inherit;
}

.btn-primary {
  background: #0369A1;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #0284C7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
}

.btn-outline {
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 8px;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
  background: #FFFFFF;
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #F8FAFC;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0E8F0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-img {
  width: 100%;padding-bottom:75%;position: relative;overflow: hidden;background:red;
}

.product-img img {
  width: 100%;
  height: 100%;
   position: absolute;top: 0;left: 0;
}

.product-img .placeholder-icon {
  font-size: 48px;
  color: rgba(255,255,255,0.15);
}

.product-info {
  padding: 16px;
  text-align: center;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 6px;
}

.product-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
  background: #F8FAFC;
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, #1E293B, #334155);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 20px 0;
}

.about-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #0369A1;
  margin-bottom: 16px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-stats {
  display: flex;
  gap: 48px;
}

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

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #0369A1;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: #64748B;
  margin-top: 4px;
}

/* ========================================
   NEWS SECTION
   ======================================== */
.news-section {
  background: #FFFFFF;
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0E8F0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.news-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #0F172A, #0369A1);
  position: relative;
  overflow: hidden;
}

.news-card:nth-child(2) .news-img {
  background: linear-gradient(135deg, #0F172A, #15803D);
}

.news-card:nth-child(3) .news-img {
  background: linear-gradient(135deg, #0F172A, #C2410C);
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  padding: 20px;
}

.news-date {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 8px;
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.news-card:hover .news-title {
  color: #0369A1;
}

.news-excerpt {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

.news-more {
  text-align: center;
  margin-top: 40px;
}

.news-more a {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #0369A1;
  transition: color 0.2s ease;
}

.news-more a:hover {
  color: #0284C7;
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.advantages-section {
  background: #0F172A;
  padding: 80px 0;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.advantage-card {
  background: #1E293B;
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-4px);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(3, 105, 161, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 32px;
  height: 32px;
  stroke: #0369A1;
}

.advantage-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.advantage-desc {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 16px;
  color: #64748B;
  margin-bottom: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
  background: #0369A1;
  color: #FFFFFF;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: #0284C7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(3, 105, 161, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand .logo-area {
  margin-bottom: 16px;
}

.footer-brand .logo-text {
  color: #FFFFFF;
}

.footer-brand .logo-sub {
  color: #64748B;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #64748B;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #0369A1;
}

.footer-divider {
  height: 1px;
  background: #1E293B;
  margin-bottom: 24px;
}

.footer-bottom { 
  font-size: 13px;
  color: #475569;
}

/* ========================================
   INNER PAGES COMMON
   ======================================== */
.page-banner {
  background: #0F172A;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,105,161,0.1), transparent 50%);
}

.page-banner-title {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.page-banner-sub {
  font-size: 14px;
  color: #64748B;
  margin-top: 12px;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #94A3B8;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: #94A3B8;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #0369A1;
}

.breadcrumb .sep {
  color: #334155;
}

.page-content {
  padding: 80px 0;
  background: #FFFFFF;
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.products-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- Category Filter Bar (Top) --- */
.products-sidebar {
  background: #FFFFFF;
  border-bottom: 1px solid #E0E8F0;
  padding-bottom: 20px;
}

.products-sidebar-title {
  display: none;
}

.category-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #E0E8F0;
  font-weight: 400;
  background: #F8FAFC;
}

.category-item:hover {
  background: #F0F9FF;
  color: #0369A1;
  border-color: #0369A1;
}

.category-item.active {
  background: #0369A1;
  color: #FFFFFF;
  font-weight: 500;
  border-color: #0369A1;
}

.category-count {
  font-size: 12px;
  color: #94A3B8;
  background: #E2E8F0;
  padding: 2px 8px;
  border-radius: 10px;
}

.category-item.active .category-count {
  background: rgba(255,255,255,0.25);
  color: #FFFFFF;
}

/* --- Product Card Enhancements --- */
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-page-card {
  background: #FFFFFF;
  border: 1px solid #E0E8F0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.35s ease;
}

.product-page-card.hidden {
  display: none;
}

.product-page-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-page-img {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  position: relative;
  overflow: hidden;
}

.product-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page-info {
  padding: 24px;
}

.product-page-name {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 8px;
}

.product-page-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag {
  padding: 4px 12px;
  background: #F1F5F9;
  border-radius: 20px;
  font-size: 12px;
  color: #475569;
}

.product-page-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #0369A1;
}

/* ========================================
   NEWS LIST PAGE
   ======================================== */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E0E8F0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.news-list-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.news-list-img {
  width: 100%;
  height: 180px;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A, #0369A1);
}

.news-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-list-date {
  font-size: 12px;
  color: #94A3B8;
  margin-bottom: 8px;
}

.news-list-title {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.2s;
}

.news-list-item:hover .news-list-title {
  color: #0369A1;
}

.news-list-excerpt {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-intro-img {
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, #1E293B, #334155);
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.culture-card {
  text-align: center;
  padding: 40px 24px;
  background: #F8FAFC;
  border-radius: 8px;
  border: 1px solid #E0E8F0;
  transition: transform 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-4px);
}

.culture-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(3, 105, 161, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-title {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 8px;
}

.culture-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

/* ========================================
   CASES PAGE
   ======================================== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.case-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0E8F0;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

.case-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.case-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1E293B, #334155);
  position: relative;
  overflow: hidden;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(15,23,42,0.8));
  color: #FFFFFF;
}

.case-category {
  font-size: 12px;
  background: #0369A1;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
}

.case-info {
  padding: 20px;
}

.case-name {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 8px;
}

.case-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.6;
}

/* ========================================
   PARTNERS PAGE
   ======================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.partner-card {
  width: 160px;
  height: 80px;
  margin: 0 auto;
  background: #F8FAFC;
  border: 1px solid #E0E8F0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 16px;
}

.partner-card:hover {
  border-color: #0369A1;
  box-shadow: 0 4px 12px rgba(3,105,161,0.1);
  transform: translateY(-2px);
}

.partner-card img {
  max-width: 100%;
  max-height: 64px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(3, 105, 161, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: #0369A1;
}

.contact-item-label {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  color: #0F172A;
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
  background: #F8FAFC;
  border: 1px solid #E0E8F0;
  border-radius: 8px;
  padding: 40px;
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E8F0;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: #0F172A;
  background: #FFFFFF;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0369A1;
  box-shadow: 0 0 0 3px rgba(3,105,161,0.1);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  background: #0369A1;
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
}

.form-submit:hover {
  background: #0284C7;
}

/* ========================================
   MESSAGE PAGE
   ======================================== */
.message-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: #F8FAFC;
  border: 1px solid #E0E8F0;
  border-radius: 8px;
  padding: 40px;
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.product-detail-gallery {
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
  position: relative;
}

/* Product gallery carousel */
.product-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.product-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.product-slide-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-slide-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.5);
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}

.product-detail-gallery:hover .product-carousel-arrow {
  opacity: 1;
}

.product-carousel-arrow:hover {
  background: rgba(3, 105, 161, 0.7);
}

.product-carousel-prev {
  left: 16px;
}

.product-carousel-next {
  right: 16px;
}

.product-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.product-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.product-carousel-dot.active,
.product-carousel-dot:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}

.product-detail-info h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-detail-meta {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 24px;
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-detail-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Specs Table */
.specs-section {
  margin-bottom: 80px;
}

.specs-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #0369A1;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E0E8F0;
  border-radius: 8px;
  overflow: hidden;
}

.specs-table tr:nth-child(odd) {
  background: #F8FAFC;
}

.specs-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: #475569;
  border-bottom: 1px solid #E0E8F0;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #0F172A;
  width: 200px;
  background: rgba(3,105,161,0.04);
}

/* Related Products */
.related-section {
  margin-bottom: 80px;
}

.related-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #0369A1;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.related-card {
  background: #FFFFFF;
  border: 1px solid #E0E8F0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.related-card-img {
  width: 100%; 
  padding-bottom:75%;position: relative;overflow: hidden;
}
.related-card-img img{width: 100%;height: 100%; position: absolute;top: 0;left: 0;}
.related-card-info {
  padding: 16px;
}

.related-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 6px;
}

.related-card-desc {
  font-size: 13px;
  color: #64748B;
  line-height: 1.5;
}

/* ========================================
   CASE DETAIL PAGE
   ======================================== */
.case-detail-hero {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A, #1E3A5F);
  margin-bottom: 48px;
  position: relative;
}

.case-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.case-detail-main h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.3;
}

.case-detail-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.case-detail-tag {
  display: inline-block;
  background: #F0F9FF;
  color: #0369A1;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.case-detail-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0F172A;
  margin: 40px 0 16px;
}

.case-detail-body h2:first-child {
  margin-top: 0;
}

.case-detail-body p {
  font-size: 15px;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 20px;
}

.case-detail-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.case-detail-body li {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Case detail image carousel */
.case-detail-gallery {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  background: #0F172A;
}

.case-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.case-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.case-slide-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.case-slide-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.5);
  color: #FFFFFF;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}

.case-detail-gallery:hover .case-carousel-arrow {
  opacity: 1;
}

.case-carousel-arrow:hover {
  background: rgba(3, 105, 161, 0.7);
}

.case-carousel-prev {
  left: 16px;
}

.case-carousel-next {
  right: 16px;
}

.case-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.case-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.case-carousel-dot.active,
.case-carousel-dot:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}

/* Case Sidebar */
.case-sidebar {
  position: sticky;
  top: 100px;
}

.case-sidebar-card {
  background: #F8FAFC;
  border: 1px solid #E0E8F0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.case-sidebar-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0369A1;
}

.case-sidebar-info p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.case-sidebar-info .label {
  color: #94A3B8;
}

.case-sidebar-info .value {
  font-weight: 500;
  color: #0F172A;
}

.sidebar-related-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-related-item {
  font-size: 14px;
  color: #475569;
  padding: 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.sidebar-related-item:hover {
  background: #FFFFFF;
  color: #0369A1;
  border-color: #E0E8F0;
}

/* ========================================
   NEWS DETAIL PAGE
   ======================================== */
.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.news-detail-header {
  margin-bottom: 40px;
}

.news-detail-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 16px;
  line-height: 1.4;
}

.news-detail-header .news-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #94A3B8;
  flex-wrap: wrap;
}

.news-detail-header .news-cat-tag {
  display: inline-block;
  background: #F0F9FF;
  color: #0369A1;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 500;
}

.news-detail-cover {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #0F172A, #1E3A5F);
  margin-bottom: 40px;
}

.news-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-body {
  font-size: 16px;
  color: #334155;
  line-height: 2;
}

.news-detail-body p {
  margin-bottom: 24px;
}

.news-detail-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0F172A;
  margin: 40px 0 16px;
}

.news-detail-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}

/* News Sidebar */
.news-sidebar {
  position: sticky;
  top: 100px;
}

.news-sidebar-card {
  background: #F8FAFC;
  border: 1px solid #E0E8F0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.news-sidebar-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0369A1;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image {
    height: 300px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page-intro {
    grid-template-columns: 1fr;
  }
  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-detail-gallery {
    height: 320px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .case-detail-layout,
  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .case-sidebar,
  .news-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .hero-carousel {
    height: 480px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }

  .carousel-dots {
    bottom: 20px;
    gap: 8px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .main-nav,
  .header-phone {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E0E8F0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    gap: 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .main-nav.open > a,
  .main-nav.open .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 16px;
    justify-content: space-between;
    width: 100%;
  }

  .main-nav.open .nav-item {
    width: 100%;
  }

  .main-nav.open .nav-link .dropdown-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
  }

  .main-nav.open .nav-item.expanded .dropdown-arrow {
    transform: rotate(180deg);
    color: #0369A1;
  }

  /* Mobile dropdown: static accordion */
  .main-nav.open .dropdown-menu {
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    background: #F8FAFC;
    transition: max-height 0.35s ease;
  }

  .main-nav.open .nav-item.expanded .dropdown-menu {
    max-height: 400px;
  }

  .main-nav.open .dropdown-menu a {
    padding: 10px 20px 10px 28px;
    border-bottom: 1px solid #EDF2F7;
    font-size: 14px;
    color: #64748B;
  }

  .main-nav.open .dropdown-menu a:hover {
    background: #F0F9FF;
    color: #0369A1;
  }

  .menu-toggle {
    display: flex;
  }

  .section-title {
    font-size: 26px;
  }

  .about-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .news-list-item {
    grid-template-columns: 1fr;
  }

  .news-list-img {
    height: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .products-layout {
    gap: 24px;
  }

  .products-sidebar {
    padding-bottom: 14px;
  }

  .category-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .category-list::-webkit-scrollbar {
    display: none;
  }

  .category-item {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
  }

  .category-count {
    margin-left: 2px;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 420px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-tag {
    font-size: 12px;
    padding: 5px 16px;
  }

  .carousel-arrow {
    display: none;
  }

  .product-grid,
  .news-grid,
  .advantages-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .products-page-grid {
    grid-template-columns: 1fr;
  }

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

  .partner-card {
    width: 140px;
    height: 70px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-wrap,
  .message-form-wrap {
    padding: 24px;
  }
  .product-detail-gallery {
    height: 240px;
  }
  .case-detail-hero,
  .news-detail-cover {
    height: 240px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .specs-table td:first-child {
    width: 120px;
  }
}

/* ========================================
   HONORS PAGE
   ======================================== */
.honors-section {
  margin-bottom: 72px;
}

.honors-section:last-child {
  margin-bottom: 0;
}

.honors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.honor-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E0E8F0;
  background: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.honor-img {
  aspect-ratio: 210 / 297;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.honor-img-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.honor-info {
  padding: 20px 24px 24px;
}

.honor-name {
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.5;
}

.honor-issuer {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 4px;
}

.honor-date {
  font-size: 13px;
  color: #94A3B8;
}

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

@media (max-width: 1024px) {
  .honors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .honors-section {
    margin-bottom: 48px;
  }
}
