:root {
  --cl-primary: #e24a14;
  --cl-secondary: #4b4fe0;
  --cl-text: #303136;
  --cl-gray: #737784;
  --cl-blue: #3b4cb8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--cl-text);
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button {
  outline: none;
  border: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

.sm {
  display: none !important;
}

.md {
  display: flex !important;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  width: 100%;
}

/* Header Top */
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
  background: linear-gradient(90deg, rgba(36, 38, 89, 1) 0%, rgba(40, 135, 191, 1) 50%);
  padding: 16px 0;
  z-index: 10;
}

.main-nav {
  display: flex;
  justify-content: center;
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-left {
  display: flex;
  gap: 44px;
}

.header-top-left a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  transition: opacity 0.3s;
  font-weight: 400;
}

.header-top-left a:hover {
  opacity: 0.8;
}

.header-top-left img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.header-top-right {
  display: flex;
  align-items: center;
  position: relative;
}

.language-dropdown {
  position: absolute;
  top: 140%;
  right: 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 4px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
  width: max-content;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.language-dropdown.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.language-dropdown li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  transition: opacity 0.3s;
  cursor: pointer;
}

.language-dropdown li:hover {
  background-color: #f5f5f5;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.flag-icon {
  width: 24px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
}

.language-selector .icon-down {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Header Main */
.header-main {
  background-color: #fff;
  padding: 16px 0;
}

.header-main-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 33px;
}

.logo {
  flex-shrink: 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  object-fit: contain;
  width: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-ministry {
  font-size: 10px;
  color: #424242;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.logo-name {
  font-size: 16px;
  font-weight: 800;
  color: #292c6b;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.logo-name-en {
  font-size: 12px;
  color: #f16825;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Main Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  display: block;
  padding: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--cl-text);
  transition: color 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--cl-primary);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  font-size: 24px;
  color: var(--cl-secondary);
}

/* Hero Banner */
.hero-banner {
  position: relative;
  /* padding: 32px 0px; */
}

.hero-slider-swiper .swiper-slide {
  position: relative;
  padding-top: 48%;
  overflow: hidden;
  border-radius: 16px;
}

.hero-slider-swiper .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-slider-swiper .swiper-pagination {
  right: 16px !important;
  top: 50% !important;
  left: auto !important;
  bottom: auto !important;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.hero-slider-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 60px;
  background-color: #fff;
  opacity: 0.3;
  border-radius: 30px !important;
}

.hero-slider-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

section:not(.hero-banner) {
  padding: 48px 0px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: var(--cl-primary);
  margin-bottom: 32px;
  position: relative;
}

/* Stats Section */
.stats-section {
  position: relative;
  background: url("../images/result-bg.png") center/cover no-repeat, #f7f8f8eb;
  background-blend-mode: overlay;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 16px;
  position: relative;
}

.stat-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--cl-primary);
  margin-bottom: 8px;
}

.stat-text {
  font-size: 20px;
  color: #292c6b;
  font-weight: 500;
  line-height: 1.4;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.phone-btn {
  background-color: #ff6b35;
  color: #fff;
  font-size: 26px;
  animation: phone-pulse 2s infinite;
  position: relative;
}

.phone-btn span {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  right: 30px;
  width: fit-content;
  border-radius: 30px;
  background-color: #ff6b35;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 50px 4px 16px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  transition: all 0.3s ease;
}

.phone-btn:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.zalo-btn {
  background: linear-gradient(90deg, rgba(36, 38, 89, 1) 0%, rgba(40, 135, 191, 1) 50%);
  padding: 8px;
  animation: zalo-pulse 2s infinite;
}

.zalo-btn img {
  width: 40px;
  height: 40px;
}

@keyframes phone-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

@keyframes zalo-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(103, 117, 237, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(103, 117, 237, 0);
  }

  to {
    box-shadow: 0 0 0 0 rgba(103, 117, 237, 0);
  }
}

/* Programs Section */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.program-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.program-card:hover .program-image img {
  transform: scale(1.05);
}

.program-label {
  position: absolute;
  top: 32px;
  right: 0px;
  padding: 12px 24px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  cursor: default;
}

.program-label span {
  text-transform: uppercase;
}

.program-label ul {
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0px;
}

.program-label ul.active {
  margin-top: 24px;
}

.program-label ul li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  min-height: 24px;
}

.program-label ul li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.program-label.green {
  background: #538a26;
}

.program-label.orange {
  background: #f16825;
}

.program-label.purple {
  background: linear-gradient(90deg, rgba(36, 38, 89, 1) 0%, rgba(40, 135, 191, 1) 50%);
}

/* Registration Section */
section.registration-section {
  background: url("../images/form-bg2.png") center/cover no-repeat;
  background-color: #2887BF;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.registration-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.registration-left {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.registration-header {
  position: relative;
  padding-top: 32px;
  max-width: 700px;
}

.registration-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.registration-header h2 span {
  color: #f48543;
}

.registration-header h2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 20%;
  background: url("../images/form-decor-icon3.svg") center/cover no-repeat;
  width: 120px;
  height: 80px;
}

.registration-desc {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 16px;
}

.registration-image {
  width: 100%;
  margin-bottom: -5px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
}

.registration-image img {
  width: 100%;
  object-fit: contain;
}

.registration-image::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -10px;
  background: url("../images/form-decor-icon1.svg") center/contain no-repeat;
  width: 80px;
  height: 82px;
}

.registration-image::after {
  content: "";
  position: absolute;
  top: 30%;
  right: -10px;
  background: url("../images/form-decor-icon2.svg") center/contain no-repeat;
  width: 80px;
  height: 82px;
}

.registration-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 80px 0px;
}

.registration-form-wrapper {
  background: #fff;
  border-radius: 16px;
  position: relative;
  max-width: 490px;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.registration-form-wrapper::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  border-radius: 16px;
  border: 2px dashed #fff;
  z-index: -1;
}

.form-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--cl-text);
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #737784;
  margin-bottom: 4px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  min-height: 44px;
  border: 1px solid #afbaca;
  border-radius: 10px;
  font-size: 14px;
  color: var(--cl-text);
  box-shadow: 0px 2px 4px 0px #00000014;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--cl-secondary);
  box-shadow: 0 0 0 3px rgba(75, 79, 224, 0.1);
}

.form-group input::placeholder {
  color: #9e9e9e;
}

.input-icon {
  position: relative;
}

.input-icon input,
.input-icon select {
  font-family: "Roboto", sans-serif;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.select-wrapper i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9e9e9e;
  pointer-events: none;
}

.btn-submit {
  width: 100%;
  padding: 10px;
  min-height: 44px;
  background: linear-gradient(90deg, rgba(36, 38, 89, 1) 0%, rgba(40, 135, 191, 1) 50%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  background-color: var(--cl-primary);
  border-color: var(--cl-primary);
}

.registration-right {
  position: relative;
}

.registration-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0%;
  background: url("../images/form-decor-icon4.svg") center/contain no-repeat;
  width: 140px;
  height: 250px;
}

