/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;

  color: #111;
}

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

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

.img-responsive {
  width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
.section {
  padding: 30px 0;
  background-color: #ffffff;
}

.section-small {
  padding: 40px 0;
}

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

.bg-primary {
  background-color: #1e3a8a;
  color: white;
}

.text-white {
  color: white;
}

/* Standard section header - đồng bộ cho tất cả sections */
.standard-section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  line-height: 1.2;
  transition: all 0.3s ease;
  cursor: default;
}

/* Chuẩn hóa tất cả section-title có cùng style */
.vision-mission .section-title,
.clients .section-title,
.about-text .section-title,
.statistics .section-title,
.team .section-title,
.bg-primary .section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  line-height: 1.2;
  transition: all 0.3s ease;
  cursor: default;
}

.section-title:hover {
  transform: translateY(-2px);
  color: #2563eb;
}

.section-title:hover::after {
  background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa, #93c5fd);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  animation: titleUnderlineHover 0.6s ease-out;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: var(--title-after-width, 60%);
  min-width: 120px;
  max-width: 300px;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #60a5fa);
  border-radius: 2px;
  opacity: 0;
  animation: titleUnderline 0.8s ease-out 0.3s forwards;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

@keyframes titleUnderline {
  0% {
    transform: translateX(-50%) scaleX(0);
    opacity: 0;
  }
  50% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }
}

@keyframes titleUnderlineHover {
  0% {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scaleX(1.1);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }
}

.section-title i {
  color: #1e3a8a;
  margin-right: 12px;
  font-size: 0.9em;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Animation cho section-title khi scroll vào view */
.section-title.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  animation: titleSlideIn 0.8s ease-out forwards;
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive cho section-title::after */
@media (max-width: 768px) {
  .section-title::after {
    width: 70%;
    min-width: 100px;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .section-title::after {
    width: 80%;
    min-width: 80px;
    max-width: 200px;
  }
}

/* Đã được chuẩn hóa ở trên */

.section-subtitle {
  font-size: 1.125rem;
  color: #030303;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.bg-primary .section-subtitle {
  color: rgba(26, 23, 23, 0.9);
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100vw;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-brand-link {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0px;
}

.nav-brand-link:hover {
  transform: translateY(-1px);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.brand-text {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tagline {
  font-size: 0.7rem;
  color: #666;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: #333;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #1e3a8a !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1e3a8a;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100% !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Navigation Dropdown Styles */
.nav-dropdown {
  position: relative;
}

.nav-chevron {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.services-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.nav-dropdown:hover .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* About dropdown specific styles */
.nav-dropdown[aria-label="Giới thiệu"] .services-dropdown {
  min-width: 180px;
}

.nav-dropdown[aria-label="Giới thiệu"] .dropdown-link {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover,
.dropdown-link.active {
  background: #f8f9fa;
  color: #1e3a8a !important;
  font-weight: 600;
}

/* Dropdown arrow */
.services-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Smooth zoom-out baseline */
  transform: scale(1.1);
  transition: transform 5000ms ease-out;
  will-change: transform;
}

/* When slide is active, gently zoom the background out */
.slide.active .slide-background {
  transform: scale(1);
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.7),
    rgba(30, 58, 138, 0.5)
  );
  z-index: 2;
}

/* Slide-specific backgrounds */
.slide[data-bg="slide-1"] .slide-background {
  background: linear-gradient(
      135deg,
      rgba(30, 58, 138, 0.2),
      rgba(59, 130, 246, 0.3)
    ),
    url("../images/slider/slider_1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide[data-bg="slide-2"] .slide-background {
  background: linear-gradient(
      135deg,
      rgba(30, 58, 138, 0.2),
      rgba(59, 130, 246, 0.3)
    ),
    url("../images/slider/slider_2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide[data-bg="slide-3"] .slide-background {
  background: linear-gradient(
      135deg,
      rgba(30, 58, 138, 0.2),
      rgba(59, 130, 246, 0.3)
    ),
    url("../images/slider/slider_3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide[data-bg="slide-4"] .slide-background {
  background: linear-gradient(
      135deg,
      rgba(30, 58, 138, 0.2),
      rgba(59, 130, 246, 0.3)
    ),
    url("../images/slider/slider_4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-in-out 0.3s;
  position: relative;
  z-index: 3;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.slide-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  opacity: 0.9;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-weight: 400;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 10;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.slider-arrow:active {
  transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

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

.slider-dot.active {
  background: white;
  border-color: white;
}

.slider-dot:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.5);
}

/* Slider Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 10;
  width: 100%;
}

.slider-progress-bar {
  height: 100%;
  background: white;
  width: 0%;
  transition: width linear;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
}

.btn-primary {
  background: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: #1e3a8a;
}

.btn-white {
  background: white;
  color: #1e3a8a;
}

.btn-white:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: white;
  color: #1e3a8a;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: #1e3a8a;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0 20px;
  text-align: center;
  justify-content: center;
}

.service-link:hover {
  gap: 0.75rem;
}

/* About Preview */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Đã được chuẩn hóa ở trên */

.about-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: justify;
}

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

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.5rem;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

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

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

.location-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.location-icon {
  width: 60px;
  height: 60px;
  background: #1e3a8a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.location-card h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.location-contact {
  margin-top: 1rem;
  color: #666;
  font-size: 0.875rem;
}

/* CTA Section */
.cta {
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

/* Page Header */
.page-header {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-header-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.1);
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.8) 0%,
    rgba(30, 41, 59, 0.7) 50%,
    rgba(51, 65, 85, 0.85) 100%
  );
  z-index: 2;
}

.page-header-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 3;
}

.page-header-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 1);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.page-header-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-header-badge i {
  font-size: 1rem;
  color: #3b82f6;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  color: rgba(255, 255, 255, 1);
}

.page-title .highlight,
.banner-title .highlight {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  white-space: nowrap;
}

.page-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.4;
}

.page-header-description {
  margin-bottom: 3rem;
}

.page-header-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.page-header-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.page-header-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.page-header-stats .stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-header-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-header-stats .stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-header-scroll-indicator {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: gentle-bounce 4s ease-in-out infinite;
  opacity: 0.7;
  transform: translateX(-50%);
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%) translateY(-2px);
  opacity: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.scroll-arrow i {
  color: white;
  font-size: 1rem;
}

@keyframes gentle-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* Company Story */
/* Clean & Modern Company Story Section */
.company-story.section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}


.company-story .container {
  position: relative;
  z-index: 2;
}

/* Clean Header */
.story-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15);
}

.header-badge i {
  font-size: 0.7rem;
}

.title-highlight {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.story-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin: 1.5rem 0;
  font-weight: 500;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.decoration-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1e3a8a, transparent);
}

.decoration-dot {
  width: 6px;
  height: 6px;
  background: #1e3a8a;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(30, 58, 138, 0.2);
}

.story-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.story-image-section {
  position: relative;
}

.image-container {
  position: relative;
}

.story-content-section {
  padding-left: 2rem;
}

/* Subtle Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1e293b;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.floating-card i {
  color: #1e3a8a;
  font-size: 0.9rem;
}

.floating-card-1 {
  top: -15px;
  right: -25px;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: -15px;
  left: -25px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.story-intro {
  margin-bottom: 0;
}

.intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  color: #1e3a8a;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.intro-badge i {
  font-size: 0.7rem;
}

.story-intro h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.story-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Clean Call to Action */
.story-cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #ffffff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.25);
  color: #ffffff;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-link:hover {
  border-color: #1e3a8a;
  background: rgba(30, 58, 138, 0.05);
  color: #1e3a8a;
}

