@import url("page-common.css");
@import url("page-about.css");
@import url("page-training.css");
@import url("page-national.css");
@import url("page-findjob.css");
@import url("page-study-work.css");
@import url("page-students.css");
@import url("page-partner.css");
@import url("page-contact.css");

/* =================================================
   HERO SLIDER
================================================= */

.hero-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* ===== 2 COLUMN LAYOUT ===== */
.hero-slider .hero-container {
  display: flex;
  min-height: 650px;
}

/* =================================================
   LEFT SIDE (SLIDER)
================================================= */

.hero-slider .slider-wrapper {
  flex: 2.5;
  position: relative;
  height: 650px;
  overflow: hidden;
}

/* FADE SLIDE */
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

/* HERO LEFT */
.hero-slider .hero-left {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 60px;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* SLIDE BACKGROUNDS */
.hero-slider .slide1 .hero-left {
  background-image: url('../images/slider07.png');
}

.hero-slider .slide2 .hero-left {
  background-image: url('../images/slider04.png');
}

.hero-slider .slide3 .hero-left {
  background-image: url('../images/slider06.png');
}

.hero-slider .slide4 .hero-left {
  background-image: url('../images/slider03.png');
}

.hero-slider .slide5 .hero-left {
  background-image: url('../images/slider05.png');
}

.hero-slider .slide6 .hero-left {
  background-image: url('../images/slider02.png');
}

.hero-slider .slide7 .hero-left {
  background-image: url('../images/slider01.png');
}

/* DARK OVERLAY */
.hero-slider .hero-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
}