.registration-right::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 0%;
  background: url("../images/form-decor-icon55.svg") center/contain no-repeat;
  width: 150px;
  height: 90px;
}

/* News Section */
.news-section {
  background: #eff3fe;
}

.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.news-item:first-child {
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
}

.news-item:first-child .news-item-image {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.news-item:first-child .news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  background: #fff;
  border-bottom: 1px solid #eeeef0;
  transition: transform 0.3s;
  border-radius: 16px;
  padding: 24px;
}

.news-item:first-child .news-item-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-item:first-child .news-item-desc {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--cl-text);
}

.news-date {
  font-size: 16px;
  color: var(--cl-gray);
  display: block;
  margin-bottom: 8px;
}

.news-item-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--cl-text);
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.news-item:hover .news-item-title {
  color: var(--cl-primary);
}

.news-item-desc {
  font-size: 16px;
  color: var(--cl-text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item-image:not(.news-item:first-child .news-item-image) {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: fit-content;
  max-width: 320px;
  position: relative;
  padding-top: 75%;
  flex-shrink: 0;
}

.news-item-image:not(.news-item:first-child .news-item-image) img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Cooperation Section */
.cooperation-section {
  background: #fef6ee;
}

.cooperation-slider-swiper {
  padding-bottom: 30px !important;
}

.cooperation-slider-swiper .swiper-slide {
  background: white;
  padding: 32px;
  border-radius: 16px;
}

.cooperation-slider-swiper .cooperation-image {
  border-radius: 12px;
  position: relative;
  padding-top: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}

.cooperation-slider-swiper .cooperation-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cooperation-slider-swiper .cooperation-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cooperation-slider-swiper .cooperation-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--cl-text);
}

.cooperation-slider-swiper .cooperation-content p {
  font-size: 16px;
  color: var(--cl-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cooperation-slider-swiper .swiper-pagination {
  bottom: 0 !important;
}

.cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet {
  background: #fbd1ad;
  max-width: 100px;
  height: 6px;
  width: 100%;
  border-radius: 30px !important;
}

.cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--cl-primary);
}

/* Student Life Section */
.student-life-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #fff 0%, #f5f7fa 100%);
}

.student-life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.student-life-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #eeeef0;
  transition: all 0.3s ease;
}

.student-life-card a {
  display: block;
}

.student-life-image {
  position: relative;
  padding-top: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 12px;
}

.student-life-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.student-life-date {
  font-size: 16px;
  color: var(--cl-gray);
  display: block;
  margin-bottom: 8px;
}

.student-life-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--cl-text);
  line-height: 1.5;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.student-life-card:hover .student-life-content h3 {
  color: var(--cl-primary);
}