.story-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.features-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.features-title i {
  color: #1e3a8a;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-left-color: #1e3a8a;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.feature-icon i {
  font-size: 1.25rem;
  color: #64748b;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-icon i {
  color: #ffffff;
}

.feature-content h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-tags .tag {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  color: #1e3a8a;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.mission-vision {
  display: grid;
  gap: 2rem;
}

.mission,
.vision {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #1e3a8a;
}

.mission h3,
.vision h3 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-stats-section {
  max-width: 1000px;
  margin: 0 auto;
}

.stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-header h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.stats-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

.story-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.story-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.story-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.02);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-stats .stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-stats .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.story-stats .stat-item:hover::before {
  opacity: 1;
}

.story-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
}

.story-stats .stat-item > * {
  position: relative;
  z-index: 2;
}

.story-stats .stat-item:hover .stat-number,
.story-stats .stat-item:hover .stat-label,
.story-stats .stat-item:hover .stat-icon i {
  color: #ffffff;
}

.story-stats .stat-icon {
  margin-bottom: 1rem;
}

.story-stats .stat-icon i {
  font-size: 2rem;
  color: #1e3a8a;
  transition: color 0.3s ease;
}

.story-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.story-stats .stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-bottom: 1rem;
}

.story-stats .stat-progress {
  width: 100%;
  height: 4px;
  background: rgba(30, 58, 138, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.story-stats .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Statistics */
.statistics.section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Statistics section title uses global style */

.statistics .section-subtitle {
  color: #475569;
}

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

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0ea5e9, #1e3a8a);
  color: rgb(255, 255, 255);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: #475569;
}

/* Vision mission section title uses global style */
.vm-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.vm-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.13);
  padding: 2.2rem 2rem 2rem 2rem;
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 2px solid #e3f2fd;
  position: relative;
}
.vm-card:hover {
  box-shadow: 0 8px 40px 0 rgba(30, 41, 59, 0.18);
  transform: translateY(-8px) scale(1.03);
  border-color: #00bcd4;
}
.vm-icon {
  background: linear-gradient(135deg, #1a237e 60%, #00bcd4 100%);
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(30, 41, 59, 0.1);
}
.vm-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 1rem;
  text-align: center;
}
.vm-desc {
  font-size: 1.08rem;
  color: #222;
  text-align: center;
  margin-bottom: 0;
}
.vm-list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: #222;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.vm-list li {
  position: relative;
  padding-left: 0.5rem;
}
.vm-list li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00bcd4;
  border-radius: 50%;
  margin-right: 0.7rem;
  position: relative;
  top: -1px;
}
@media (max-width: 900px) {
  .vm-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .vm-card {
    max-width: 100%;
    min-width: 0;
  }
}
/* Team Section - New Professional Design */
.team.section {
  background-color: #f8fafc;
}

.team-list {
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.member-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f1f5f9;
  transition: all 0.3s ease;
}

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

.team-card:hover .member-avatar {
  border-color: #3b82f6;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.member-info {
  flex: 1;
  min-width: 0;
}

.member-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.2;
}