.hero-slider .hero-text {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.hero-slider .hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* =================================================
   RIGHT SIDE (SCHEDULE BOX)
================================================= */

.hero-slider .hero-right {
  flex: 1;
  background: linear-gradient(to bottom, #e9f6ef, #dff1e7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* MAIN BOX */
.hero-slider .schedule-box {
  background: #fff;
  padding: 60px 20px 45px;
  /* border-radius: 16px; */
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 120, 80, 0.08);
}

/* TOP GREEN HEADER (clip-path version) */
.hero-slider .schedule-box::before {
  content: "Tìm lịch học";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #16a34a, #0f766e);
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  line-height: 63px;
  border-radius: 10px 10px 0 0;

  clip-path: polygon(0 0,
      100% 0,
      100% 75%,
      55% 75%,
      50% 100%,
      45% 75%,
      0 75%);
}

/* SUB TEXT */
.hero-slider .schedule-box p {
  font-size: 20px;
  margin: 15px 0 35px;
  font-weight: 500;
  color: #1f2937;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.hero-slider .schedule-box p::before,
.hero-slider .schedule-box p::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: #16a34a;
  opacity: 0.4;
}

.hero-slider .schedule-box p::before {
  left: -25px;
}

.hero-slider .schedule-box p::after {
  right: -25px;
}

/* BUTTON */
.hero-slider .schedule-btn {
  display: block;
  padding: 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.hero-slider .schedule-btn.green-light {
  background: #f97316;
  border: 1px solid #f97316;
  color: #fff;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.2);
}

.hero-slider .schedule-btn.green-light:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

.hero-slider .schedule-btn.green-main {
  background: #fff;
  border: 1px solid #1e40af;
  color: #1e40af;
}

.hero-slider .schedule-btn.green-main:hover {
  background: #1e40af;
  color: #fff;
}

.hero-slider .schedule-btn::after {
  content: ">";
  position: absolute;
  right: 25px;
  font-weight: bold;
}

/* DOTS */
.hero-slider .slider-dots {
  position: absolute;
  bottom: 20px;
  left: 40px;
  z-index: 10;
}

.hero-slider .dot {
  height: 10px;
  width: 10px;
  background: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
}

.hero-slider .dot.active {
  background: #18b6a3;
}

/* =================================================
   RESPONSIVE
================================================= */

/* TABLET */
@media (max-width: 1024px) {

  .hero-slider .hero-container {
    flex-direction: column;
    min-height: auto;
  }

  .hero-slider .slider-wrapper {
    width: 100%;
    height: 420px;
    min-height: 420px;
  }

  .hero-slider .hero-left {
    padding: 40px;
  }

  .hero-slider .hero-text h1 {
    font-size: 32px;
  }

  .hero-slider .hero-right {
    width: 100%;
    padding: 70px 20px 20px 20px;
    /* margin-top: 50px; */
  }

  .hero-slider .schedule-box {
    max-width: 100%;
    padding: 50px 25px 40px;
  }

  .hero-slider .schedule-box::before {
    font-size: 24px;
    height: 70px;
    line-height: 54px;
    top: -50px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-slider .slider-wrapper {
    height: 280px;
    min-height: 280px;
  }

  .hero-slider .hero-left {
    padding: 25px;
  }

  .hero-slider .hero-text h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .hero-slider .hero-right {
    padding: 70px 15px 25px 15px;
  }

  .hero-slider .schedule-box {
    padding: 40px 20px;
  }

  .hero-slider .schedule-box::before {
    font-size: 24px;
    height: 75px;
    line-height: 60px;
    top: -40px;
  }

  .hero-slider .schedule-btn {
    font-size: 14px;
    padding: 14px;
  }

  .hero-slider .slider-dots {
    left: 20px;
    bottom: 10px;
  }
}

/* =============================
   BODY
============================= */

/* =============================
   STATS SECTION – MODERN CLEAN
============================= */

.stats-section {
  background: transparent;
  margin-top: -90px;
  /* đè nhẹ lên hero */
  padding: 0 20px 30px;
  position: relative;
  z-index: 10;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* CARD STYLE */
.stat-item {
  flex: 1;
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 80, 40, 0.12);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 120, 60, 0.08);
  transition: all 0.3s ease;
}

/* HOVER */
.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* NUMBER */
.stat-item h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1e7f4f;
  /* brand */
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* LABEL */
.stat-item p {
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
}

.stat-item {
  border: 1px solid #eef1ef;
}


.stats-update {
  text-align: center;
  margin-top: 35px;
  font-size: 15px;
  color: #999;
  letter-spacing: 1px;
}

/* =========================================
   STATS RESPONSIVE – 2 CỘT MOBILE
========================================= */

/* ===== ≤ 1024px ===== */
@media (max-width: 1024px) {

  .stats-section {
    margin-top: 0;
    padding-top: 20px;
  }

  .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    padding: 30px 20px;
  }

  .stat-item h2 {
    font-size: 34px;
  }

  .stats-update {
    margin-top: 20px;
  }
}


/* ===== ≤ 768px ===== */
@media (max-width: 768px) {

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-item {
    padding: 25px 15px;
    border-radius: 14px;
  }

  .stat-item h2 {
    font-size: 28px;
  }

  .stat-item p {
    font-size: 14px;
  }
}


/* ===== ≤ 550px ===== */
@media (max-width: 550px) {

  .stats-section {
    padding: 15px 15px 30px;
  }

  .stats-container {
    gap: 12px;
  }

  .stat-item {
    padding: 20px 12px;
  }

  .stat-item h2 {
    font-size: 24px;
  }

  .stat-item p {
    font-size: 13px;
  }
}

/* =========================================
   COURSES SECTION
========================================= */

.all_bg01 {
  background:
    linear-gradient(180deg,
      rgba(238, 247, 241, 0.5) 0%,
      rgba(228, 242, 234, 0.9) 100%),
    url('../images/features-back05.png') no-repeat center bottom;

  background-size: cover;
}

.main-courses {}

.main-courses .container {
  max-width: 90%;
}

@media (max-width: 1400px) {
  .main-courses .container {
    max-width: none;
  }
}

.main-courses .course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.main-courses .course-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
  position: relative;
}

.main-courses .course-card:hover {
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

/* Header bar */

.main-courses .course-card>h3 {
  background: linear-gradient(135deg, #4f8f6e, #66bb6a);
  color: #fff;
  padding: 18px 24px;
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  position: relative;
}

/* Background image */

.main-courses .bg1,
.main-courses .bg2 {
  background-size: cover;
  background-position: center;
  position: relative;
}

.main-courses .bg1 {
  background-image: url('../images/student01.png');
}

.main-courses .bg2 {
  background-image: url('../images/online02.png');
}

.main-courses .bg1::before,
.main-courses .bg2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

/* Overlay content */

.course-overlay {
  position: relative;
  z-index: 2;
  padding: 40px;
  min-height: 380px;
  color: #fff;
}

.course-overlay ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.course-overlay ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 20px;
}

.course-overlay ul li i {
  background: #2ecc71;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  box-shadow: 0 0 10px rgba(102, 187, 106, 0.6);
}

.main-courses .price {
  font-size: 50px;
  font-weight: 900;
  color: #fff;

  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.2),
    0 8px 25px rgba(0, 0, 0, 0.4);
}

.main-courses .price span {
  font-size: 20px;
}

.course-overlay p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
}