.student-life-content p {
  font-size: 16px;
  color: var(--cl-gray);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Partners Section */
.partners-section {
  padding: 50px 0 60px;
  background: #fff;
}

.partners-slider-swiper .swiper-slide {
  background-color: #f7f8f8;
  padding: 16px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-slider-swiper .swiper-slide img {
  max-height: 70px;
  object-fit: contain;
}

/* Quick Links Bar */
.quick-links-bar {
  background-color: #f16825;
  padding: 8px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.quick-links a {
  padding: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s, transform 0.3s;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, rgba(36, 38, 89, 1) 0%, rgba(40, 135, 191, 1) 50%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

.footer::before {
  content: "";
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
}

.footer-main {
  padding: 32px 0px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 100%;
  max-width: 600px;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-ministry {
  font-size: 12px;
  color: white;
  margin-bottom: 4px;
}

.footer-name {
  font-size: 18px;
  font-weight: 700;
  color: #eff3fe;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-name-en {
  font-size: 12px;
  color: #f16825;
  text-transform: uppercase;
}

.footer-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-middle h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-item-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 20px;
}

.footer-map,
.footer-social {
  grid-column: span 2;
}

.footer-map iframe {
  width: 100%;
  max-height: 120px;
  height: 100%;
  border-radius: 8px;
}

.footer-middle-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-middle-item-inner {
  display: flex;
  gap: 12px;
}

.footer-middle-item-inner span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-middle-item-inner span i {
  font-size: 14px;
  background: linear-gradient(90deg, rgba(36, 38, 89, 1) 0%, rgba(40, 135, 191, 1) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-middle-item-inner a {
  font-size: 14px;
  text-decoration: none;
}

.footer-social {
  margin: 10px 0px;
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-middle-item-inner>div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.footer-middle-item-inner>div p {
  line-height: 1.5;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(36, 38, 89, 1) 0%, rgba(40, 135, 191, 1) 50%);
  padding: 6px;
  display: flex;
  align-items: center;
  font-size: 12px;
  justify-content: center;
}

.footer-right {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
}

.footer-right .footer-item ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 10px;
  font-size: 14px;
  min-height: 42px;
}

/* Responsive */
@media screen and (max-width: 1670px) {
  .header-main-inner {
    gap: 20px;
  }

  .main-nav a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1560px) {
  .main-nav a {
    font-size: 16px;
    padding: 6px;
  }

  .section-title {
    font-size: 36px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-text {
    font-size: 16px;
  }

  .program-label {
    font-size: 18px;
  }

  .registration-header h2 {
    font-size: 36px;
  }

  .form-title {
    font-size: 22px;
  }

  .news-item:first-child .news-item-title {
    font-size: 22px;
  }

  .news-date,
  .student-life-date {
    font-size: 14px;
  }

  .news-item-title,
  .student-life-content h3 {
    font-size: 20px;
    line-height: 1.2;
  }

  .cooperation-slider-swiper .cooperation-content h3 {
    font-size: 18px;
  }

  .cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet {
    max-width: 100px;
    height: 6px;
  }

  .program-label {
    font-size: 20px;
  }

  .student-life-content h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 1260px) {
  .header-top {
    padding: 8px 0px;
  }

  .header-top-left img {
    width: 24px;
    height: 24px;
  }

  .main-nav a {
    padding: 6px;
    font-size: 12px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3)::after,
  .stat-item:nth-child(6)::after {
    display: none;
  }

  .section-title {
    font-size: 30px;
  }

  .program-label {
    font-size: 16px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }
}

@media screen and (max-width: 992px) {
  .logo {
    max-width: 500px;
  }

  .header-main-inner {
    grid-template-columns: 1fr 32px;
    gap: 10px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    justify-content: flex-start;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    transform: translateX(-100%);
    transition: all 0.3s ease;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
    width: 80%;
    max-width: 420px;
    height: 100%;
  }

  .main-nav.active ul {
    transform: translateX(0);
  }

  .main-nav ul .icon-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .sm {
    display: flex !important;
  }

  .md {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
  }

  .logo-name {
    font-size: 12px;
  }

  .logo-name-en {
    font-size: 9px;
  }

  .hotline-numbers span {
    font-size: 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .registration-wrapper {
    display: flex;
    flex-direction: column;
  }

  .registration-right::before,
  .registration-right::after {
    right: 10px;
  }

  .registration-right {
    padding: 40px 0px;
  }

  .registration-left {
    padding-bottom: 0;
  }

  .registration-image {
    position: relative;
    margin-top: 30px;
  }

  .registration-right {
    flex: none;
    width: 100%;
  }

  .registration-header h2 {
    font-size: 28px;
  }

  .registration-header h3 {
    font-size: 26px;
  }

  .news-wrapper {
    grid-template-columns: 1fr;
  }

  .cooperation-image img {
    height: 350px;
  }

  .student-life-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-programs {
    flex-wrap: wrap;
    gap: 30px;
  }

  .quick-links {
    gap: 20px;
  }

  .header-top-left a {
    font-size: 12px;
  }

  .header-top-left img {
    width: 18px;
    height: 18px;
  }

  .language-selector {
    font-size: 12px;
  }

  .flag-icon {
    width: 20px;
    height: 16px;
  }

  .language-selector .icon-down {
    width: 16px;
    height: 16px;
  }

  .news-item:first-child {
    grid-row: span 1;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet {
    max-width: 80px;
  }

  .footer-middle {
    display: flex;
    flex-direction: column-reverse;
  }

  .footer-right {
    justify-content: space-between;
  }

  section:not(.hero-banner) {
    padding: 32px 0px;
  }

  .hero-slider-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 2px;
    height: 18px;
  }

  .hero-slider-swiper .swiper-pagination {
    right: 8px !important;
  }
}

@media screen and (max-width: 768px) {
  .header-top-left {
    gap: 12px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(odd)::after {
    display: block;
  }

  .stat-item:nth-child(even)::after {
    display: none;
  }

  .college-name {
    font-size: 18px;
  }

  .hotline-numbers span {
    font-size: 16px;
  }

  .hotline-numbers i {
    font-size: 20px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .registration-header h2 {
    font-size: 24px;
  }

  .registration-header h3 {
    font-size: 22px;
  }

  .registration-icon {
    display: none;
  }

  .decor-plane,
  .decor-bulb,
  .decor-book {
    display: none;
  }

  .news-item-title {
    font-size: 14px;
  }

  .cooperation-image img {
    height: 250px;
  }

  .cooperation-content h3 {
    font-size: 18px;
  }

  .student-life-image {
    height: 200px;
  }

  .student-life-content h3 {
    font-size: 16px;
  }

  .partners-track {
    gap: 15px;
  }

  .partner-item {
    flex: 0 0 140px;
    height: 80px;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .hero-slider-swiper .swiper-slide {
    border-radius: 8px;
  }

  .logo img {
    width: 100%;
  }

  .header-main-inner {
    grid-template-columns: 1fr 32px;
    gap: 26px;
  }

  .header-main {
    padding: 12px 0px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .hero-banner {
    padding: 16px 0px;
  }

  section:not(.hero-banner) {
    padding: 16px 0px;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .stats-grid {
    gap: 16px;
  }

  .stat-number {
    font-size: 24px;
  }

  .float-btn {
    width: 40px;
    height: 40px;
  }

  .phone-btn {
    font-size: 16px;
  }

  .floating-buttons {
    right: 10px;
  }

  .program-label {
    top: 16px;
  }

  .partner-item {
    flex: 0 0 120px;
    height: 70px;
  }

  .footer-name {
    font-size: 12px;
  }

  .footer-programs {
    flex-direction: column;
    gap: 25px;
  }

  .language-selector .language-name {
    display: none;
  }

  .header-top-left img {
    width: 16px;
    height: 16px;
  }

  /* .header-top {
    padding: 18px 0px;
  } */

  .registration-header h2::before {
    width: 65px;
    height: 40px;
    right: 10px;
    top: -10px;
  }

  .registration-desc {
    font-size: 14px;
  }

  .registration-wrapper {
    gap: 24px;
  }

  .registration-form-wrapper::before {
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    top: -10px;
    left: -10px;
    border-radius: 24px;
  }

  .registration-right::before,
  .registration-right::after {
    display: none;
  }

  .registration-right {
    padding: 0px;
  }

  .registration-form-wrapper {
    width: 98%;
    border-radius: 16px;
    padding: 16px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-group input,
  .form-group select,
  .btn-submit {
    min-height: 38px;
    padding: 8px 12px;
  }

  .registration-image {
    margin-bottom: -16px;
  }

  .news-item {
    display: flex;
    padding: 16px;
    flex-direction: column-reverse !important;
  }

  .news-item .news-item-title,
  .cooperation-slider-swiper .cooperation-content h3 {
    font-size: 18px !important;
  }

  .news-item .news-item-image {
    position: relative;
    padding-top: 75% !important;
  }

  .news-item .news-item-image img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
  }

  .news-item .news-item-desc,
  .cooperation-slider-swiper .cooperation-content p,
  .student-life-content p {
    font-size: 14px !important;
  }

  .cooperation-slider-swiper .swiper-pagination .swiper-pagination-bullet {
    max-width: 70px;
    height: 4px;
  }

  .cooperation-slider-swiper .swiper-slide,
  .student-life-card {
    padding: 16px;
  }

  .cooperation-slider-swiper .cooperation-content {
    gap: 8px;
  }

  .partners-slider-swiper .swiper-slide img {
    height: 60px;
    object-fit: contain;
  }

  .quick-links a {
    font-size: 12px;
  }

  .quick-links-bar {
    padding: 8px 0px;
  }

  .quick-links-bar .container {
    padding: 0px;
  }

  .quick-links {
    gap: 8px;
  }

  .footer-main {
    padding: 20px 0px;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-middle {
    gap: 24px;
  }

  .footer-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-right .footer-item ul {
    font-size: 14px;
  }

  .footer-middle-item-inner,
  .footer-middle-item-inner a {
    font-size: 14px;
  }

  .footer-middle-item-inner span {
    width: 32px;
    height: 32px;
  }

  .footer-social {
    margin-top: 0px;
    margin-bottom: 8px;
  }

  .footer {
    padding-bottom: 45px;
  }

  .partners-slider-swiper .swiper-slide {
    height: 80px;
  }
}

/* =========================================
   SINGLE POST PAGE
========================================= */

.nct-site-wrapper .single-post-page {
  padding-bottom: 60px;
  background: #f7f8fa;
}

/* Breadcrumb */
.nct-site-wrapper .single-breadcrumb-wrap {
  padding: 20px 0 8px;
}

.nct-site-wrapper .single-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

.nct-site-wrapper .single-breadcrumb a {
  color: #4b5563;
  transition: color 0.2s ease;
}

.nct-site-wrapper .single-breadcrumb a:hover {
  color: #f58220;
}

.nct-site-wrapper .single-breadcrumb .sep {
  opacity: 0.6;
}

.nct-site-wrapper .single-breadcrumb .current {
  color: #111827;
  font-weight: 600;
}

/* Hero */
.nct-site-wrapper .single-hero {
  padding: 18px 0 32px;
}

.nct-site-wrapper .single-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 520px);
  gap: 32px;
  align-items: center;
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.nct-site-wrapper .single-hero__category {
  margin-bottom: 14px;
}

.nct-site-wrapper .single-hero__category a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.12);
  color: #f58220;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.nct-site-wrapper .single-hero__title {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
}

.nct-site-wrapper .single-hero__excerpt {
  margin-bottom: 18px;
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
}

.nct-site-wrapper .single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.nct-site-wrapper .single-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.nct-site-wrapper .single-meta-item i {
  color: #f58220;
  font-size: 14px;
}

.nct-site-wrapper .single-hero__thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #eef2f7;
  min-height: 280px;
}

.nct-site-wrapper .single-hero__thumbnail img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

/* Main layout */
.nct-site-wrapper .single-layout-wrap {
  padding: 8px 0 36px;
}

.nct-site-wrapper .single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

/* Content */
.nct-site-wrapper .single-content {
  min-width: 0;
}

.nct-site-wrapper .single-content__inner {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

/* Entry content typography */
.nct-site-wrapper .single-content__inner.entry-content {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.9;
}

.nct-site-wrapper .single-content__inner.entry-content>*:first-child {
  margin-top: 0;
}

.nct-site-wrapper .single-content__inner.entry-content>*:last-child {
  margin-bottom: 0;
}

.nct-site-wrapper .single-content__inner.entry-content p {
  margin: 0 0 18px;
}

.nct-site-wrapper .single-content__inner.entry-content h2,
.nct-site-wrapper .single-content__inner.entry-content h3,
.nct-site-wrapper .single-content__inner.entry-content h4,
.nct-site-wrapper .single-content__inner.entry-content h5,
.nct-site-wrapper .single-content__inner.entry-content h6 {
  margin: 28px 0 14px;
  color: #111827;
  line-height: 1.35;
  font-weight: 800;
}

.nct-site-wrapper .single-content__inner.entry-content h2 {
  font-size: 30px;
}

.nct-site-wrapper .single-content__inner.entry-content h3 {
  font-size: 24px;
}

.nct-site-wrapper .single-content__inner.entry-content h4 {
  font-size: 20px;
}

.nct-site-wrapper .single-content__inner.entry-content ul,
.nct-site-wrapper .single-content__inner.entry-content ol {
  margin: 0 0 18px 22px;
  padding: 0;
}

.nct-site-wrapper .single-content__inner.entry-content ul {
  list-style: disc;
}

.nct-site-wrapper .single-content__inner.entry-content ol {
  list-style: decimal;
}

.nct-site-wrapper .single-content__inner.entry-content li {
  margin-bottom: 8px;
}

.nct-site-wrapper .single-content__inner.entry-content a {
  color: #f58220;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nct-site-wrapper .single-content__inner.entry-content a:hover {
  color: #d96c0d;
}

.nct-site-wrapper .single-content__inner.entry-content strong {
  font-weight: 700;
  color: #111827;
}

.nct-site-wrapper .single-content__inner.entry-content img {
  border-radius: 18px;
  margin: 16px 0;
}

.nct-site-wrapper .single-content__inner.entry-content figure {
  margin: 20px 0;
}

.nct-site-wrapper .single-content__inner.entry-content figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

.nct-site-wrapper .single-content__inner.entry-content blockquote {
  margin: 24px 0;
  padding: 18px 20px 18px 22px;
  border-left: 4px solid #f58220;
  background: #fff7ed;
  border-radius: 0 16px 16px 0;
  color: #7c2d12;
  font-style: italic;
}

.nct-site-wrapper .single-content__inner.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
}

.nct-site-wrapper .single-content__inner.entry-content table th,
.nct-site-wrapper .single-content__inner.entry-content table td {
  border: 1px solid #e5e7eb;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.nct-site-wrapper .single-content__inner.entry-content table th {
  background: #f9fafb;
  font-weight: 700;
  color: #111827;
}

/* Page links */
.nct-site-wrapper .page-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.nct-site-wrapper .page-links-title {
  font-weight: 700;
  color: #111827;
}

.nct-site-wrapper .page-links>span:not(.page-links-title),
.nct-site-wrapper .page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  background: #f3f4f6;
  color: #111827;
  text-decoration: none;
}

.nct-site-wrapper .page-links>span:not(.page-links-title) {
  background: #f58220;
  color: #ffffff;
}

/* Tags */
.nct-site-wrapper .single-tags {
  margin-top: 24px;
  padding: 22px 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.nct-site-wrapper .single-tags__label {
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
  color: #111827;
}

.nct-site-wrapper .single-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nct-site-wrapper .single-tags__list a {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nct-site-wrapper .single-tags__list a:hover {
  background: #f58220;
  color: #fff;
}

/* Share */
.nct-site-wrapper .single-share {
  margin-top: 20px;
  padding: 22px 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.nct-site-wrapper .single-share__label {
  font-weight: 800;
  color: #111827;
}

.nct-site-wrapper .single-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nct-site-wrapper .single-share__list a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nct-site-wrapper .single-share__list a:hover {
  background: #f58220;
  color: #fff;
  transform: translateY(-2px);
}

/* CTA */
.nct-site-wrapper .single-cta {
  margin-top: 24px;
}

.nct-site-wrapper .single-cta__inner {
  background: linear-gradient(90deg, rgb(52 54 105) 0%, rgba(40, 135, 191, 1) 50%);
  border-radius: 24px;
  padding: 28px;
  color: #ffffff;
  box-shadow: 0 18px 38px rgba(245, 130, 32, 0.2);
}

.nct-site-wrapper .single-cta__inner h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
}

.nct-site-wrapper .single-cta__inner p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.96;
}

.nct-site-wrapper .single-cta__actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nct-site-wrapper .btn-primary,
.nct-site-wrapper .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 15px;
}

.nct-site-wrapper .btn-primary {
  background: #ffffff;
  color: #f58220;
}

.nct-site-wrapper .btn-primary:hover {
  background: #111827;
  color: #ffffff;
}

.nct-site-wrapper .btn-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.nct-site-wrapper .btn-secondary:hover {
  background: rgba(17, 24, 39, 0.18);
  color: #ffffff;
}

/* Prev next */
.nct-site-wrapper .single-post-nav {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nct-site-wrapper .single-post-nav__prev a,
.nct-site-wrapper .single-post-nav__next a {
  display: block;
  height: 100%;
  padding: 22px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  transition: all 0.2s ease;
}

.nct-site-wrapper .single-post-nav__prev a:hover,
.nct-site-wrapper .single-post-nav__next a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}

.nct-site-wrapper .single-post-nav__next {
  text-align: right;
}

.nct-site-wrapper .single-post-nav .nav-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #f58220;
  text-transform: uppercase;
}

.nct-site-wrapper .single-post-nav .nav-title {
  display: block;
  color: #111827;
  line-height: 1.6;
  font-weight: 700;
}

/* Sidebar */
.nct-site-wrapper .single-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nct-site-wrapper .single-sidebar__box {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.nct-site-wrapper .single-sidebar__title {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
  color: #111827;
}

.nct-site-wrapper .single-sidebar__list,
.nct-site-wrapper .single-sidebar__posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nct-site-wrapper .single-sidebar__list li,
.nct-site-wrapper .single-sidebar__posts li {
  line-height: 1.6;
}

.nct-site-wrapper .single-sidebar__list a,
.nct-site-wrapper .single-sidebar__posts a {
  color: #374151;
  transition: color 0.2s ease;
}

.nct-site-wrapper .single-sidebar__list a:hover,
.nct-site-wrapper .single-sidebar__posts a:hover {
  color: #f58220;
}

.nct-site-wrapper .single-sidebar__list .count {
  color: #9ca3af;
  font-size: 13px;
  margin-left: 4px;
}

.nct-site-wrapper .single-sidebar__cta {
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  border: 1px solid rgba(245, 130, 32, 0.12);
}

.nct-site-wrapper .single-sidebar__cta p {
  margin: 0 0 14px;
  color: #4b5563;
  line-height: 1.7;
}

.nct-site-wrapper .single-sidebar__cta .btn-primary,
.nct-site-wrapper .single-sidebar__cta .btn-secondary {
  width: 100%;
}

.nct-site-wrapper .single-sidebar__cta .btn-secondary {
  margin-top: 10px;
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.nct-site-wrapper .single-sidebar__cta .btn-secondary:hover {
  background: #f58220;
  border-color: #f58220;
}

/* Search form */
.nct-site-wrapper .single-sidebar .searchform,
.nct-site-wrapper .single-sidebar .search-form,
.nct-site-wrapper .single-sidebar form[role="search"] {
  display: flex;
  gap: 10px;
}

.nct-site-wrapper .single-sidebar input[type="search"],
.nct-site-wrapper .single-sidebar .search-field {
  flex: 1;
  height: 46px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  color: #111827;
}

.nct-site-wrapper .single-sidebar input[type="search"]:focus,
.nct-site-wrapper .single-sidebar .search-field:focus {
  border-color: #f58220;
  outline: none;
}

.nct-site-wrapper .single-sidebar button[type="submit"],
.nct-site-wrapper .single-sidebar .search-submit {
  height: 46px;
  min-width: 46px;
  padding: 0 16px;
  border-radius: 12px;
  background: #f58220;
  color: #fff;
  font-weight: 700;
}

/* Related */
.nct-site-wrapper .related-posts {
  padding: 18px 0 10px;
}

.nct-site-wrapper .related-posts__head {
  margin-bottom: 18px;
}

.nct-site-wrapper .related-posts__head h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #111827;
}

.nct-site-wrapper .related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.nct-site-wrapper .related-post-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nct-site-wrapper .related-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.nct-site-wrapper .related-post-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: #eef2f7;
  overflow: hidden;
}

.nct-site-wrapper .related-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nct-site-wrapper .related-post-card:hover .related-post-card__thumb img {
  transform: scale(1.04);
}

.nct-site-wrapper .related-post-card__content {
  padding: 20px;
}

.nct-site-wrapper .related-post-card__cat {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  color: #f58220;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.nct-site-wrapper .related-post-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
}

.nct-site-wrapper .related-post-card__title a {
  color: #111827;
  text-decoration: none;
}

.nct-site-wrapper .related-post-card__title a:hover {
  color: #f58220;
}

.nct-site-wrapper .related-post-card__meta {
  margin-bottom: 10px;
  font-size: 13px;
  color: #6b7280;
}

.nct-site-wrapper .related-post-card__excerpt {
  color: #4b5563;
  line-height: 1.75;
  font-size: 15px;
}

/* Utility */
.nct-site-wrapper .btn-primary.full,
.nct-site-wrapper .btn-secondary.full {
  width: 100%;
}

/* Responsive */
@media (max-width: 1199px) {
  .nct-site-wrapper .single-hero__title {
    font-size: 34px;
  }

  .nct-site-wrapper .single-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .nct-site-wrapper .related-posts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .nct-site-wrapper .single-breadcrumb-wrap {
    padding-top: 16px;
  }

  .nct-site-wrapper .single-hero__inner {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 22px;
  }

  .nct-site-wrapper .single-hero__title {
    font-size: 30px;
  }

  .nct-site-wrapper .single-layout {
    grid-template-columns: 1fr;
  }

  .nct-site-wrapper .single-sidebar {
    position: static;
    top: auto;
  }

  .nct-site-wrapper .single-post-nav {
    grid-template-columns: 1fr;
  }

  .nct-site-wrapper .single-post-nav__next {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .nct-site-wrapper .single-post-page {
    padding-bottom: 46px;
  }

  .nct-site-wrapper .single-hero {
    padding-bottom: 24px;
  }

  .nct-site-wrapper .single-hero__inner,
  .nct-site-wrapper .single-content__inner,
  .nct-site-wrapper .single-sidebar__box,
  .nct-site-wrapper .single-cta__inner,
  .nct-site-wrapper .single-tags,
  .nct-site-wrapper .single-share,
  .nct-site-wrapper .single-post-nav__prev a,
  .nct-site-wrapper .single-post-nav__next a {
    border-radius: 18px;
  }

  .nct-site-wrapper .single-hero__inner,
  .nct-site-wrapper .single-content__inner {
    padding: 20px;
  }

  .nct-site-wrapper .single-hero__title {
    font-size: 26px;
  }

  .nct-site-wrapper .single-hero__excerpt {
    font-size: 16px;
  }

  .nct-site-wrapper .single-content__inner.entry-content {
    font-size: 15px;
    line-height: 1.85;
  }

  .nct-site-wrapper .single-content__inner.entry-content h2 {
    font-size: 24px;
  }

  .nct-site-wrapper .single-content__inner.entry-content h3 {
    font-size: 21px;
  }

  .nct-site-wrapper .single-content__inner.entry-content h4 {
    font-size: 18px;
  }

  .nct-site-wrapper .single-cta__inner h3 {
    font-size: 24px;
  }

  .nct-site-wrapper .related-posts__head h2 {
    font-size: 28px;
  }

  .nct-site-wrapper .related-posts__grid {
    grid-template-columns: 1fr;
  }

  .nct-site-wrapper .single-sidebar .searchform,
  .nct-site-wrapper .single-sidebar .search-form,
  .nct-site-wrapper .single-sidebar form[role="search"] {
    flex-direction: column;
  }

  .nct-site-wrapper .single-sidebar button[type="submit"],
  .nct-site-wrapper .single-sidebar .search-submit {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .nct-site-wrapper .single-breadcrumb {
    font-size: 13px;
  }

  .nct-site-wrapper .single-hero__meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .nct-site-wrapper .single-cta__actions {
    flex-direction: column;
  }

  .nct-site-wrapper .btn-primary,
  .nct-site-wrapper .btn-secondary {
    width: 100%;
  }

  .nct-site-wrapper .related-post-card__content {
    padding: 16px;
  }

  .nct-site-wrapper .related-post-card__title {
    font-size: 18px;
  }
}

/* =========================================
   CATEGORY PAGE
========================================= */

.category-page {
  padding-bottom: 60px;
  background: #f7f8fa;
}

/* =========================================
   CATEGORY HERO SPLIT
========================================= */

.category-hero {
  padding: 25px 0 30px;
}

.category-hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
}

/* Left */

.category-hero-split__content {
  background: linear-gradient(90deg, rgb(83 86 144) 0%, rgba(40, 135, 191, 1) 50%);
  border-radius: 26px;
  padding: 36px;
  color: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
}

.category-breadcrumb a {
  color: rgba(255, 255, 255, .9);
}

.category-breadcrumb span {
  margin: 0 6px;
}

.category-hero-split__label {
  background: rgba(255, 255, 255, .2);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.category-hero-split__title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 14px;
}

.category-hero-split__desc {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.category-hero-split__meta {
  font-size: 14px;
  margin-bottom: 20px;
}

.category-hero-split__actions {
  display: flex;
  gap: 12px;
}

/* =========================================
   FEATURED HERO CARD
========================================= */

.category-hero-split__featured {
  min-width: 0;
}

.category-hero-featured-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.category-hero-featured-card__thumb {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.category-hero-featured-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}

.category-hero-featured-card:hover img {
  transform: scale(1.05);
}

.category-hero-featured-card__content {
  padding: 22px;
}

.category-hero-featured-card__cat {
  font-size: 12px;
  font-weight: 700;
  color: #f58220;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.category-hero-featured-card__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.category-hero-featured-card__title a {
  color: #111827;
}

.category-hero-featured-card__title a:hover {
  color: #f58220;
}

.category-hero-featured-card__excerpt {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.category-hero-featured-card__meta {
  font-size: 13px;
  color: #777;
}

/* =========================================
   MAIN LAYOUT
========================================= */

.category-layout-wrap {
  padding-top: 20px;
}

.category-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

/* =========================================
   POSTS GRID
========================================= */

.category-posts__head {
  margin-bottom: 16px;
}

.category-posts__head h2 {
  font-size: 30px;
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Post card */

.category-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
  transition: .25s;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.category-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-card__cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f58220;
  margin-bottom: 6px;
}

.category-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.category-card__title a {
  color: #111827;
}

.category-card__title a:hover {
  color: #f58220;
}

.category-card__meta {
  font-size: 12px;
  color: #777;
  margin-bottom: 10px;
}

.category-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
}

.category-card__more {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: #f58220;
}

/* =========================================
   SIDEBAR
========================================= */

.category-sidebar {
  position: sticky;
  top: 100px;
}

.category-sidebar__box {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .04);
}

.category-sidebar__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 14px;
}

.category-sidebar__list li {
  margin-bottom: 8px;
}

.category-sidebar__list a {
  color: #374151;
}

.category-sidebar__list a:hover {
  color: #f58220;
}

.category-sidebar__posts li {
  margin-bottom: 8px;
}

.category-sidebar__posts a {
  color: #374151;
}

.category-sidebar__posts a:hover {
  color: #f58220;
}

/* CTA */

.category-sidebar__cta {
  background: linear-gradient(135deg, #f58220, #ff9f4a);
}

.category-sidebar__cta p {
  margin-bottom: 14px;
  color: white;
}

/* =========================================
   PAGINATION
========================================= */

.category-pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.category-pagination a,
.category-pagination span {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .05);
  font-weight: 700;
}

.category-pagination a:hover {
  background: #f58220;
  color: #fff;
}

.category-pagination .current {
  background: #f58220;
  color: #fff;
}

/* =========================================
   BOTTOM CTA
========================================= */

.category-bottom-cta {
  margin-top: 40px;
}

.category-bottom-cta__inner {
  background: linear-gradient(90deg, rgb(52 54 105) 0%, rgba(40, 135, 191, 1) 50%);
  padding: 36px;
  border-radius: 26px;
  text-align: center;
  color: #fff;
}

.category-bottom-cta__inner h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.category-bottom-cta__inner p {
  max-width: 650px;
  margin: auto;
  margin-bottom: 18px;
  line-height: 1.7;
}

.category-bottom-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* =========================================
   BUTTONS
========================================= */

.btn-primary {
  background: #fff;
  color: #f58220;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
}

.btn-primary:hover {
  background: #111827;
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, .2);
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-layout {
    grid-template-columns: 1fr 280px;
  }

}

@media(max-width:991px) {

  .category-hero-split {
    grid-template-columns: 1fr;
  }

  .category-layout {
    grid-template-columns: 1fr;
  }

  .category-sidebar {
    position: relative;
    top: auto;
  }

}

@media(max-width:600px) {

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-hero-split__title {
    font-size: 30px;
  }

  .category-bottom-cta__actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

}

/* =========================
   Search Page
========================= */
.search-page {
  background: #f5f7fb;
  padding-bottom: 60px;
}

.search-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
  color: #fff;
  padding: 42px 0 36px;
  position: relative;
  overflow: hidden;
}

.search-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 25%);
  pointer-events: none;
}

.search-hero .container {
  position: relative;
  z-index: 2;
}

.search-hero__breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.search-hero__breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.search-hero__breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.7;
}

.search-hero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.search-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f59e0b;
  margin-bottom: 10px;
}

.search-hero__title {
  font-size: 36px;
  line-height: 1.25;
  margin: 0 0 14px;
  font-weight: 800;
  color: #fff;
}

.search-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 760px;
}

