* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #396ab3;
  --primary-color-dark: #1e4175;
  --secondary-color: #f7923f;
  --secondary-color-dark: #bb6e30;

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

  /* Text Colors */
  --text-primary: #2c3e50;
  --text-secondary: #7f8c8d;
  --text-muted: #95a5a6;
  --text-light: #bdc3c7;

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #2c3e50;
  --bg-light: #ecf0f1;

  /* Border Colors */
  --border-color: #e0e0e0;
  --border-light: #ecf0f1;
  --border-dark: #bdc3c7;

  /* Status Colors */
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --danger-color: var(--primary-color);
  --info-color: #3498db;

  /* Social Media Colors */
  --facebook-color: #3b5998;
  --twitter-color: #1da1f2;
  --linkedin-color: #0077b5;
  --instagram-color: #e1306c;

  /* Shadow */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);

  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 15px;
  --radius-lg: 25px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
  padding-top: 80px;
}

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

/* Custom style */

.align-center {
  display: flex;
  justify-content: center;
}

/* ===== Margin Top ===== */
.mt-20 {
  margin-top: 20px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-100 {
  margin-top: 100px;
}

/* ===== Margin Bottom ===== */
.mb-20 {
  margin-bottom: 20px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-100 {
  margin-bottom: 100px;
}

/* ===== Padding Top ===== */
.pt-20 {
  padding-top: 20px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-100 {
  padding-top: 100px;
}

/* ===== Padding Bottom ===== */
.pb-20 {
  padding-bottom: 20px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-100 {
  padding-bottom: 100px;
}

.bg-white {
  background: #fff;
}
/* Header Sticky */
header {
  background: var(--primary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  min-height: 80px;
}

header.scrolled nav {
  padding: 15px 0;
}

.slogan {
  padding: 20px 0;
  min-height: 80px;
}

.slogan h2 {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

/* Branches Section */
.branches-section {
  padding: 120px 0 80px;
  background: white;
}

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

.section-title .title-1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.section-title .title-1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.section-title h1 {
  font-size: 42px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 18px;
  color: #7f8c8d;
}

/* Main Logo */
.main-logo-container {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  animation: fadeInDown 1s ease;
}

.main-logo-wrapper {
  display: inline-block;
  position: relative;
}

.main-logo-image {
  width: 250px;
  height: auto;
  transition: all 0.5s ease;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.main-logo-wrapper:hover .main-logo-image {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 15px 40px rgba(231, 76, 60, 0.3));
}

/* Connection Lines */
.branches-container {
  position: relative;
  margin-top: 80px;
}

.connection-lines {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
}

.vertical-line {
  position: absolute;
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, #4169b3, #764ba2);
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border-radius: 2px;
  animation: lineGrow 1s ease 0.5s backwards;
}

.horizontal-line {
  position: absolute;
  height: 4px;
  background: linear-gradient(90deg, #764ba2, #4169b3, #764ba2);
  top: 40px;
  left: 15.66%;
  right: 15.66%;
  border-radius: 2px;
  animation: lineExpand 1s ease 1s backwards;
}

.branch-line {
  position: absolute;
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, #764ba2, #4169b3);
  top: 40px;
  border-radius: 2px;
  animation: lineGrow 1s ease 1.5s backwards;
}

.branch-line.left {
  left: 15.66%;
}

.branch-line.center {
  left: 50%;
  transform: translateX(-50%);
}

.branch-line.right {
  right: 15.66%;
}

/* Hero Header with Image */

.hero-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding: 2rem;
  box-sizing: border-box;
  overflow: hidden;
}

.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.9) 0%,
    rgba(118, 75, 162, 0.9) 100%
  );
  z-index: 1;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3;
}

.hero-content {
  z-index: 1;
}
.hero-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb-wrapper {
  margin-top: 1.5rem;
  z-index: 1;
  max-width: 800px;
}

.breadcrumb {
  font-size: 1rem;
  color: #333;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb-separator {
  opacity: 0.7;
}

/* Branch Cards */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.branch-card {
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease backwards;
}

.branch-card:nth-child(1) {
  animation-delay: 2s;
}

.branch-card:nth-child(2) {
  animation-delay: 2.2s;
}

.branch-card:nth-child(3) {
  animation-delay: 2.4s;
}

.branch-card::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;
}

.branch-card:hover::before {
  left: 100%;
}

.branch-card:hover {
  transform: translateY(-15px);
}

.branch-logo-link {
  text-decoration: none;
  display: block;
}

.branch-logo-image {
  width: 200px;
  height: auto;
  margin: 0 auto 25px;
  transition: all 0.5s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.branch-card:hover .branch-logo-image {
  transform: scale(1.1) rotate(-3deg);
  filter: drop-shadow(0 10px 25px rgba(65, 105, 179, 0.3));
}

.branch-title {
  font-size: 22px;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.branch-card:hover .branch-title {
  color: var(--primary-color);
}

.branch-description {
  color: #7f8c8d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.branch-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.branch-features li {
  padding: 8px 0;
  color: #555;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branch-features li::before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  font-size: 18px;
}

.branch-cta {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s;
}

.branch-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.logo-section {
  background: #f8f9fa;
	padding-top: 60px
}
/* Info Section */
.info-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.info-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s;
}

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

.info-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.info-card p {
  color: #7f8c8d;
  line-height: 1.8;
}

/* Post Slider */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 18px;
  color: #7f8c8d;
}

/* Slider Container */
.post-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

/* Posts Grid */
.posts-section {
  padding: 60px 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.post-card {
  min-width: calc(33.333% - 20px);
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.6s ease backwards;
}

.post-card:nth-child(1) {
  animation-delay: 0.1s;
}

.post-card:nth-child(2) {
  animation-delay: 0.2s;
}

.post-card:nth-child(3) {
  animation-delay: 0.3s;
}

.post-card:nth-child(4) {
  animation-delay: 0.4s;
}

.post-card:nth-child(5) {
  animation-delay: 0.5s;
}

.post-card:nth-child(6) {
  animation-delay: 0.6s;
}

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

.post-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

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

.post-card:hover .post-image img {
  transform: scale(1.1);
}

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.post-content {
  padding: 25px;
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #95a5a6;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-title a {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.post-excerpt {
  color: #7f8c8d;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-block;
  min-width: 36px;
  padding: 8px 12px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  transition: all 0.25s ease;
}

/* Hover effect */
.pagination a:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Trang hiện tại */
.pagination .current {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  cursor: default;
}

/* Các nút prev/next đặc biệt */
.pagination .prev,
.pagination .next {
  font-weight: bold;
}

/* Hover riêng cho prev/next */
.pagination .prev:hover,
.pagination .next:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 600px) {
  .pagination a,
  .pagination span {
    padding: 6px 10px;
    font-size: 14px;
  }
}

/* Post Card */
.post-card {
  min-width: calc(25% - 22.5px);
  /* 4 items on desktop */
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.post-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.post-card:hover .post-image img {
  transform: scale(1.1);
}

.post-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.post-content {
  padding: 20px;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #95a5a6;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-excerpt {
  color: #7f8c8d;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
  font-size: 14px;
}

.read-more:hover {
  gap: 10px;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--primary-color);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  pointer-events: all;
  line-height: unset;
  padding: 0;
}

.slider-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.slider-btn:disabled {
  background: #ecf0f1;
  color: #bdc3c7;
  cursor: not-allowed;
  transform: scale(1);
}

/* Dots Indicators */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #bdc3c7;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

/* Progress Bar */
.slider-progress {
  width: 100%;
  height: 4px;
  background: #ecf0f1;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #667eea);
  width: 0;
  transition: width 0.1s linear;
}

/* Counter */
.slider-counter {
  text-align: center;
  margin-top: 20px;
  color: #7f8c8d;
  font-size: 14px;
  font-weight: 600;
}

/* Tablet: 2 items */
@media (max-width: 1024px) {
  .post-card {
    min-width: calc(50% - 15px);
  }

  .post-image {
    height: 200px;
  }
}

/* Mobile: 1 item */
@media (max-width: 768px) {
  .post-card {
    min-width: 100%;
  }

  .slogan h2 {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .post-image {
    height: 220px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-controls {
    padding: 0 5px;
  }
}

/* Main Content Area */
.content-area {
  padding: 60px 0;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
}

/* Article Content */
.article-content {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.article-header {
  margin-bottom: 40px;
}

.article-category {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-title {
  font-size: 42px;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-meta {
  display: flex;
  gap: 30px;
  color: #7f8c8d;
  font-size: 15px;
  padding-bottom: 30px;
  border-bottom: 2px solid #ecf0f1;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-image {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  margin: 40px 0;
}

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

.article-body {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.article-body h2 {
  font-size: 32px;
  color: #2c3e50;
  margin: 40px 0 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary-color);
}

.article-body h3 {
  font-size: 24px;
  color: #2c3e50;
  margin: 30px 0 15px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  margin: 20px 0 20px 30px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body blockquote {
  background: #f8f9fa;
  border-left: 4px solid var(--primary-color);
  padding: 20px 30px;
  margin: 30px 0;
  font-style: italic;
  color: #555;
}

.highlight-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
}

.highlight-box h3 {
  color: white;
  margin-bottom: 15px;
}

/* Article Footer */
.article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #ecf0f1;
}

.article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tag {
  background: #ecf0f1;
  padding: 8px 20px;
  border-radius: 20px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.tag:hover {
  background: var(--primary-color);
  color: white;
}

.article-share {
  display: flex;
  gap: 15px;
  align-items: center;
}

.article-share span {
  font-weight: 600;
  color: #2c3e50;
}

.share-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
  transition: all 0.3s;
}

.share-button.facebook {
  background: #3b5998;
}

.share-button.twitter {
  background: #1da1f2;
}

.share-button.linkedin {
  background: #0077b5;
}

.share-button.email {
  background: #7f8c8d;
}

.share-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Author Box */
.author-box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin-top: 40px;
  display: flex;
  gap: 25px;
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 40px;
  font-weight: bold;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.author-info p {
  color: #7f8c8d;
  line-height: 1.6;
}

/* Comments Section */
.comments-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #ecf0f1;
}

.comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.comments-header h3 {
  font-size: 28px;
  color: #2c3e50;
}

.comments-count {
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Comment Form */
.comment-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.comment-form h4 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 20px;
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

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

.submit-btn {
  background: var(--primary-color);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Comments List */
.comments-list {
  margin-top: 40px;
}

.comment-item {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s;
}

.comment-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comment-header {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.comment-meta {
  flex: 1;
}

.comment-author {
  font-weight: 600;
  color: #2c3e50;
  font-size: 16px;
  margin-bottom: 5px;
}

.comment-date {
  font-size: 13px;
  color: #7f8c8d;
}

.comment-body {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.comment-actions {
  display: flex;
  gap: 20px;
}

.comment-action {
  background: none;
  border: none;
  color: #7f8c8d;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.comment-action:hover {
  color: var(--primary-color);
}

/* Comment Reply */
.comment-reply {
  margin-left: 65px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #ecf0f1;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--primary-color);
}

/* Search Widget */
.search-form {
  display: flex;
  gap: 10px;
}

.search-form input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 15px;
  transition: border-color 0.3s;
}

.search-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.search-form button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.search-form button:hover {
  background: var(--primary-color-dark);
}

/* Recent Posts Widget */
.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ecf0f1;
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

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

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

.recent-post-content h4 {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.4;
}

.recent-post-content h4 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s;
}

.recent-post-content h4 a:hover {
  color: var(--primary-color);
}

.recent-post-date {
  font-size: 13px;
  color: #7f8c8d;
}

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

.category-list li {
  margin-bottom: 12px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s;
}

.category-list a:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  padding-left: 20px;
}

.category-count {
  background: #ecf0f1;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
}

/* Tags Widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud .tag {
  font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
  .sidebar {
    position: static;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .article-content {
    padding: 30px 20px;
  }

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

  .article-body {
    font-size: 16px;
  }

  .article-body h2 {
    font-size: 24px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    margin: 0 auto;
  }

  .comment-reply {
    margin-left: 0;
  }
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--secondary-color-dark) 100%
  );
  padding: 60px 0;
  margin-top: 60px;
}

.newsletter-content {
  text-align: center;
  color: white;
}

.newsletter-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.newsletter-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
  gap: 15px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
}

.newsletter-btn {
  padding: 15px 40px;
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background: var(--primary-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-menu li {
  display: inline;
}

.footer-menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 5px 10px;
}

.footer-menu li:not(:last-child)::after {
  content: " | ";
  color: #999;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact-info {
  text-align: center;
}

.contact-info h1 {
  margin: 0 0 15px 0;
  color: var(--secondary-color);
}

.contact-info h5 {
  font-size: 110%;
  color: var(--secondary-color);
}

.contact-info img {
  max-width: 170px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}

@media (max-width: 600px) {
  .contact-info img {
    max-width: 130px;
  }
}

.icon-wrapper {
  width: 30px;
  height: 30px;
  min-width: 30px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}

.contact-text strong {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.hotline {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    padding: 25px 20px;
  }

  .contact-item {
    padding: 15px;
    gap: 15px;
  }

  .icon-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 20px;
  }

  .contact-text {
    font-size: 14px;
  }
}

/* Animation */
.contact-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.contact-item:nth-child(1) {
  animation-delay: 0.1s;
}

.contact-item:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
  animation-delay: 0.3s;
}

.contact-item:nth-child(4) {
  animation-delay: 0.4s;
}

.contact-item:nth-child(5) {
  animation-delay: 0.5s;
}

.contact-item:nth-child(6) {
  animation-delay: 0.6s;
}

.contact-item:nth-child(7) {
  animation-delay: 0.7s;
}

.contact-item:nth-child(8) {
  animation-delay: 0.8s;
}

.contact-item:nth-child(9) {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #34495e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 20px;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

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

@keyframes lineGrow {
  from {
    height: 0;
  }

  to {
    height: 40px;
  }
}

@keyframes lineExpand {
  from {
    left: 50%;
    right: 50%;
  }

  to {
    left: 16.66%;
    right: 16.66%;
  }
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-color-dark);
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .post-card {
    min-width: calc(50% - 15px);
  }

  .branches-grid {
    grid-template-columns: 1fr;
  }

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

  .connection-lines {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .section-title h1 {
    font-size: 32px;
  }

  .main-logo-image {
    width: 180px;
  }

  .branch-logo-image {
    width: 150px;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    min-width: 100%;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .post-image {
    height: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
.liconk {
    margin: 0 -4px 0 0;
    padding: 5px;
    padding-left: 3px;
    border-radius: 5px;
    border: 0 solid #CCC;
    width: 60px;
    position: fixed;
    right: 15px;
    bottom: 239px;
    z-index: 9999
}

.liconk img {
    margin-top: 10px
}