/* Button */

.course-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #ff7a45;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 122, 69, 0.3);
}

.course-btn:hover {
  background: #ff5a24;
  transform: translateY(-3px);
}

/* =========================================
   COURSES RESPONSIVE
========================================= */

/* ===== ≤ 1024px (vẫn 2 cột, gọn lại) ===== */
@media (max-width: 1024px) {

  .main-courses .container {
    max-width: 100%;
    padding: 0 20px;
  }

  .main-courses .course-grid {
    gap: 30px;
  }

  .main-courses .course-card>h3 {
    font-size: 24px;
    padding: 16px 20px;
  }

  .course-overlay {
    padding: 30px;
    min-height: 320px;
  }

  .main-courses .price {
    font-size: 32px;
  }

}


/* ===== ≤ 768px (chuyển 1 cột) ===== */
@media (max-width: 768px) {

  .main-courses .course-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .course-overlay {
    padding: 25px;
    min-height: auto;
  }

  .course-overlay ul li {
    font-size: 16px;
  }

  .main-courses .price {
    font-size: 28px;
  }

  .main-courses .price span {
    font-size: 16px;
  }

  .course-btn {
    padding: 10px 22px;
    font-size: 14px;
  }

}


/* ===== ≤ 550px (mobile nhỏ) ===== */
@media (max-width: 550px) {

  .main-courses .course-card>h3 {
    font-size: 20px;
    padding: 14px 16px;
  }

  .course-overlay {
    padding: 20px;
  }

  .course-overlay ul li {
    font-size: 14px;
  }

  .main-courses .price {
    font-size: 24px;
  }

}



/* =========================================
   WHY US
========================================= */

.why-us {
  padding: 50px 0 70px;

}