.search-hero__form-wrap {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.search-hero__form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.search-hero__input {
  flex: 1;
  height: 52px;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
}

.search-hero__button {
  height: 52px;
  border: 0;
  border-radius: 12px;
  padding: 0 22px;
  background: #f97316;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.search-hero__button:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

.search-main {
  margin-top: 32px;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.search-content {
  min-width: 0;
}

.search-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 16px;
}

.search-section-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.search-count {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: #374151;
}

.search-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.search-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.10);
}

.search-card__thumb {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.search-card__thumb a,
.search-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

.search-card__thumb img {
  object-fit: cover;
  transition: transform 0.4s ease;
}

.search-card:hover .search-card__thumb img {
  transform: scale(1.05);
}

.search-card__content {
  padding: 22px 22px 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 12px;
  color: #6b7280;
}

.search-card__category {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
}

.search-card__title {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 800;
}

.search-card__title a {
  color: #111827;
  text-decoration: none;
}

.search-card__title a:hover {
  color: #f97316;
}

.search-card__excerpt {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 16px;
}

.search-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f97316;
  font-weight: 700;
  text-decoration: none;
}

.search-card__readmore:hover {
  color: #ea580c;
}

.search-pagination {
  margin-top: 28px;
  text-align: center;
}

.search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  margin: 0 4px;
  border-radius: 10px;
  background: #fff;
  color: #374151;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.search-pagination .page-numbers.current,