.member-role {
  background: #3b82f6;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-title {
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.expertise-item {
  background: #f1f5f9;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
}

.member-summary {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-list {
    padding: 0 0.5rem;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .member-avatar {
    width: 70px;
    height: 70px;
  }

  .member-header {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .member-expertise {
    justify-content: center;
  }

  .expertise-item {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .team-card {
    padding: 1rem;
  }

  .member-avatar {
    width: 60px;
    height: 60px;
  }

  .member-name {
    font-size: 1.1rem;
  }

  .member-summary {
    font-size: 0.85rem;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 768px) {
  .member-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem;
  }
}

.member-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

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

.team-member:hover .member-image {
  border-color: #3b82f6;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.member-title {
  flex: 1;
  position: relative;
  z-index: 1;
}

.member-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.member-position {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-experience {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.experience-badge {
  background: #3b82f6;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.experience-badge:hover {
  background: #2563eb;
}

.experience-badge i {
  font-size: 0.75rem;
}

.member-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #ffffff;
}

.member-expertise {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.member-expertise h4 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.member-expertise h4 i {
  color: #3b82f6;
  font-size: 1rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tag {
  background: #3b82f6;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.member-description {
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.member-intro {
  font-size: 1rem;
  color: #374151;
  font-weight: 400;
  line-height: 1.6;
}

.member-achievement {
  font-size: 0.95rem;
  color: #6b7280;
  font-style: italic;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
}

@media (max-width: 768px) {
  .member-header {
    padding: 1.5rem;
    gap: 1rem;
  }

  .member-content {
    padding: 1.5rem;
    gap: 1rem;
  }

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

  .member-expertise {
    padding: 1rem;
  }

  .expertise-tags {
    gap: 0.5rem;
  }

  .tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .member-image {
    width: 80px;
    height: 80px;
  }
}
/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid .value-card:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.values-grid .value-card:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.values-grid .value-card:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.values-grid .value-card:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.values-grid .value-card:nth-child(5) {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.value-card h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

/* Services Navigation */
/* Navbar dịch vụ */
.services-navbar {
  position: sticky;
  top: 89px;
  z-index: 100;
  padding: 0.5rem 0;
  margin-bottom: 2rem;
  margin-top: 10rem;
}
.services-navbar ul {
  display: flex;
  justify-content: center;
  height: 100%;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
}

.services-navbar li {
  height: 100%;
}

.services-navbar a {
  color: #1a237e;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  display: block;
  background-color: beige;
  box-shadow: 0 2px 16px 0 rgba(30, 41, 59, 0.06);
}

.services-navbar a:hover {
  background: #1a237e;
  color: #fff;
  outline: none;
}
.services-navbar a.active {
  background: #1a237e;
  color: #fff;
}

/* Section dịch vụ */
.service-section {
  padding: 3rem 0;
  background: #f8fafc;
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 16px 0 rgba(30, 41, 59, 0.06);
}
.service-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.service-content.reverse {
  flex-direction: row;
}
.service-info {
  flex: 1 1 400px;
  min-width: 320px;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.service-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a237e 60%, #00bcd4 100%);
  background-size: 200% 200%;
  animation: gradientMove 2.5s linear infinite alternate;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px 0 rgba(30, 41, 59, 0.18),
    0 2px 8px 0 rgba(30, 41, 59, 0.13);
  position: relative;
  z-index: 1;
  transition: transform 0.22s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.22s;
  cursor: pointer;
  border: 3px solid #fff;
}
.service-number:hover,
.service-number:focus {
  transform: scale(1.16) rotate(-6deg);
  box-shadow: 0 16px 40px 0 rgba(30, 41, 59, 0.22),
    0 4px 16px 0 rgba(30, 41, 59, 0.18);
  animation: bounce 0.4s;
}
@keyframes bounce {
  0% {
    transform: scale(1.16) rotate(-6deg) translateY(0);
  }
  30% {
    transform: scale(1.22) rotate(-6deg) translateY(-8px);
  }
  60% {
    transform: scale(1.12) rotate(-6deg) translateY(4px);
  }
  100% {
    transform: scale(1.16) rotate(-6deg) translateY(0);
  }
}

.service-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #1a237e 60%, #00bcd4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 8px rgba(30, 41, 59, 0.08);
  transition: text-shadow 0.22s, background 0.22s;
}
.service-title::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1a237e 60%, #00bcd4 100%);
  transition: width 0.35s cubic-bezier(0.4, 2, 0.6, 1);
  margin-top: 0.3rem;
}
.service-title:hover,
.service-title:focus {
  text-shadow: 0 4px 16px rgba(30, 41, 59, 0.13);
  background: linear-gradient(90deg, #00bcd4 60%, #1a237e 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.service-title:hover::after,
.service-title:focus::after {
  width: 60%;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f3f6fa;
  border-radius: 0.9rem;
  padding: 0.85rem 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(30, 41, 59, 0.06);
  transition: background 0.25s, box-shadow 0.25s, color 0.25s;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.service-list li:last-child {
  margin-bottom: 0;
}
.service-list li:hover {
  background: linear-gradient(90deg, #e3f2fd 60%, #fff 100%);
  color: #1a237e;
  box-shadow: 0 4px 16px 0 rgba(30, 41, 59, 0.13);
}
.service-list i {
  font-size: 1.35rem;
  color: #00bcd4;
  background: linear-gradient(135deg, #1a237e 60%, #00bcd4 100%);
  border-radius: 50%;
  padding: 0.32rem;
  margin-top: 0;
  min-width: 2.1rem;
  min-height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px 0 rgba(30, 41, 59, 0.1);
  transition: transform 0.22s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.22s,
    background 0.22s;
}
.service-list li:hover i {
  transform: scale(1.18) rotate(-8deg);
  background: linear-gradient(135deg, #00bcd4 60%, #1a237e 100%);
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(30, 41, 59, 0.18);
}
.service-image {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.reverse .service-image {
  justify-content: start;
}
.service-image img {
  width: 100%;
  max-width: 340px;
  border-radius: 1rem;
  box-shadow: 0 2px 12px 0 rgba(30, 41, 59, 0.1);
  object-fit: cover;
}
/* Thêm CSS cho service-header */
.service-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0.7rem;
}
.service-number-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-number {
  position: relative;
  z-index: 1;
  /* Có thể thêm nền trong suốt nhẹ nếu muốn icon rõ hơn */
  /* background: rgba(255,255,255,0.85); */
}

/* Mobile: thu nhỏ hoặc ẩn icon */
@media (max-width: 1024px) {
  .service-section {
    margin-top: 3rem;
  }
  .service-content,
  .service-content.reverse {
    flex-direction: column !important;
    gap: 1.2rem;
    max-width: 100%;
    align-items: stretch;
  }
  .service-info,
  .service-image {
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
  .service-info {
    flex: 1 1;
  }
  .service-image {
    margin-bottom: 1rem;
    justify-content: center !important;
  }
  .service-title {
    font-size: 1.18rem;
  }
  .service-number {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    border-radius: 8px;
  }
  .service-list li {
    font-size: 0.98rem;
    padding: 0.6rem 0.7rem;
  }
  .service-image img {
    max-width: 100%;
    border-radius: 0.5rem;
  }
  .services-navbar {
    display: none;
  }
}

@media (max-width: 480px) {
  .service-section {
    padding: 0.7rem 0.1rem;
    border-radius: 0.3rem;
  }
  .service-title {
    font-size: 1rem;
  }
  .service-number {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    border-radius: 5px;
  }
  .service-header {
    gap: 0.18rem;
  }
  .service-list li {
    font-size: 0.92rem;
    padding: 0.45rem 0.5rem;
  }
  .services-navbar ul {
    gap: 0.15rem;
    overflow-x: auto;
    white-space: nowrap;
  }
  .services-navbar a {
    font-size: 0.88rem;
    padding: 0.2rem 0.3rem;
  }
}
.glass-bg {
  background: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(200, 200, 255, 0.18);
  box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.1);
  transition: background 0.25s, box-shadow 0.25s;
}
.services-nav {
  background: #f8f9fa;
  padding: 1rem 0;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.services-nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-nav-link {
  padding: 0.5rem 1rem;
  color: #666;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.services-nav-link:hover,
.services-nav-link.active {
  background: #1e3a8a;
  color: white;
}

/* Service Detail */
.service-content {
  display: grid;
  gap: 4rem;
  align-items: center;
}

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse > * {
  direction: ltr;
}

.service-title {
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-features,
.service-benefits {
  margin-bottom: 2rem;
}

.service-features h3,
.service-benefits h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #666;
}

.service-features li i {
  color: #22c55e;
  font-size: 1.125rem;
}

.benefits-grid {
  display: grid;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-item h4 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.875rem;
  margin: 0;
}

.service-image {
  border-radius: 15px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.industry-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.industry-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.industry-card h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
  width: 100%;
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #1e3a8a;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 15px;
  font-size: 1.1rem;
  font-family: inherit;
  background: #fafafa;
  transition: all 0.3s ease;
  color: #333;
  min-height: 60px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  background: white;
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #1e3a8a;
  background: #f8fafc;
}

.error-message {
  color: #ef4444;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  display: block;
  font-weight: 500;
  padding: 0.5rem;
  background: #fef2f2;
  border-radius: 8px;
  border-left: 3px solid #ef4444;
}

/* Office Locations */
.location-detail {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.location-header {
  padding: 1.5rem;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-header h3 {
  color: #1e3a8a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-badge {
  background: #1e3a8a;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

.location-info {
  padding: 1.5rem;
}

.location-info p {
  margin-bottom: 0.5rem;
}

.location-map {
  height: 200px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FAQ */
.faq.section {
  background-color: #f8fafc;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  margin: 0;
  color: #1e3a8a;
  font-size: 1.125rem;
}

.faq-question i {
  color: #1e3a8a;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

/* Categories Widget */
.category-list {
  list-style: none;
  padding: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #374151;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.category-list a:hover {
  background: #f8f9fa;
  color: #1e3a8a;
}

.category-link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-link:hover {
  color: #1e3a8a;
  background-color: #f8f9fa;
  transform: translateX(5px);
}

.no-categories {
  color: #666;
  font-style: italic;
  padding: 0.5rem 1rem;
}

.error {
  color: #dc3545;
  font-style: italic;
  padding: 0.5rem 1rem;
}

.category-list span {
  color: #9ca3af;
  font-size: 0.875rem;
}

.category-count {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Recent Posts Widget */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recent-post {
  display: flex;
  gap: 1rem;
}

.recent-post-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

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

.recent-post-content h4 {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.recent-post-content a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content a:hover {
  color: #1e3a8a;
}

.recent-post-date {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
}

.newsletter-widget .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.newsletter-widget .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-widget input {
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
}

.newsletter-widget .btn {
  background: white;
  color: #1e3a8a;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-widget .btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

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

.related-article {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.related-article .article-image {
  height: 200px;
  overflow: hidden;
}

.related-article .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-article:hover .article-image img {
  transform: scale(1.05);
}

.related-article .article-content {
  padding: 1.5rem;
}

.related-article .article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

.related-article .article-category {
  background: #1e3a8a;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}

.related-article .article-date {
  color: #9ca3af;
}

.related-article h3 {
  margin-bottom: 0.75rem;
}

.related-article h3 a {
  color: #1e3a8a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-article h3 a:hover {
  color: #1e40af;
}

.related-article p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Reading Progress */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6);
  z-index: 9999;
  transition: width 0.3s ease;
}

.subscription-success i {
  color: #22c55e;
  font-size: 1.25rem;
}

/* Industry Insights */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.insight-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.insight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.insight-content h3 {
  color: #1e3a8a;
  margin-bottom: 0.75rem;
  text-align: center;
}

.insight-content p {
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: white;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Footer Contact Info - New Classes */
.footer-contact-info {
  /* Container styles if needed */
}

.footer-contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin-bottom: 0.75rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.5 !important;
}

.footer-contact-item i {
  width: 20px !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  font-size: 16px !important;
}

/* Keep old classes for backward compatibility */
.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  width: 20px;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

/* Animations */
.animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

.animate-slide-up-delay {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease 0.2s forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.4s forwards;
}

/* .animate-on-scroll {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.6s ease;
} */

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Button Loading States */
.btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
/* About gallery (3 images, fade) */
.about-image.about-gallery {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16/10;
}
.about-image.about-gallery .about-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.about-image.about-gallery .about-frame.active {
  opacity: 1;
}
/* Ensure badges stay above images */
.about-image.about-gallery .about-badge {
  position: absolute;
  z-index: 2;
}
/* About image hover zoom without cropping */
.about-right .about-image {
  overflow: visible;
}
.about-right .about-image img {
  transition: transform 0.35s ease;
  transform-origin: center center;
  object-fit: cover !important;
  /* Rounded corners effect - curved top and bottom */
  clip-path: ellipse(100% 85% at 50% 50%);
  border-radius: 0;
  width: 100% !important;
  height: 470px !important;
}
.about-right .about-image:hover img {
  transform: scale(1.06);
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}
.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Contact Button */
.contact-fab {
  position: fixed;
  right: 24px;
  bottom: 100px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.fab-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e11d48;
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.fab-main:hover {
  background: #be123c;
}

.contact-fab.open .fab-action {
  opacity: 1;
  pointer-events: auto;
}
.contact-fab.open .fab-action.zalo {
  top: -100px;
  right: 15px;
}
.contact-fab.open .fab-action.whatsapp {
  top: -60px;
  right: 80px;
}
.contact-fab.open .fab-action.wechat {
  top: 15px;
  right: 90px;
}
.fab-action {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: #222;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 18px 20px rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  transition: all 0.2s;
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
.fab-action.zalo img {
  width: 24px;
  height: 24px;
}
.fab-action.whatsapp {
  color: #25d366;
}
.fab-action.wechat {
  color: #09b83e;
}
.fab-action:hover {
  background: #f3f4f6;
  transform: scale(1.1);
}
.blog-text blockquote,
.article-content blockquote,
.card-content blockquote {
  background: #f0f0f0;
  color: #111111;
  font-style: italic;
  border-left: 4px solid #3b82f6;
  margin: 16px 0;
  padding: 16px 24px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vision-mission.section {
  background-color: #f8fafc;
  border-radius: 2rem;
  margin: 0;
  box-shadow: 0 4px 32px 0 rgba(30, 41, 59, 0.1);
  padding: 2rem 1.5rem;
}
/* Đã được chuẩn hóa ở trên */
.vision-mission .section-title i {
  font-size: 2.5rem;
  color: #00bcd4;
}
.vm-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.vm-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(30, 41, 59, 0.13);
  padding: 2.2rem 2rem 2rem 2rem;
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.22s, transform 0.22s;
  border: 2px solid #e3f2fd;
  position: relative;
}
.vm-card:hover {
  box-shadow: 0 8px 40px 0 rgba(30, 41, 59, 0.18);
  transform: translateY(-8px) scale(1.03);
  border-color: #00bcd4;
}
.vm-icon {
  background: linear-gradient(135deg, #1a237e 60%, #00bcd4 100%);
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 12px 0 rgba(30, 41, 59, 0.1);
}
.vm-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 1rem;
  text-align: center;
}
.vm-desc {
  font-size: 1.08rem;
  color: #222;
  text-align: center;
  margin-bottom: 0;
}
.vm-list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: #222;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.vm-list li {
  position: relative;
  padding-left: 0.5rem;
}
.vm-list li:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #00bcd4;
  border-radius: 50%;
  margin-right: 0.7rem;
  position: relative;
  top: -1px;
}
@media (max-width: 900px) {
  .vm-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .vm-card {
    max-width: 100%;
    min-width: 0;
  }
}

.lang-option.active {
  background: #5279e4 !important;
  color: #fff;
  font-weight: bold;
}
.lang-option:hover {
  background: #c5c5c5;
}

.lang-switcher-btn {
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 6px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-flag-main {
  width: 44px;
  height: 24px;
  border-radius: 4px;
}
.lang-chevron {
  font-size: 12px;
  color: #1e3a8a;
}
.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  min-width: 160px;
  z-index: 100;
  list-style: none;
}
.lang-flag {
  width: 32px;
  height: 20px;
  border-radius: 3px;
  margin-right: 8px;
}
.lang-option {
  width: 100%;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  text-align: left;
  cursor: pointer;
  background: transparent;
  color: #222;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.lang-option.active {
  background: #5279e4 !important;
  color: #fff;
  font-weight: bold;
}
.lang-option:hover {
  background: #c5c5c5;
}

/* Free Consultation Button */
.nav-consultation {
  margin-left: 15px;
}

.consultation-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.consultation-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  color: white;
}

.consultation-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.consultation-btn i {
  font-size: 0.85rem;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  box-sizing: border-box;
  min-height: 100vh;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  max-width: 650px;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 24px 24px 0 0;
  position: relative;
}

.modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981 0%, #059669 50%, #047857 100%);
  border-radius: 24px 24px 0 0;
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  letter-spacing: -0.025em;
}

.modal-title i {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.modal-close {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 1.25rem;
  color: #64748b;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  width: 40px;
  height: 40px;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
  transform: scale(1.05);
}

.modal-close:active {
  transform: scale(0.95);
}

.modal-body {
  padding: 20px 36px 28px;
  background: #ffffff;
  border-radius: 0 0 24px 24px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-subtitle {
  color: #64748b;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.consultation-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 0px;
}

.consultation-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.consultation-form label {
  font-weight: 600;
  color: #374151;
  font-size: 0.85rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.consultation-form label::after {
  content: "";
  width: 4px;
  height: 4px;
  background: #ef4444;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.consultation-form label[for*="required"]::after,
.consultation-form label:has(+ input[required])::after {
  opacity: 1;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  padding: 6px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #1f2937;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.consultation-form input:hover,
.consultation-form select:hover,
.consultation-form textarea:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1),
    0 4px 12px rgba(16, 185, 129, 0.15);
  transform: translateY(-1px);
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: #9ca3af;
  font-style: italic;
}

.consultation-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 48px;
  appearance: none;
}

.consultation-form textarea {
  resize: vertical;
  min-height: 50px;
  max-height: 80px;
  line-height: 1.4;
}

.consultation-form .checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 6px;
  margin-top: 4px;
}

.consultation-form .checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #10b981;
  cursor: pointer;
  flex-shrink: 0;
  border: none;
  outline: none;
}

.consultation-form .checkbox-group label {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
  margin: 0;
  flex: 1;
}

.consultation-form .checkbox-group a {
  color: #10b981;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.consultation-form .checkbox-group a:hover {
  color: #059669;
  text-decoration: none;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
}

.form-actions .btn {
  min-width: 200px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.form-actions .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.form-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.form-actions .btn:hover::before {
  left: 100%;
}

.form-actions .btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.form-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Error messages */
.consultation-form .error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.consultation-form .error-message::before {
  content: "⚠";
  font-size: 0.9rem;
}

/* Modal Success State */
.modal-body .form-success {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.05) 0%,
    rgba(5, 150, 105, 0.1) 100%
  );
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.modal-body .success-content i {
  font-size: 4rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(16, 185, 129, 0.3));
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.modal-body .success-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.modal-body .success-content p {
  color: #64748b;
  line-height: 1.6;
  font-size: 1.1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Loading animation */
.btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
  animation: spin 1s linear infinite;
}

.btn-loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Banner Section */
.banner-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  background-image: url("../images/services/slider_1.png?v=1"),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  background-size: cover, 100% 100%, 100% 100%;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-attachment: fixed, fixed, fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.7) 0%,
    rgba(30, 41, 59, 0.6) 50%,
    rgba(51, 65, 85, 0.8) 100%
  );
  z-index: 1;
}

.banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grain' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='25' cy='25' r='1' fill='white' opacity='0.1'/%3E%3Ccircle cx='75' cy='75' r='1' fill='white' opacity='0.1'/%3E%3Ccircle cx='50' cy='10' r='0.5' fill='white' opacity='0.1'/%3E%3Ccircle cx='10' cy='60' r='0.5' fill='white' opacity='0.1'/%3E%3Ccircle cx='90' cy='40' r='0.5' fill='white' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grain)'/%3E%3C/svg%3E");
  z-index: 1;
  opacity: 0.3;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.banner-section .container {
  position: relative;
  z-index: 3;
  text-align: center;
  animation: fadeIn 1.5s ease-out;
}

.banner-content {
  position: relative;
  z-index: 4;
  margin-top: 60px;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
  line-height: 1.2;
}

.banner-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
  line-height: 1.6;
  font-weight: 300;
}

.banner-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.banner-buttons .btn {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.banner-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.banner-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.banner-buttons .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.banner-buttons .btn:hover::before {
  left: 100%;
}

.banner-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.banner-buttons .btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Title and Images Section */
.title-images-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.title-content {
  text-align: center;
  margin-bottom: 60px;
}

.title-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.title-content p {
  font-size: 1.125rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.title-content p:first-of-type {
  margin-bottom: 1.5rem;
}

.images-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.image-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-item:hover {
  transform: translateY(-5px);
}

.image-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

/* Service Details Section */
.service-details {
  padding: 80px 0;
  background-color: #f8fafc;
}

.service-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Job Details Section */
.job-details {
  padding: 40px 0;
  background-color: #f8fafc;
}

.job-content {
  max-width: 1000px;
  margin: 0 auto;
}

.job-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 2.5rem;
  text-align: center;
}

.service-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
  text-align: center;
}

.service-intro {
  font-size: 1.125rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.service-item {
  background: #f8f9fa;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  border-top: 4px solid #1e3a8a;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 300px;
}

.service-item:hover {
  background: #e3f2fd;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 1rem;
  text-align: center;
}

.service-item p {
  color: #555;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Customer Benefits Section */
.customer-benefits-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.benefits-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
}

.benefit-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.benefit-content p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #f8fafc;
  color: #334155;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.contact-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #64748b;
}

.contact-info {
  display: flex;
  justify-content: center;
  /* gap: 3rem; */
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .service-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
  }
}

@media (max-width: 992px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    min-height: 700px;
    background-attachment: scroll;
  }

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

  .banner-subtitle {
    font-size: 1.2rem;
    max-width: 500px;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .banner-buttons .btn {
    padding: 1rem 2rem;
    width: 100%;
    max-width: 300px;
  }

  .title-content h2 {
    font-size: 2rem;
  }

  .images-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-item img {
    height: 250px;
  }

  .service-content h2 {
    font-size: 2rem;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
  }

  .service-item {
    padding: 1.5rem;
    min-height: 250px;
  }

  .service-item h3 {
    font-size: 1.1rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

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

@media (max-width: 480px) {
  .banner-section {
    min-height: 600px;
  }

  .banner-title {
    font-size: 2.2rem;
  }

  .banner-subtitle {
    font-size: 1.1rem;
    max-width: 400px;
  }

  .title-content h2 {
    font-size: 1.75rem;
  }

  .service-content h2 {
    font-size: 1.75rem;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
  }

  .service-item {
    padding: 1rem;
    min-height: 200px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon i {
    font-size: 1.25rem;
  }

  .contact-section h2 {
    font-size: 1.75rem;
  }
}

/* Recruitment Page Styles */
.job-overview {
  margin-bottom: 3rem;
}

.job-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.875rem;
  color: white;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
  transition: all 0.3s ease;
}

.job-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.job-badge.remote {
  background: linear-gradient(135deg, #059669, #10b981);
}

.job-badge.fulltime {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.job-badge.experience {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

.job-badge.partner {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.job-badge.flexible {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.job-badge.commission {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.job-sections {
  display: grid;
  gap: 2rem;
}

.job-section {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #1e3a8a;
  transition: all 0.3s ease;
}

.job-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.job-section h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.job-section h3 i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.job-list {
  list-style: none;
  padding: 0;
}

.job-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
  line-height: 1.6;
}

.job-list li:last-child {
  border-bottom: none;
}

.job-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: #10b981;
  font-weight: bold;
  font-size: 1.1rem;
}

.job-description {
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

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

.culture-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.culture-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #1e3a8a;
}

.culture-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.culture-card h3 {
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.culture-card p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

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

.application-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #1e3a8a;
  transition: all 0.3s ease;
}

.application-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.application-item i {
  font-size: 1.5rem;
  color: #1e3a8a;
  width: 40px;
  text-align: center;
}

.application-details h4 {
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.application-details span {
  color: #6b7280;
  font-weight: 500;
}

.application-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.application-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .job-content h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .job-badges {
    justify-content: center;
  }

  .job-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
  }

  .job-section {
    padding: 1.5rem;
  }

  .job-section h3 {
    font-size: 1.1rem;
  }

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

  .culture-card {
    padding: 1.5rem;
  }

  .culture-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

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

  .application-item {
    padding: 1rem;
  }

  .application-cta {
    flex-direction: column;
    align-items: center;
  }

  .application-cta .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .job-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .job-badges {
    flex-direction: column;
    align-items: center;
  }

  .job-badge {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .job-section {
    padding: 1rem;
  }

  .job-list li {
    padding-left: 1.5rem;
  }

  .culture-card {
    padding: 1rem;
  }

  .application-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

/* CV Form Styles */
.cv-form-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cv-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-row.centered-field {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
}

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

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

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

.form-group label {
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0rem 1rem !important;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #374151;
  min-height: 50px !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.file-upload-wrapper {
  position: relative;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #6b7280;
}

.file-upload-label:hover {
  border-color: #3b82f6;
  background: #f0f9ff;
  color: #3b82f6;
}

.file-upload-label i {
  font-size: 1.25rem;
}

.file-text {
  font-size: 0.9rem;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.submit-btn {
  position: relative;
  min-width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.submit-btn .btn-loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.submit-btn.loading .btn-text,
.submit-btn.loading i {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  display: block;
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form Success/Error Messages */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

@media (max-width: 768px) {
  .cv-form-container {
    padding: 1.5rem;
    margin: 0 1rem 2rem;
  }

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

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .submit-btn {
    min-width: 100%;
    height: 45px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cv-form-container {
    padding: 1rem;
    margin: 0 0.5rem 1.5rem;
  }

  .file-upload-label {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .file-text {
    font-size: 0.8rem;
  }
}

/* Clients Section Styles */
.clients.section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Removed pattern overlay for white background */

.clients .container {
  position: relative;
}

.clients .section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
}

/* Clients section title uses global style */

.clients .section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.clients-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Hàng đầu tiên - 3 items */
.clients-row-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

/* Hàng thứ hai - 2 items căn giữa */
.clients-row-2 {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin-top: 1rem;
}

/* Đảm bảo 2 items cuối có width bằng nhau và căn giữa */
.clients-row-2 .client-category {
  width: calc(33.333% - 1rem);
  min-width: 280px;
  max-width: 320px;
  animation-delay: 0.4s;
}

.clients-row-2 .client-category:last-child {
  animation-delay: 0.5s;
}

.client-category {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.client-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #60a5fa);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.client-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: rgba(30, 58, 138, 0.2);
}

.client-category:hover::before {
  transform: scaleX(1);
}

.client-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
}

.client-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  opacity: 0.2;
  transition: all 0.4s ease;
}

.client-category:hover .client-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.client-category:hover .client-icon::before {
  transform: scale(1.2);
  opacity: 0.3;
}

.client-icon i {
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.client-category:hover .client-icon i {
  transform: rotate(360deg);
}

.client-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.client-category:hover h3 {
  color: #3b82f6;
}

/* Responsive Design for Clients Section */
@media (max-width: 1024px) {
  .clients-grid {
    max-width: 800px;
  }

  .clients-row-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .clients-row-2 {
    justify-content: center;
    gap: 1.5rem;
  }

  .clients-row-2 .client-category {
    width: calc(50% - 0.75rem);
    min-width: 250px;
    max-width: 300px;
  }

  .client-category {
    padding: 2rem 1.5rem;
  }

  .client-icon {
    width: 70px;
    height: 70px;
  }

  .client-icon i {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .story-header {
    margin-bottom: 2.5rem;
  }

  .header-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

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

  .story-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-image-section {
    order: 1;
  }

  .story-content-section {
    order: 2;
    padding-left: 0;
  }

  .story-intro h3 {
    font-size: 1.6rem;
  }

  .story-description {
    font-size: 0.95rem;
  }

  .story-cta {
    flex-direction: column;
    gap: 0.8rem;
  }

  .cta-button,
  .cta-link {
    width: 100%;
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .story-image img {
    height: 280px;
  }

  /* Đã được chuẩn hóa ở trên */

  .clients .section-subtitle {
    font-size: 1rem;
  }

  .clients-grid {
    max-width: 400px;
  }

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

  .clients-row-2 {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .clients-row-2 .client-category {
    width: 100%;
    max-width: 350px;
  }

  .client-category {
    padding: 1.5rem 1rem;
  }

  .client-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .client-icon i {
    font-size: 1.5rem;
  }

  .client-category h3 {
    font-size: 1.1rem;
  }
}

/* Animation for client categories */
.client-category {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.client-category:nth-child(1) {
  animation-delay: 0.1s;
}
.client-category:nth-child(2) {
  animation-delay: 0.2s;
}
.client-category:nth-child(3) {
  animation-delay: 0.3s;
}
.client-category:nth-child(4) {
  animation-delay: 0.4s;
}
.client-category:nth-child(5) {
  animation-delay: 0.5s;
}

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

/* Hover effects for better interactivity */
.client-category:active {
  transform: translateY(-5px);
}

/* Focus states for accessibility */
.client-category:focus-within {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Loading state */
.clients-grid.loading {
  opacity: 0.7;
  pointer-events: none;
}

.clients-grid.loading .client-category {
  animation: pulse 1.5s ease-in-out infinite;
}

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

/* Why Choose Us Section */
.why-choose-us {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}


.why-choose-us .container {
  position: relative;
  z-index: 2;
}

.why-choose-us .section-header {
  margin-bottom: 50px;
  padding-bottom: 20px;
}

.why-choose-us .section-title {
  color: #2563eb;
  position: relative;
}

.why-choose-us .section-title::after {
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #60a5fa);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.why-choose-us .section-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

/* Feature Cards */
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #3b82f6, #60a5fa);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

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

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(96, 165, 250, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover::after {
  opacity: 1;
}

/* Feature Icons */
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border: 2px solid #1e3a8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: #ffffff;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.4);
  border-color: #3b82f6;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-icon i {
  transition: all 0.4s ease;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card:hover .feature-icon i {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Feature Content */
.feature-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.feature-card:hover h3 {
  color: #1e3a8a;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.feature-card:hover p {
  color: #475569;
}

/* Animation for cards */
.feature-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.feature-card.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for cards */
.feature-card:nth-child(1) {
  transition-delay: 0.1s;
}
.feature-card:nth-child(2) {
  transition-delay: 0.2s;
}
.feature-card:nth-child(3) {
  transition-delay: 0.3s;
}
.feature-card:nth-child(4) {
  transition-delay: 0.4s;
}
.feature-card:nth-child(5) {
  transition-delay: 0.5s;
}
.feature-card:nth-child(6) {
  transition-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

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

  .feature-icon {
    width: 55px;
    height: 55px;
    font-size: 1.375rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .why-choose-us .section-header {
    margin-bottom: 50px;
    padding-bottom: 20px;
  }

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

  .feature-card {
    padding: 1.75rem 1.5rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.125rem;
  }

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

@media (max-width: 480px) {
  .why-choose-us {
    padding: 2rem 0;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

/* Latest News Section */
.latest-news.section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}


.latest-news .container {
  position: relative;
  z-index: 1;
}

.latest-news .section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  position: relative;
}

.latest-news .section-title {
  color: #2563eb;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.latest-news .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  border-radius: 2px;
}

.latest-news .section-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* News Grid */
.news-grid,
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Đảm bảo articles-grid có layout chính xác */
.articles-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  margin-bottom: 3rem !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* News Card */
.news-card,
.article-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #3b82f6;
}

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

/* News Image */
.news-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-card:hover .news-image::after {
  opacity: 1;
}

/* News Content */
.news-content {
  padding: 1.5rem;
  position: relative;
}

/* News Meta */
.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

.news-date i {
  color: #3b82f6;
  font-size: 0.75rem;
}

.news-category {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* News Title */
.news-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.news-card:hover .news-title {
  color: #3b82f6;
}

/* News Excerpt */
.news-excerpt {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* News Link - Simple Text Link */
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.news-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.news-link:hover {
  color: #1e3a8a;
  background: none;
  box-shadow: none;
  transform: none;
}

.news-link:hover::after {
  width: 100%;
}

.news-link i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.news-link:hover i {
  transform: translateX(4px);
}

/* Loading State */
.loading-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: #64748b;
  text-align: center;
}

.loading-news i {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.loading-news p {
  font-size: 1rem;
  font-weight: 500;
}

/* No News Message */
.no-news,
.error-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.no-news i,
.error-news i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.no-news i {
  color: #3b82f6;
}

.error-news i {
  color: #ef4444;
}

.no-news h3,
.error-news h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.no-news p,
.error-news p {
  color: #64748b;
  font-size: 1rem;
}

/* News CTA */
.news-cta {
  text-align: center;
  margin-top: 2rem;
}

.news-cta .btn {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.news-cta .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.news-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(59, 130, 246, 0.4);
}

.news-cta .btn:hover::before {
  left: 100%;
}

/* Animation Classes */
.news-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.news-card.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .news-grid,
  .articles-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }

  .latest-news .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .latest-news.section {
    padding: 3rem 0;
  }

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

  .latest-news .section-subtitle {
    font-size: 1rem;
  }

  .news-grid,
  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .news-content {
    padding: 1.25rem;
  }

  .news-title {
    font-size: 1.125rem;
  }

  .news-meta {
    gap: 0.75rem;
  }

  .news-date {
    font-size: 0.8rem;
  }

  .news-category {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .latest-news .section-title {
    font-size: 1.75rem;
  }

  .latest-news .section-subtitle {
    font-size: 0.9rem;
  }

  .news-grid,
  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .news-image {
    height: 180px;
  }

  .news-content {
    padding: 1rem;
  }

  .news-title {
    font-size: 1rem;
  }

  .news-excerpt {
    font-size: 0.8rem;
  }

  .news-link {
    font-size: 0.8rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .news-cta .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .latest-news.section {
    background-color: #f8fafc;
  }

  .news-card {
    background: #1e293b;
    border-color: rgba(51, 65, 85, 0.8);
  }

  .news-title {
    color: #f1f5f9;
  }

  .news-excerpt {
    color: #94a3b8;
  }

  .news-date {
    color: #94a3b8;
  }

  .no-news,
  .error-news {
    background: #1e293b;
  }

  .no-news h3,
  .error-news h3 {
    color: #f1f5f9;
  }

  .no-news p,
  .error-news p {
    color: #94a3b8;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .news-card {
    border: 2px solid #3b82f6;
  }

  .news-link {
    text-decoration: underline;
  }

  .news-link::after {
    display: none;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-card::before,
  .news-image img,
  .news-link i,
  .news-cta .btn,
  .news-cta .btn::before {
    transition: none;
  }

  .news-card:hover {
    transform: none;
  }

  .news-card:hover .news-image img {
    transform: none;
  }

  .news-link:hover i {
    transform: none;
  }

  .news-cta .btn:hover {
    transform: none;
  }
}

/* Article Card Styles (for news.html compatibility) */
.article-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.article-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #3b82f6;
}

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

/* Article Image */
.article-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Article Content */
.article-content {
  padding: 1.5rem;
  position: relative;
}

/* Article Meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.article-date,
.article-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
}

.article-date i,
.article-author i {
  color: #3b82f6;
  font-size: 0.75rem;
}

/* Article Title */
.article-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.article-card:hover .article-title {
  color: #3b82f6;
}

/* Article Excerpt */
.article-excerpt {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Article Link - Simple Text Link */
.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.article-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.article-link:hover {
  color: #1e3a8a;
  background: none;
  box-shadow: none;
  transform: none;
}

.article-link:hover::after {
  width: 100%;
}

.article-link i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.article-link:hover i {
  transform: translateX(4px);
}

/* News Grid Section Styles */
.news-grid.section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.news-grid.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.news-grid .container {
  position: relative;
  z-index: 2;
}

/* Enhanced Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.articles-grid::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: -2rem;
  right: -2rem;
  bottom: -2rem;
  background: linear-gradient(
    45deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.articles-grid:hover::before {
  opacity: 1;
}

/* Enhanced Article Cards */
.article-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.8);
  backdrop-filter: blur(10px);
}

.article-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a, #8b5cf6, #ec4899);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}

.article-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  border-color: #3b82f6;
}

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

/* Enhanced Article Image */
.article-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95);
}

.article-card:hover .article-image img {
  transform: scale(1.1) rotate(1deg);
  filter: brightness(1.05);
}

.article-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.article-card:hover .article-image::after {
  opacity: 1;
}

/* Enhanced Article Category Badge */
.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  z-index: 3;
  transition: all 0.3s ease;
}

.article-card:hover .article-category {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

/* Enhanced Article Content */
.article-content {
  padding: 2rem;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

/* Enhanced Article Meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-date,
.article-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  transition: color 0.3s ease;
}

.article-date i,
.article-author i {
  color: #3b82f6;
  font-size: 0.75rem;
}

.article-card:hover .article-date,
.article-card:hover .article-author {
  color: #475569;
}

/* Enhanced Article Title */
.article-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1e293b;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card:hover .article-title {
  color: #3b82f6;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Article Excerpt */
.article-excerpt {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Enhanced Article Link - Simple Text Link */
.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.article-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.article-link:hover {
  color: #1e3a8a;
  background: none;
  box-shadow: none;
  transform: none;
}

.article-link:hover::after {
  width: 100%;
}

.article-link i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.article-link:hover i {
  transform: translateX(4px);
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin-top: 3rem;
  position: relative;
}

.load-more-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e2e8f0 50%,
    transparent 100%
  );
  z-index: 1;
}

.load-more-btn {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid #e2e8f0;
  color: #475569;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  min-width: 200px;
}

.load-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.load-more-btn:hover {
  color: white;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.load-more-btn:hover::before {
  opacity: 1;
}

.load-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.load-more-btn .btn-text {
  transition: opacity 0.3s ease;
}

.load-more-btn .btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.load-more-btn.loading .btn-text {
  opacity: 0;
}

.load-more-btn.loading .btn-loading {
  opacity: 1;
}

.load-more-btn.loading {
  pointer-events: none;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-color: #cbd5e1;
}

/* Loading Animation */
@keyframes loadMorePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

.load-more-btn.loading {
  animation: loadMorePulse 2s infinite;
}

/* Empty State */
.articles-grid:empty::after {
  content: "Chưa có bài viết nào";
  display: block;
  text-align: center;
  padding: 4rem 2rem;
  color: #64748b;
  font-size: 1.1rem;
  font-style: italic;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  border: 2px dashed #cbd5e1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
  }

  .article-content {
    padding: 1.5rem;
  }

  .article-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .news-grid.section {
    padding: 2rem 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .article-image {
    height: 200px;
  }

  .article-content {
    padding: 1.25rem;
  }

  .article-meta {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .article-title {
    font-size: 1.125rem;
  }

  .load-more-btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .articles-grid {
    gap: 1rem;
  }

  .article-image {
    height: 180px;
  }

  .article-content {
    padding: 1rem;
  }

  .article-title {
    font-size: 1rem;
  }

  .article-excerpt {
    font-size: 0.875rem;
  }

  .load-more-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    min-width: 160px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .news-grid.section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  }

  .article-card {
    background: #1e293b;
    border-color: rgba(51, 65, 85, 0.8);
  }

  .article-content {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  }

  .article-title {
    color: #f1f5f9;
  }

  .article-excerpt {
    color: #94a3b8;
  }

  .load-more-btn {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-color: #334155;
    color: #cbd5e1;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .article-card {
    border: 2px solid #000;
  }

  .article-category {
    border: 1px solid #fff;
  }

  .load-more-btn {
    border: 2px solid #000;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .article-card,
  .article-image img,
  .article-category,
  .article-link,
  .load-more-btn {
    transition: none;
  }

  .article-card:hover {
    transform: none;
  }

  .article-card:hover .article-image img {
    transform: none;
  }

  .article-link:hover {
    transform: none;
  }

  .load-more-btn:hover {
    transform: none;
  }
}

/* Locations Section - Enhanced */
.locations.section {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}



.locations .container {
  position: relative;
  z-index: 1;
}

.locations .section-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  position: relative;
}

.locations .section-header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
  border-radius: 2px;
  opacity: 0.8;
}

.locations .section-title {
  color: #2563eb;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -0.02em;
}

.locations .section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.locations .section-subtitle {
  color: #64748b;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Contact Info Grid - Enhanced */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

.contact-info-grid::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 100%
  );
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-info-grid:hover::before {
  opacity: 1;
}

/* Contact Card - Enhanced */
.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(226, 232, 240, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  text-align: center;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  border-radius: 20px 20px 0 0;
}

.contact-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

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

/* Contact Icon - Enhanced */
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.contact-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #10b981);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

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

.contact-card:hover .contact-icon::before {
  opacity: 1;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
  transition: all 0.4s ease;
}

.contact-card:hover .contact-icon i {
  transform: scale(1.1);
}

/* Contact Content - Enhanced */
.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.contact-card:hover h3 {
  color: #3b82f6;
  transform: translateX(2px);
}

.contact-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.contact-card:hover p {
  color: #475569;
}

.contact-card strong {
  color: #3b82f6;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card:hover strong {
  color: #1e3a8a;
}

/* Responsive Design for Locations */
@media (max-width: 1024px) {
  .locations .section-title {
    font-size: 1.8rem;
  }

  .contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
  }

  .contact-card {
    padding: 1.25rem;
  }
}

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

  .locations .section-title {
    font-size: 1.6rem;
  }

  .locations .section-subtitle {
    font-size: 0.9rem;
  }

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

  .contact-card {
    padding: 1rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-icon i {
    font-size: 1.25rem;
  }

  .contact-card h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .locations .section-title {
    font-size: 1.4rem;
  }

  .locations .section-subtitle {
    font-size: 0.85rem;
  }

  .contact-card {
    padding: 0.875rem;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon i {
    font-size: 1.1rem;
  }

  .contact-card h3 {
    font-size: 1rem;
  }

  .contact-card p {
    font-size: 0.85rem;
  }
}

/* QR Code Section Styles */
.qr-section {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(30, 58, 138, 0.1);
}

.qr-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.qr-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.qr-title i {
  color: #3b82f6;
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

.qr-subtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.qr-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.qr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.qr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

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

.qr-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.qr-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.qr-card:hover .qr-icon::before {
  left: 100%;
}

.qr-icon i {
  color: white;
  font-size: 1.5rem;
  z-index: 1;
  position: relative;
}

.qr-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.qr-card:hover h4 {
  color: #3b82f6;
}

.qr-image-container {
  margin: 1.5rem 0;
  position: relative;
  display: inline-block;
}

.qr-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  border: 3px solid #e2e8f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.qr-card:hover .qr-image {
  border-color: #3b82f6;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.qr-description {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-top: 1rem;
}

.qr-description strong {
  color: #1e3a8a;
  font-weight: 600;
}

/* Responsive Design for QR Section */
@media (max-width: 1024px) {
  .qr-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .qr-card {
    padding: 1.5rem;
  }

  .qr-image {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .qr-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
  }

  .qr-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 0.25rem;
  }

  .qr-subtitle {
    font-size: 0.9rem;
  }

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

  .qr-card {
    padding: 1.25rem;
  }

  .qr-icon {
    width: 50px;
    height: 50px;
  }

  .qr-icon i {
    font-size: 1.25rem;
  }

  .qr-card h4 {
    font-size: 1.1rem;
  }

  .qr-image {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .qr-title {
    font-size: 1.25rem;
  }

  .qr-subtitle {
    font-size: 0.85rem;
  }

  .qr-card {
    padding: 1rem;
  }

  .qr-icon {
    width: 45px;
    height: 45px;
  }

  .qr-icon i {
    font-size: 1.1rem;
  }

  .qr-card h4 {
    font-size: 1rem;
  }

  .qr-image {
    width: 80px;
    height: 80px;
  }

  .qr-description {
    font-size: 0.8rem;
  }
}

/* Animation for QR cards */
@keyframes qrCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.qr-card.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.qr-card.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.qr-card:nth-child(1).animate-on-scroll.visible {
  transition-delay: 0.1s;
}

.qr-card:nth-child(2).animate-on-scroll.visible {
  transition-delay: 0.2s;
}

.qr-card:nth-child(3).animate-on-scroll.visible {
  transition-delay: 0.3s;
}

/* =============================
   About Section
   ============================= */
.about.section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-left .section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-intro {
  color: #334155;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.about-subtext {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 600;
  color: #0f172a;
}

.about-num {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1e3a8a;
  color: #fff;
  font-weight: 700;
}

/* .about-right .about-image {
  position: relative;
} */

.about-right img {
  width: 100%;
  display: block;
  /* border-radius: 36px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.25); */
}

.about-badge {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.15);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-badge--trend {
  top: 18%;
  left: -30px;
}

.about-badge--trend .arrow {
  width: 40px;
  height: 20px;
  background: radial-gradient(circle at left, #1e3a8a, transparent 70%);
  border-radius: 999px;
  position: relative;
}

.about-badge--trend .value {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.9rem;
}

.about-badge--stat {
  right: -24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.about-badge--stat .label {
  font-size: 0.7rem;
  color: #64748b;
}

.about-badge--stat .stat {
  font-weight: 800;
  color: #0f172a;
}

.about-badge--stat .sub {
  font-size: 0.75rem;
  color: #64748b;
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-right {
    order: -1;
  }
  .about-left .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .about-num {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
}

/* ===== OTHER SERVICES PAGE STYLES ===== */

/* Banner Section */
.banner-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  background-image: url("../images/services/slider_1.png?v=1");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 120px 0 80px;
  min-height: 750px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.banner-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: white;
}

.banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #1e3a8a;
  transform: translateY(-2px);
}

/* Services Overview */
.services-overview {
  padding: 80px 0;
  background-color: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding-bottom: 20px;
}
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
}

/* Other Services Grid */
.other-services {
  padding: 80px 0;
  background-color: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* For 6 items, we'll have 3-3 layout */
.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(3) {
  grid-row: 1;
}

.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5),
.services-grid .service-card:nth-child(6) {
  grid-row: 2;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1e3a8a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-card .service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #475569;
  font-size: 0.95rem;
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-features i {
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 0.875rem;
  width: 16px;
  text-align: center;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: #f8fafc;
  color: #334155;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.contact-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #64748b;
}

.contact-info {
  display: flex;
  justify-content: center;
  /* gap: 2rem; */
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: white;
}

.contact-item i {
  font-size: 1.25rem;
  opacity: 0.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: white;
  color: #1e3a8a;
}

.btn-primary:hover {
  background-color: #f1f5f9;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: #1e3a8a;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }

  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(2) {
    grid-row: 1;
  }

  .services-grid .service-card:nth-child(3),
  .services-grid .service-card:nth-child(4) {
    grid-row: 2;
  }

  .services-grid .service-card:nth-child(5),
  .services-grid .service-card:nth-child(6) {
    grid-row: 3;
  }
}

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

  .banner-subtitle {
    font-size: 1.125rem;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 1.5rem;
  }

  .services-grid .service-card:nth-child(1) {
    grid-row: 1;
  }
  .services-grid .service-card:nth-child(2) {
    grid-row: 2;
  }
  .services-grid .service-card:nth-child(3) {
    grid-row: 3;
  }
  .services-grid .service-card:nth-child(4) {
    grid-row: 4;
  }
  .services-grid .service-card:nth-child(5) {
    grid-row: 5;
  }
  .services-grid .service-card:nth-child(6) {
    grid-row: 6;
  }

  .service-card {
    padding: 1.5rem;
  }

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

  .contact-info {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .banner-section {
    padding: 100px 0 60px;
  }

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

  .services-overview,
  .other-services,
  .contact-section {
    padding: 60px 0;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }
}

/* ===== SERVICE-SPECIFIC BANNER BACKGROUNDS ===== */

/* Trade Consulting Page */
.trade-consulting .banner-section {
  background-image: url("../images/services/slider_1.png?v=1");
}

/* Business Matching Page */
.business-matching .banner-section {
  background-image: url("../images/services/serv-1_2.png?v=1");
}

/* Factory Visit Page */
.factory-visit .banner-section {
  background-image: url("../images/services/nha_may.jpg?v=1");
}

/* Sourcing Page */
.sourcing .banner-section {
  background-image: url("../images/services/tim_kiem.jpg?v=1");
}

/* Trade Consulting Page */
.trade-consulting .banner-section {
  background-image: url("../images/services/slider_1.png?v=1");
}

/* Logistics and Import Export Page */
.logistics-import-export .banner-section {
  background-image: url("../images/services/xuat_khau.jpg?v=1");
}

/* Industrial Park Page */
.industrial-park .banner-section {
  background-image: url("../images/services/dau_tu.jpg?v=1");
}