.why-us .section-title {
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: #666;
  font-size: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-item {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-item p{
   text-align: left;
}
.why-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2f6f4e;
  text-transform: uppercase;
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.why-item .icon {
  width: 70px;
  height: 70px;
  background: #e6f4ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

@media (max-width: 991px) {

  .main-header .container {
    padding: 0 20px;
  }

  .why-grid {
    gap: 25px;
  }

  .why-item {
    padding: 35px 20px;
  }

  .why-item .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  .why-item p{
    font-size:14px
  }

}

@media (max-width: 768px) {

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .why-item {
    padding: 20px 15px;
    border-radius: 10px;
  }

  .why-item .icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 15px;
  }

  .why-item h3 {
    font-size: 16px;
  }

  .why-us .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }
}




/* =========================================
   LOCATIONS SECTION
========================================= */
.all_bg02 {
  background:
    linear-gradient(180deg,
      rgba(238, 247, 241, 0.5) 0%,
      rgba(228, 242, 234, 0.9) 100%),
    url('../images/features-back02.png') no-repeat center top;

  background-size: cover;
}

.locations-section {
  padding: 70px 0 0 0;
}



.section-header p {
  color: #666;
  font-size: 15px;
}

.locations-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.locations-text {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.locations-text h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2f6f4e;
}

.locations-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.location-tags span {
  padding: 10px 18px;
  background: #f0f8f4;
  border-radius: 30px;
  font-size: 14px;
  color: #2f6f4e;
  font-weight: 500;
  transition: 0.3s ease;
}

.location-tags span:hover {
  background: #2f6f4e;
  color: #fff;
}

.locations-map {
  position: relative;
}

.locations-map img {
  width: 100%;
  display: block;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

/* ===== ≤ 991px (tablet ngang) ===== */
@media (max-width: 991px) {

  .locations-content {
    gap: 40px;
  }

  .locations-text {
    padding: 35px 30px;
  }

  .locations-text h3 {
    font-size: 20px;
  }

  .locations-text p {
    font-size: 14px;
  }

}


/* ===== ≤ 768px (tablet dọc / mobile) ===== */
@media (max-width: 768px) {

  .locations-content {
    grid-template-columns: 1fr;
    /* 1 cột */
    gap: 35px;
  }

  .locations-section {
    padding: 50px 0;
  }

  .locations-text {
    padding: 30px 25px;
    border-radius: 18px;
  }

  .locations-map {
    order: -1;
    max-width: 300px;
    margin: auto;
  }

  .locations-map img {
    border-radius: 18px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-header p {
    font-size: 14px;
  }

}


/* =========================
   subsidy vertical
========================= */
.subsidy-vertical {
  padding: 20px 0 0 0;
  text-align: center;
}

.subsidy-vertical .container {
  max-width: 1200px;
  margin: 0 auto;
}

.jp-title {
  font-size: 36px;
  color: #1b8f3a;
  border: 3px solid #1b8f3a;
  display: inline-block;
  padding: 15px 80px;
  border-radius: 50px;
  margin-bottom: 60px;
}

/* STEP COLUMN */

.v-step {
  background: #1b8f3a;
  color: #fff;

  width: 160px;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  padding: 15px;
}

/* step cuối màu cam */

.v-step.highlight {
  background: #ff8a00;
}

.v-step:hover {
  /* transform: translateY(-8px); */
  opacity: 0.8;
}

/* HIGHLIGHT FINAL STEP */

.v-step.highlight {
  background: #ff8a00;
}

.vertical-flow {
  display: flex;
  align-items: center;
  /* QUAN TRỌNG */
  justify-content: center;
  gap: 15px;
}

.v-line {
  width: 50px;
  height: 4px;
  background: #1b8f3a;
  align-self: center;
}

.v-arrow {
  font-size: 28px;
  color: #1b8f3a;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {

  .vertical-flow {
    flex-direction: column;
    gap: 10px;
  }

  /* Step về ngang bình thường */
  .v-step {
    writing-mode: horizontal-tb;
    text-orientation: initial;

    width: 100%;
    max-width: 320px;
    height: auto;

    padding: 18px 20px;
    border-radius: 14px;
    font-size: 16px;
    letter-spacing: 1px;
  }

  /* Line thành dọc */
  .v-line {
    width: 2px;
    height: 20px;
  }

  .v-arrow {
    transform: rotate(90deg);
    font-size: 20px;
  }

  .jp-title {
    font-size: 26px;
    padding: 10px 40px;
  }

}


/* career-upgrade */

.career-upgrade {
  padding: 50px 0 50px 0;
  text-align: center;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.65) 0%,
      rgba(240, 248, 244, 0.85) 100%),
    url('../images/features-back04.png') no-repeat right center;

  background-size: cover;
}

.career-structure {
  max-width: 850px;
  margin: auto;
  position: relative;
}

/* BOX STYLE */
.box {
  padding: 20px 25px;
  margin: 20px auto;
  border-radius: 14px;
  font-weight: 600;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* LEVEL COLORS */
.level-top {
  background: #e8f1f5;
  /* nhạt hơn */
  color: #1f4f3b;
}

.level-mid {
  background: #dce8ed;
  /* sáng hơn */
  color: #1f4f3b;
}

.level-small {
  background: #f1f6f8;
  width: 70%;
  color: #1f4f3b;
}

.level-start {
  background: #fde8da;
  width: 75%;
  color: #6b3f1e;
}

.level-highlight {
  background: linear-gradient(135deg, #6fbf3e, #5aa532);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 18px 40px rgba(90, 165, 50, 0.35);
  border-radius: 16px;
}



/* MODERN CONNECTOR */
.arrow-up {
  width: 2px;
  height: 30px;
  background: rgba(31, 79, 59, 0.25);
  margin: 0 auto;
  position: relative;
}

.arrow-up::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: -4px;
  width: 10px;
  height: 10px;
  background: #768388;
  border-radius: 50%;
}

/* BRANCHES */
.career-branches {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: flex-start;
}

.left-branch {
  width: 55%;
}

.right-branch {
  width: 40%;
}


/* =========================================
   STUDENT FEEDBACK
========================================= */
.student-feedback {
  padding: 0 0 50px 0;
  text-align: center;
}

.section-subtitle {
  color: #888;
  margin-top: 15px;
  font-size: 14px;
}

/* GRID */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
}

/* CARD */
.feedback-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  position: relative;
  text-align: left;
}