.search-pagination .page-numbers:hover {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

.search-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.widget-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 16px;
  color: #111827;
  position: relative;
  padding-left: 14px;
}

.widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: #f97316;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
}

.sidebar-widget ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sidebar-widget ul li a {
  text-decoration: none;
  color: #374151;
  line-height: 1.6;
}

.sidebar-widget ul li a:hover {
  color: #f97316;
}

.sidebar-search-form {
  display: flex;
  gap: 10px;
}

.sidebar-search-form input[type="search"] {
  flex: 1;
  height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0 14px;
  outline: none;
}

.sidebar-search-form button {
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: #f97316;
  color: #fff;
  font-weight: 700;
  padding: 0 16px;
  cursor: pointer;
}

.search-empty {
  background: #fff;
  border-radius: 20px;
  padding: 42px 28px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.search-empty__icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.search-empty h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #111827;
}

.search-empty p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 22px;
}

.search-empty__form {
  max-width: 620px;
  margin: 0 auto 28px;
  display: flex;
  gap: 12px;
}

.search-empty__form input[type="search"] {
  flex: 1;
  height: 50px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 0 16px;
  outline: none;
}

.search-empty__form button {
  height: 50px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  background: #f97316;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.search-empty__recent {
  margin-top: 10px;
  text-align: left;
}

.search-empty__recent h3 {
  font-size: 22px;
  margin-bottom: 18px;
  color: #111827;
  text-align: center;
}

.search-empty__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.search-recent-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

.search-recent-card__thumb,
.search-recent-card__thumb img {
  display: block;
  width: 100%;
}

.search-recent-card__thumb img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.search-recent-card__content {
  padding: 14px;
}

.search-recent-card__content h4 {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 8px;
}

.search-recent-card__content h4 a {
  color: #111827;
  text-decoration: none;
}

.search-recent-card__content h4 a:hover {
  color: #f97316;
}

.search-recent-card__content span {
  font-size: 13px;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 1199px) {
  .search-layout {
    grid-template-columns: 1fr;
  }

  .search-sidebar {
    order: 2;
  }

  .search-content {
    order: 1;
  }
}

@media (max-width: 991px) {
  .search-hero__inner {
    grid-template-columns: 1fr;
  }

  .search-card {
    grid-template-columns: 1fr;
  }

  .search-card__content {
    padding: 18px;
  }

  .search-card__thumb {
    min-height: 240px;
  }

  .search-empty__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .search-hero {
    padding: 30px 0 26px;
  }

  .search-hero__title {
    font-size: 28px;
  }

  .search-hero__desc {
    font-size: 15px;
  }

  .search-hero__form,
  .search-empty__form,
  .sidebar-search-form {
    flex-direction: column;
  }

  .search-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-card__title {
    font-size: 20px;
  }

  .search-empty {
    padding: 30px 18px;
  }

  .search-empty__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Global Search Form
========================= */
.site-search-form {
  width: 100%;
}

.site-search-form__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: #fff;
  border: 1px solid #dbe2ea;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
}