.feedback-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

/* Quote icon */
.feedback-item::before {
  content: "❝";
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 50px;
  color: #2f6f4e;
  opacity: 0.08;
}

/* Rating */
.rating {
  color: #f5b942;
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

/* Content */
.feedback-content {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

/* User */
.feedback-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: #eaf3ee;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feedback-user strong {
  font-size: 14px;
  color: #000;
  display: block;
}

.feedback-user span {
  font-size: 13px;
  color: #888;
}

/* ===== ≤ 992px ===== */
@media (max-width: 992px) {

  .feedback-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 50px;
  }

  .feedback-item {
    padding: 30px 25px;
  }

}


/* ===== ≤ 768px ===== */
@media (max-width: 768px) {

  .feedback-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
  }

  .feedback-item {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .feedback-content {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  .feedback-grid .feedback-item:last-child {
    display: none;
  }

}



/* =========================================
   TEXTBOOK SECTION
========================================= */

.textbook-section {
  padding: 50px 0 50px 0;
}

.textbook-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.textbook-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.point-item:hover {
  transform: translateY(-5px);
}

.point-number {
  background: #2f6f4e;
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
}

.point-item p {
  font-size: 15px;
  color: #444;
}

.textbook-image img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: auto;
}

/* Responsive */

@media (max-width: 992px) {
  .textbook-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}




/* =========================================
   MODERN CONTACT SECTION
========================================= */

.contact-modern-bg {
  padding: 50px 0 0;
  background:
    linear-gradient(180deg,
      rgba(238, 247, 241, 0.5) 0%,
      rgba(228, 242, 234, 0.9) 100%),
    url('../images/features-back06.png') no-repeat right bottom;

  background-size: cover;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 0 50px 0;
}

.contact-left h2 {
  font-size: 40px;
  color: #2f6f4e;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.contact-right {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  /* nhìn premium hơn */
}

.contact-box {
  display: flex;
  gap: 15px;
  padding: 15px 0 10px;
  border-bottom: 1px solid rgba(46, 125, 91, 0.15);
}

.contact-box:last-child {
  border-bottom: none;
}

/* ICON TRÒN */
.icon-wrap {
  width: 45px;
  height: 45px;
  background: #d2eae1;
  color: #2e7d5b;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* ICON NHỎ */
.small-icon {
  color: #2e7d5b;
  margin-right: 3px;
  font-size: 13px;
}

/* TEXT */
.contact-box h4 {
  font-size: 15px;
  color: #000;
  font-weight: 600;
}

.contact-box p {
  font-size: 14px;
  color: #444;
  margin: 0;
}

.phone {
  font-weight: 600;
  color: #1f4f3b;
}

@media(max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 0 20px 20px;
  }
}

.contact-map-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 480px;
}

.contact-map-full iframe {
  width: 100%;
  height: 480px;
  border: 0;
  margin: 0 !important;
}

/* =========================================
   CONTACT MOBILE ≤ 768px
========================================= */

@media (max-width: 768px) {

  /* Wrapper spacing */
  .contact-wrapper {
    gap: 40px;
    padding: 0 20px 40px;
  }

  /* Left text */
  .contact-left h2 {
    font-size: 28px;
    text-align: center;
  }

  .contact-left p {
    font-size: 14px;
  }

  /* Right box */
  .contact-right {
    padding: 10px 25px;
    border-radius: 18px;
  }

  .contact-box {
    padding: 12px 0;
    gap: 12px;
  }

  .icon-wrap {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .contact-box h4 {
    font-size: 14px;
  }

  .contact-box p {
    font-size: 13px;
  }

  /* MAP: chuyển 1 cột */
  .contact-map-full {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .contact-map-full iframe {
    height: 250px;
  }

}