.site-search-form__inner:focus-within {
  border-color: #f97316;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.18);
}

.site-search-form__input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 14px;
  font-size: 15px;
  color: #111827;
}

.site-search-form__input::placeholder {
  color: #9ca3af;
}

.site-search-form__button {
  height: 46px;
  min-width: 46px;
  border: 0;
  border-radius: 10px;
  background: #f97316;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.site-search-form__button:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

.site-search-form__button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Compact mode khi đặt trong sidebar nhỏ */
.sidebar .site-search-form__button-text,
.widget .site-search-form__button-text {
  display: none;
}

.sidebar .site-search-form__button,
.widget .site-search-form__button {
  width: 46px;
  padding: 0;
}

/* Dark section support */
.dark-section .site-search-form__inner,
.search-hero .site-search-form__inner {
  background: rgba(255, 255, 255, 0.96);
}

/* Mobile */
@media (max-width: 767px) {
  .site-search-form__inner {
    gap: 8px;
    padding: 5px;
    border-radius: 12px;
  }

  .site-search-form__input {
    height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .site-search-form__button {
    height: 44px;
    padding: 0 14px;
  }

  .site-search-form__button-text {
    display: none;
  }

  .site-search-form__button {
    width: 44px;
    padding: 0;
  }
}

/* =========================
   Default Page Template
========================= */
.page-template-default-custom {
  background: #f5f7fb;
  padding-bottom: 60px;
}

/* Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #348fe3 0%, #314f9d 55%, #1a6eab 100%);
  color: #fff;
  padding: 44px 0 38px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.10), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 26%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero__breadcrumb {
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero__breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.page-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero__breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.75;
}

.page-hero__inner {
  max-width: 900px;
}

.page-hero__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f59e0b;
}

.page-hero__title {
  margin: 0;
  font-size: 40px;
  line-height: 1.22;
  font-weight: 800;
  color: #fff;
}

.page-hero__desc {
  margin-top: 14px;
  max-width: 780px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.page-hero__desc p:last-child {
  margin-bottom: 0;
}

/* Main */
.page-main {
  margin-top: 34px;
}

.page-layout {
  display: block;
}

.page-article {
  min-width: 0;
}

/* Featured image */
.page-featured-image {
  margin-bottom: 24px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.page-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Content card */
.page-content-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.page-content {
  padding: 42px 42px;
  color: #1f2937;
  font-size: 17px;
  line-height: 1.9;
}

/* Typography */
.page-content>*:first-child {
  margin-top: 0;
}

.page-content>*:last-child {
  margin-bottom: 0;
}

.page-content p {
  margin: 0 0 1.2em;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  color: #111827;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 1.6em;
  margin-bottom: 0.7em;
}

.page-content h1 {
  font-size: 34px;
}

.page-content h2 {
  font-size: 30px;
}

.page-content h3 {
  font-size: 24px;
}

.page-content h4 {
  font-size: 20px;
}

.page-content h5 {
  font-size: 18px;
}

.page-content h6 {
  font-size: 16px;
}

.page-content a {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
}

.page-content a:hover {
  color: #ea580c;
  text-decoration: underline;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1.2em 1.3em;
  padding: 0;
}

.page-content ul li,
.page-content ol li {
  margin-bottom: 0.55em;
}

.page-content blockquote {
  margin: 1.8em 0;
  padding: 20px 22px;
  border-left: 4px solid #f97316;
  background: #fff7ed;
  border-radius: 0 16px 16px 0;
  color: #374151;
  font-style: italic;
}

.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.page-content figure {
  margin: 1.6em 0;
}

.page-content figure img {
  display: block;
}

.page-content figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  overflow: hidden;
  border-radius: 16px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #e5e7eb;
}

.page-content table th,
.page-content table td {
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

.page-content table th {
  background: #f8fafc;
  color: #111827;
  font-weight: 700;
}

.page-content hr {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 2em 0;
}

.page-content iframe,
.page-content embed,
.page-content object,
.page-content video {
  max-width: 100%;
  border-radius: 16px;
}

.page-content .wp-block-embed,
.page-content .wp-block-image,
.page-content .wp-block-gallery {
  margin: 1.6em 0;
}

/* Pagination for paginated pages */
.page-links {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.page-links__label {
  font-weight: 700;
  color: #111827;
}

.page-links .page-number,
.page-links>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
}

.page-links>span .page-number,
.page-links>span.post-page-numbers {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

/* Section heading */
.page-section-head {
  margin-bottom: 20px;
}

.page-section-head__label {
  display: inline-block;
  margin-bottom: 8px;
  color: #f97316;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-section-head__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.3;
  color: #111827;
  font-weight: 800;
}

/* Child pages */
.page-children {
  margin-top: 34px;
}

.page-children__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.page-child-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: all 0.25s ease;
  height: 100%;
}

.page-child-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
}

.page-child-card__body {
  padding: 24px;
}

.page-child-card__title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
}

.page-child-card__title a {
  color: #111827;
  text-decoration: none;
}

.page-child-card__title a:hover {
  color: #f97316;
}

.page-child-card__excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 14px;
}

.page-child-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f97316;
  font-weight: 700;
  text-decoration: none;
}

.page-child-card__link:hover {
  color: #ea580c;
}

/* CTA */
.page-cta {
  margin-top: 34px;
}

.page-cta__inner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #348fe3 0%, #314f9d 55%, #1a6eab 100%);
  color: #fff;
  border-radius: 24px;
  padding: 34px 34px;
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.22);
}

.page-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 25%);
  pointer-events: none;
}

.page-cta__inner>* {
  position: relative;
  z-index: 2;
}

.page-cta__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
}

.page-cta__title {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.28;
  color: #fff;
  font-weight: 800;
}

.page-cta__desc {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.8;
}

.page-cta__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
}

.page-cta__button--primary {
  background: #fff;
  color: #ea580c;
}

.page-cta__button--primary:hover {
  background: #fff7ed;
  color: #c2410c;
  transform: translateY(-1px);
}

.page-cta__button--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.page-cta__button--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1199px) {
  .page-content {
    padding: 34px 34px;
  }

  .page-children__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .page-hero {
    padding: 34px 0 30px;
  }

  .page-hero__title {
    font-size: 32px;
  }

  .page-section-head__title,
  .page-cta__title {
    font-size: 28px;
  }

  .page-content {
    font-size: 16px;
    line-height: 1.85;
  }

  .page-content h1 {
    font-size: 30px;
  }

  .page-content h2 {
    font-size: 26px;
  }

  .page-content h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .page-main {
    margin-top: 24px;
  }

  .page-hero__title {
    font-size: 28px;
  }

  .page-hero__desc {
    font-size: 15px;
  }

  .page-featured-image {
    border-radius: 18px;
  }

  .page-content-card {
    border-radius: 20px;
  }

  .page-content {
    padding: 24px 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .page-content h1 {
    font-size: 28px;
  }

  .page-content h2 {
    font-size: 24px;
  }

  .page-content h3 {
    font-size: 21px;
  }

  .page-content h4 {
    font-size: 18px;
  }

  .page-children__grid {
    grid-template-columns: 1fr;
  }

  .page-child-card__body {
    padding: 20px;
  }

  .page-cta__inner {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .page-cta__title {
    font-size: 24px;
  }

  .page-cta__desc {
    font-size: 15px;
  }

  .page-cta__actions {
    flex-direction: column;
  }

  .page-cta__button {
    width: 100%;
  }
}

/* =========================
   Full Width Landing Page
========================= */
.landing-page-template--fullwidth {
  background: #ffffff;
  padding: 0;
}

.landing-page-template--fullwidth .container,
.landing-page-template--fullwidth .container-width,
.landing-page-template--fullwidth .row {
  max-width: 100%;
}

.landing-page-article {
  width: 100%;
  margin: 0;
  padding: 0;
}

.landing-page-featured-image {
  width: 100%;
  line-height: 0;
}

.landing-page-featured-image img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-page-content-wrap {
  width: 100%;
}

.landing-page-content {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #1f2937;
  font-size: 16px;
  line-height: 1.8;
}

/* Reset margin top/bottom cho section đầu/cuối */
.landing-page-content>*:first-child {
  margin-top: 0;
}

.landing-page-content>*:last-child {
  margin-bottom: 0;
}

/* Typography cơ bản khi page có text thường */
.landing-page-content h1,
.landing-page-content h2,
.landing-page-content h3,
.landing-page-content h4,
.landing-page-content h5,
.landing-page-content h6 {
  color: #111827;
  font-weight: 800;
  line-height: 1.3;
}

.landing-page-content p {
  margin-bottom: 1.2em;
}

.landing-page-content a {
  color: #f97316;
  text-decoration: none;
}

.landing-page-content a:hover {
  color: #ea580c;
  text-decoration: underline;
}

.landing-page-content img {
  max-width: 100%;
  height: auto;
}

.landing-page-content iframe,
.landing-page-content video,
.landing-page-content embed,
.landing-page-content object {
  max-width: 100%;
}

/* Gutenberg full-width support */
.landing-page-template--fullwidth .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.landing-page-template--fullwidth .alignwide {
  width: min(1200px, calc(100% - 32px));
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Page links */
.landing-page-template--fullwidth .page-links {
  margin: 30px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
}

.landing-page-template--fullwidth .page-links__label {
  font-weight: 700;
  color: #111827;
}

.landing-page-template--fullwidth .page-number,
.landing-page-template--fullwidth .page-links>a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
}

.landing-page-template--fullwidth .page-links>span .page-number,
.landing-page-template--fullwidth .page-links>span.post-page-numbers {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

/* Optional helper class for inner sections */
.landing-section {
  width: min(1200px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.landing-section--narrow {
  width: min(900px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 767px) {
  .landing-page-content {
    font-size: 15px;
    line-height: 1.75;
  }

  .landing-page-template--fullwidth .alignwide,
  .landing-section {
    width: calc(100% - 24px);
  }

  .landing-section--narrow {
    width: calc(100% - 24px);
  }

  .landing-page-template--fullwidth .page-links {
    padding: 0 12px;
  }
}

#main-menu.mobile-sidebar {
  display: none !important;
}

span.gt-lang-code {
  font-size: 14px !important;
}

.gt-current-lang img {
  width: 25px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 5px !important;
}