Header overlay
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent; /* nền trong suốt */
  padding: 15px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 55px;
  width: auto;
}

.logo a {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}

/* Menu */
.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
}

.main-nav .nav-list li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.main-nav .nav-list li a:hover {
  color: #00c4d6;
}

/* Hotline */
.hotline a {
  background: #00c4d6;
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,196,214,0.3);
  transition: all 0.3s ease;
}

.hotline a:hover {
  background: #009bb0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,155,176,0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .header-container {
    flex-wrap: wrap;
  }

  .main-nav {
    width: 100%;
    margin-top: 15px;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 15px;
    background: rgba(0,0,0,0.85);
    padding: 15px;
    border-radius: 8px;
  }

  .hotline {
    margin-top: 12px;
    width: 100%;
    text-align: right;
  }
}



.logo img {
  height: 60px;
 width: auto;;
}

/* .logo img:hover {
  transform: scale(1.1);
} */

/* Menu */
.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav .nav-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.main-nav .nav-list li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: #ff9800;
  transition: width 0.3s ease-in-out;
}

.main-nav .nav-list li a:hover {
  color: #ff9800;
}

.main-nav .nav-list li a:hover::after {
  width: 100%;
}





/* ===== Header ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: transparent;
  padding: 15px 0;
}

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

.logo img {
  max-height: 60px;
}

.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav .nav-list li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav .nav-list li a:hover {
  color: #f39c12;
}

.hotline a {
  background: #00bcd4;
  padding: 8px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.footer {
  background: #27384b;
  color: #fff;
  padding: 50px 0 35px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.1px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1600px;
  margin: 0 auto;
  gap: 16px;
}
.footer-column {
  flex: 1;
  min-width: 260px;
}
.footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: 1px;
}
.footer-info, .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-info li,
.footer-links li {
  margin-bottom: 16px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.footer-info li i,
.footer-links li i {
  margin-right: 10px;
  font-size: 1.3em;
  color: #51aaff;
  transition: color 0.2s;
}
.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.22rem;
}
.footer-links li a:hover {
  color: #51aaff;
  text-decoration: underline;
}
.footer-social {
  margin-top: 8px;
}
.footer-social a {
  display: inline-block;
  margin-right: 14px;
  color: #51aaff;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff;
}
@media (max-width: 1200px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .footer-column {
    min-width: unset;
    margin-bottom: 0px;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .tour-container {flex-direction: column; gap: 14px;}
  .tour-right {padding-left: 0;}
  .tour-title {font-size: 32px;}
  .tour-features li, .tour-desc {font-size: 16px;}
}
@media (max-width: 600px) {
  .tour-img {max-width: 220px;}
  .tour-title {font-size: 24px;}
}

.home-tour-highlight {
  position: relative;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-tour-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.home-tour-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-tour-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.55);
  z-index: 2;
}

.home-tour-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
}

.home-tour-content h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.home-tour-content p {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 28px;
}

.home-tour-btn {
  background: #ff8000;
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.home-tour-btn:hover {
  background: #e06900;
}

.news-featured-section {
  padding: 48px 0 32px 0;
  background: #fff;
}
.news-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 28px;
}
.news-featured-subtitle {
  color: #ff8000;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.news-featured-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  color: #111;
  font-family: 'Montserrat',sans-serif;
}
.news-featured-more-btn {
  background: #ff8000;
  color: #fff;
  padding: 1rem 2.3rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.18rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.news-featured-more-btn:hover {
  background: #e06900;
}
.news-featured-list {
  display: flex;
  gap: 36px;
  max-width: 1200px;
  margin: auto;
}
.news-featured-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(60,60,60,0.09);
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 390px;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.news-featured-card:hover {
  box-shadow: 0 8px 36px rgba(60,60,60,0.17);
}
.news-featured-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
}
.news-featured-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 1.13rem;
  background: rgba(31, 31, 31, 0.79);
  padding: 18px 20px 14px 20px;
  border-radius: 0 0 16px 16px;
  box-sizing: border-box;
  line-height: 1.3;
  min-height: 56px;
  display: flex;
  align-items: flex-end;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .news-featured-list { flex-direction: column; gap: 24px; }
  .news-featured-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

.welcome-section {
  background: #faede4;
  padding: 54px 0 56px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome-inner {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 44px;
  position: relative;
  justify-content: flex-start;
}
.welcome-img img {
  max-width: 170px;
  width: 100%;
  object-fit: contain;
  display: block;
}

.welcome-content {
  flex: 1;
  padding-left: 48px;
}

.welcome-content h3 {
  color: #444;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.01em;
}

.welcome-content p {
  color: #6b7280;
  font-size: 1.18rem;
  margin-bottom: 0;
  font-weight: 400;
}

.welcome-btn {
  min-width: 220px;
  text-align: right;
}

.welcome-register-btn {
  background: #ff8000;
  color: #fff;
  padding: 1.05rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.17rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(255,128,0,0.13);
  cursor: pointer;
  margin-top: 6px;
  border: none;
}

.welcome-register-btn:hover {
  background: #e06900;
  box-shadow: 0 4px 20px rgba(255,128,0,0.18);
}

/* Responsive */
@media (max-width: 950px) {
  .welcome-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .welcome-content { padding-left: 0; }
  .welcome-btn { text-align: center; margin-top: 16px; }
}
.n2_clear {
    margin-top: -25px;
}

/* css của trang giới thiệu */
.about-wrap {
  max-width: 1200px;
  margin: 32px auto 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(60,90,120,0.08);
  overflow: hidden;
  padding-bottom: 48px;
  display: flex;
  gap: 0;
}
.about-sidebar {
  width: 260px;
  min-width: 210px;
  padding: 32px 22px 0 26px;
  background: #fbfcff;
  border-right: 1px solid #eaeaea;
}
.sidebar-contact {
  background: #f7fbff;
  border-radius: 10px;
  padding: 18px 12px 18px 12px;
  margin-bottom: 28px;
  box-shadow: 0 3px 12px rgba(40,170,255,0.07);
}
.sidebar-contact-label {
  font-weight: 600;
  color: #0097a7;
  margin-bottom: 8px;
  font-size: 1.07rem;
}
.sidebar-contact-phone {
  margin-bottom: 8px;
}
.phone-box {
  background: #fff;
  border: 2px solid #ffa726;
  border-radius: 8px;
  padding: 6px 0 4px 0;
  text-align: center;
  margin-bottom: 4px;
  font-weight: 700;
}
.phone-number {
  font-size: 1.15rem;
  color: #0097a7;
}
.sidebar-contact-note {
  font-size: 0.97rem;
  color: #444;
  margin-bottom: 8px;
  margin-top: 2px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form input {
  padding: 8px 10px;
  border-radius: 7px;
  border: 1px solid #eaeaea;
  font-size: 1rem;
}
.contact-form button {
  background: #ffa726;
  color: #fff;
  padding: 10px 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #e69817;
}
.sidebar-title {
  font-weight: 700;
  color: #0097a7;
  margin-bottom: 8px;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
}
.sidebar-tour-list {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
}
.sidebar-tour-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #222;
}
.sidebar-tour-list img {
  width: 44px;
  height: 34px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(70,110,150,0.08);
}
.tour-price {
  font-weight: 700;
  color: #0097a7;
  margin-left: auto;
  font-size: 0.98rem;
}
.sidebar-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-news-list li {
  margin-bottom: 7px;
}
.sidebar-news-list li a {
  color: #222;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.sidebar-news-list li a:hover {
  color: #0097a7;
  text-decoration: underline;
}
.about-main {
  flex: 1;
  max-width: 100%;
  padding: 36px 38px 0 38px;
}
.about-team-img {
  width: 100%;
  max-width: 680px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(60,90,120,0.15);
  margin-bottom: 26px;
  display: block;
}
.about-main h2 {
  color: #2b2b2b;
  font-size: 1.18rem;
  font-weight: 700;
  margin: 18px 0 12px 0;
}
.about-main p {
  color: #444;
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: justify;
}
@media (max-width: 1000px) {
  .about-wrap {max-width: 100%;}
  .about-main {padding: 28px 12px 0 12px;}
  .about-sidebar {padding: 32px 8px 0 8px;}
}
@media (max-width: 700px) {
  .about-wrap {flex-direction: column;}
  .about-sidebar {width: 100%; min-width: unset; border-right: none; border-bottom: 1px solid #eaeaea;}
  .about-main {padding: 18px 4px 0 4px;}
  .about-team-img {max-width: 100%;}
}
/* css của trang liên hệ */
.contact-wrap {
  max-width: 1200px;
  margin: 36px auto 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(60,90,120,0.09);
  overflow: hidden;
  padding-bottom: 48px;
  display: flex;
  gap: 0;
}
.contact-sidebar {
  width: 260px;
  min-width: 210px;
  padding: 32px 22px 0 26px;
  background: #fbfcff;
  border-right: 1px solid #eaeaea;
}
.sidebar-contact {
  background: #f7fbff;
  border-radius: 10px;
  padding: 18px 12px 18px 12px;
  margin-bottom: 28px;
  box-shadow: 0 3px 12px rgba(40,170,255,0.07);
}
.sidebar-contact-label {
  font-weight: 600;
  color: #0097a7;
  margin-bottom: 8px;
  font-size: 1.07rem;
}
.sidebar-contact-phone {
  margin-bottom: 8px;
  text-align: center;
}
.phone-box {
  background: #fff;
  border: 2px solid #ffa726;
  border-radius: 8px;
  padding: 9px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  margin-bottom: 2px;
  position: relative;
}
.phone-number {
  font-size: 1.15rem;
  color: #0097a7;
  margin-bottom: 2px;
}
.sidebar-contact-note {
  font-size: 0.97rem;
  color: #444;
  margin-bottom: 8px;
  margin-top: 2px;
}
.contact-form-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form-mini input {
  padding: 8px 10px;
  border-radius: 7px;
  border: 1px solid #eaeaea;
  font-size: 1rem;
}
.contact-form-mini button {
  background: #ffa726;
  color: #fff;
  padding: 10px 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form-mini button:hover {
  background: #e69817;
}
.sidebar-title {
  font-weight: 700;
  color: #0097a7;
  margin-bottom: 8px;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
}
.sidebar-tour-list {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
}
.sidebar-tour-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #222;
}
.sidebar-tour-list img {
  width: 44px;
  height: 34px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(70,110,150,0.08);
}
.tour-price {
  font-weight: 700;
  color: #0097a7;
  margin-left: auto;
  font-size: 0.98rem;
}
.sidebar-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-news-list li {
  margin-bottom: 7px;
}
.sidebar-news-list li a {
  color: #222;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.18s;
}
.sidebar-news-list li a:hover {
  color: #0097a7;
  text-decoration: underline;
}
.contact-main {
  flex: 1;
  max-width: 100%;
  padding: 36px 38px 0 38px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.contact-info {
  flex: 1.2;
  font-size: 1.05rem;
  color: #222;
}
.contact-info h2 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}
.contact-info h3 {
  font-size: 1.05rem;
  margin: 14px 0 4px 0;
  font-weight: 700;
  color: #222;
}
.contact-info .info-group {
  margin-bottom: 18px;
}
.contact-info .info-group i {
  margin-right: 8px;
  color: #0097a7;
}
.contact-info .info-note {
  color: #888;
  font-size: 0.97rem;
}
.contact-info a {
  color: #0097a7;
  text-decoration: none;
  transition: color 0.18s;
}
.contact-info a:hover {
  color: #ffa726;
  text-decoration: underline;
}
.contact-form-block {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 8px;
}
.contact-form-block .form-desc {
  color: #444;
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.contact-form-block form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-block label {
  font-weight: 600;
  color: #222;
  margin-bottom: 3px;
  font-size: 0.98rem;
}
.contact-form-block input,
.contact-form-block textarea {
  width: 100%;
  padding: 7px 8px;
  border-radius: 7px;
  border: 1px solid #eaeaea;
  font-size: 1rem;
  margin-bottom: 2px;
}
.contact-form-block textarea {
  min-height: 72px;
  resize: vertical;
}
.contact-form-block button {
  width: 120px;
  background: #ffa726;
  color: #fff;
  padding: 11px 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s;
  align-self: flex-start;
}
.contact-form-block button:hover {
  background: #e69817;
}
@media (max-width: 1000px) {
  .contact-wrap {max-width: 100%;}
  .contact-main {padding: 28px 12px 0 12px;}
  .contact-sidebar {padding: 32px 8px 0 8px;}
  .contact-main {gap: 16px;}
}
@media (max-width: 700px) {
  .contact-wrap {flex-direction: column;}
  .contact-sidebar {width: 100%; min-width: unset; border-right: none; border-bottom: 1px solid #eaeaea;}
  .contact-main {padding: 18px 4px 0 4px; flex-direction: column;}
}


.service-features-row {
  display: flex;
  justify-content: space-between; /* Cân đều các item */
  align-items: center;            /* Căn giữa theo chiều dọc */
  gap: 0;                         /* Để khoảng cách đều tự động */
  padding: 100px 50px;
  max-width: 1400px;              /* Giới hạn chiều rộng, căn giữa */
  margin: 0 auto;
  min-height: 300px;
}
.service-feature-item {
  display: flex;
  align-items: center;
  flex: 1 1 0;                    /* Đảm bảo các item đều nhau */
  min-width: 0;
  justify-content: center;        /* Căn giữa icon + text trong mỗi item */
}
.feature-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-right: 18px;
}
.feature-title {
  color: #555;
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.3;
  text-align: left;
  white-space: normal;
}
@media (max-width: 900px) {
  .service-features-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  .service-feature-item {
    flex: 1 1 45%;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .service-features-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 0;
  }
  .service-feature-item {
    justify-content: flex-start;
    flex: 1 1 100%;
  }
  .feature-icon {
    margin-right: 14px;
    width: 44px;
    height: 44px;
  }
  .feature-title {
    font-size: 1rem;
  }
}



/* ===== TOUR ARTICLE ===== */
/* Vùng bao bọc */
.single-post-highlight {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #232323;
}

/* Bố cục 2 cột */
.single-post {
  display: flex;
  align-items: center;        /* Căn giữa theo chiều dọc */
  justify-content: space-between;
  gap: 54px;
}

/* Khối ảnh */
.single-post .post-thumbnail {
  flex: 0 0 41%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-post img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(60,80,120,0.09);
}

/* Khối chữ */
.single-post .post-content-wrapper {
  flex: 0 0 59%;
  display: flex;
  flex-direction: column;
  justify-content: center;    /* Căn giữa chữ theo chiều dọc */
  min-width: 260px;
  height: 100%;
  padding-left: 10px;
}

/* Subtitle */
.single-post .subtitle {
  font-size: 1.13rem;
  color: #ff8000;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

/* Tiêu đề ngang, nổi bật, gạch chân */
.single-post h2 {
  font-size: 2.3rem;
  margin-bottom: 18px;
  color: #ff5709;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  position: relative;
  text-align: left;
  display: inline-block;
}

.single-post h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  margin-top: 7px;
  background: #ff8000;
  border-radius: 2px;
}

/* Nội dung */
.single-post .post-content {
  font-size: 1.07rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 26px;
  text-align: justify;
}

.single-post .post-content p {
  margin-bottom: 12px;
}

/* Danh sách */
.single-post .post-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-post .post-content li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
  font-size: 1.06rem;
  line-height: 1.7;
}

.single-post .post-content li::before {
  content: "✔";
  color: #16a34a;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Nút gọi */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff8000;
  color: #fff;
  padding: 14px 28px;
  font-size: 1.09rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255,128,0,0.15);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.call-btn:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.22);
}

.call-btn i {
  font-size: 1.22em;
}

/* Responsive */
@media (max-width: 900px) {
  .single-post {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }
  .single-post .post-content-wrapper {
    text-align: left;
    padding-left: 0;
    width: 100%;
  }
  .single-post .post-thumbnail {
    margin-bottom: 12px;
  }
  .single-post img {
    max-width: 220px;
  }
  .single-post h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .single-post-highlight {
    padding: 10px;
    border-radius: 7px;
  }
  .single-post img {
    max-width: 140px;
  }
  .single-post h2 {
    font-size: 1.07rem;
  }
  .single-post .post-content {
    font-size: 0.97rem;
  }
  .single-post .post-content li {
    font-size: 0.97rem;
  }
  .call-btn {
    font-size: 0.98rem;
    padding: 10px 16px;
  }
}
/* css */
.section-header {
  display: flex;
  justify-content: space-between; /* chữ bên trái, nút bên phải */
  align-items: center;            /* căn giữa dọc để cân bằng hơn */
  margin: 50px 0 40px;
  border-bottom: 2px solid #f1f1f1; /* gạch chân nhẹ cho sang */
  padding-bottom: 10px;
}

.title-left {
  display: flex;
  flex-direction: column;
  gap: 4px; /* giữ khoảng cách nhỏ giữa subtitle và title */
}

.title-left .subtitle {
  color: #ff7a00;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.title-left .main-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
  color: #222;
}

.btn-more {
  background: #ff7a00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

.btn-more:hover {
  background: #e86b00;
  transform: translateY(-2px); /* hover nổi lên nhẹ */
}

/* Responsive cho mobile */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .title-left .main-title {
    font-size: 26px;
  }

  .btn-more {
    align-self: flex-start;
  }
}


/* GRID NEWS */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-item {
  position: relative;
  height: 220px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

.news-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
}

.news-overlay {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
}
/* css phần cuối */
/* Khối bao ngoài */
.tourist-info-section {
  background: #fff6f0;        /* nền cam nhạt */
  padding: 40px 30px;
  border-radius: 14px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* Container 3 cột: ảnh - nội dung - nút */
.tourist-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Cột ảnh */
.tourist-info-image {
  flex: 0 0 220px;            /* giữ kích thước ảnh ổn định */
}

.tourist-info-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Cột nội dung */
.tourist-info-content {
  flex: 1;
}

.tourist-info-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.tourist-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Cột nút */
.tourist-info-button {
  flex-shrink: 0;
}

.tourist-info-button .btn-register {
  display: inline-block;
  background: #ff7300;
  color: #fff;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.tourist-info-button .btn-register:hover {
  background: #e56200;
  transform: translateY(-2px);
}

/* Responsive cho mobile */
@media (max-width: 768px) {
  .tourist-info-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  
  .tourist-info-image {
    max-width: 180px;
  }

  .tourist-info-button {
    margin-top: 10px;
  }
}

.gioi-thieu-page {
  padding: 0; /* bỏ padding để ảnh ôm sát */
  background: #f5f5f5;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.gioi-thieu-page .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Ảnh banner trên cùng */
.gioi-thieu-page .featured-image-top {
  width: 100%;
  height: 450px; /* chiều cao banner */
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.gioi-thieu-page .featured-image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* ảnh căng đều khung */
  object-position: center; /* lấy trung tâm ảnh */
  display: block;
  border-radius: 0;        /* không bo góc để full */
}

/* Khung nội dung */
.gioi-thieu-page article {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Tiêu đề */
.gioi-thieu-page .page-title {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.gioi-thieu-page .page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff7a00;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Nội dung */
.gioi-thieu-page .entry-content {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.gioi-thieu-page .entry-content h2 {
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #ff7a00;
}

.gioi-thieu-page .entry-content p {
  margin-bottom: 18px;
}


/* Bọc slider tin tiêu điểm */
.tin-tieu-diem-slider {
  width: 100%;
  padding: 40px 0;
}

.tin-tieu-diem-slider .swiper-wrapper {
  display: flex;
  justify-content: space-between; /* chia đều card ra 2 bên */
}

.tin-tieu-diem-slider .swiper-slide {
  flex: 1; /* chia đều độ rộng */
  max-width: 25%; /* đúng 4 cột */
  padding: 0 12px; /* khoảng cách giữa các ảnh */
  box-sizing: border-box;
}

.slider-post-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-post-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.slider-post-item .post-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.slider-post-item .post-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
}


/* css trang du lịch ngoài nước */
/* Container chính */
.du-lich-ngoai-nuoc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

/* Tiêu đề trang */
.du-lich-ngoai-nuoc .page-title,
.site-content h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #333;
}

/* Nội dung mô tả */
.du-lich-ngoai-nuoc .page-content {
  text-align: justify;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 50px;
  color: #555;
}

/* Vùng custom section chứa ảnh + text */
.custom-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Item bài viết + ACF ảnh + text */
.tour-item {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 50px;
}

.tour-item.flex-row-reverse {
  flex-direction: row-reverse;
}

/* Hình ảnh */
.tour-item img,
.tour-thumb img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.tour-item img:hover,
.tour-thumb img:hover {
  transform: scale(1.03);
}

/* Nội dung bài */
.tour-content {
  flex: 1;
}

.tour-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.tour-title a {
  text-decoration: none;
  color: #0073aa;
  transition: color 0.3s ease;
}

.tour-title a:hover {
  color: #005580;
}

.tour-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.tour-full-content {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Text ACF đi kèm ảnh */
.custom-section .tour-item p {
  flex: 1;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin: 0;
  padding: 15px 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Phân trang */
.pagination {
  margin-top: 40px;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* Responsive */
@media (max-width: 768px) {
  .tour-item {
    flex-direction: column !important;
    text-align: center;
  }

  .tour-item img,
  .tour-thumb img {
    max-width: 100%;
  }
}

/* Trang Du Lịch Trong Nước */
/* Khung chính */
.du-lich-trong-nuoc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  background: #fdfdfd;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* Tiêu đề trang */
.du-lich-trong-nuoc .page-title {
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.du-lich-trong-nuoc .page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Nội dung */
.du-lich-trong-nuoc .page-content {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  max-width: 900px;   /* giới hạn độ rộng chữ */
  margin: 0 auto;
}

/* Định dạng đoạn văn */
.du-lich-trong-nuoc .page-content p {
  margin-bottom: 20px;
}

/* Ảnh đơn lẻ trong content (căn giữa) */
.du-lich-trong-nuoc .page-content img {
  display: block;
  margin: 25px auto;
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.du-lich-trong-nuoc .page-content img:hover {
  transform: scale(1.05);
}

/* Heading trong content */
.du-lich-trong-nuoc .page-content h2,
.du-lich-trong-nuoc .page-content h3 {
  color: #e67e22;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: center;
}

/* ===================== */
/* Bố cục 2 cột ảnh + chữ */
/* ===================== */
.du-lich-trong-nuoc .content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 50px 0;
}

.du-lich-trong-nuoc .content-block img {
  flex: 1;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.du-lich-trong-nuoc .content-block img:hover {
  transform: scale(1.05);
}

.du-lich-trong-nuoc .content-block .text {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .du-lich-trong-nuoc {
    padding: 30px 15px;
  }

  .du-lich-trong-nuoc .page-title {
    font-size: 26px;
  }

  .du-lich-trong-nuoc .page-content {
    font-size: 16px;
    max-width: 100%;
  }

  .du-lich-trong-nuoc .page-content img {
    max-width: 100%;
  }

  .du-lich-trong-nuoc .content-block {
    flex-direction: column;
    gap: 20px;
  }

  .du-lich-trong-nuoc .content-block img,
  .du-lich-trong-nuoc .content-block .text {
    flex: unset;
    width: 100%;
  }
}
/* ================================
   HEADER MOBILE MENU - GỌN GÀNG
   ================================ */
@media (max-width: 768px) {
  /* Ẩn menu desktop */
  .main-nav {
    display: none;
  }

  /* Nút menu hamburger */
  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    background: #0078d7;
    padding: 8px 12px;
    border-radius: 6px;
    margin-left: auto;
  }

  /* Menu mở */
  .main-nav.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 20, 20, 0.95);
    z-index: 999;
    padding-top: 70px;
  }

  /* Danh sách menu */
  .main-nav .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  /* Item */
  .main-nav .nav-list li {
    margin: 8px 0;
  }

  /* Link */
  .main-nav .nav-list li a {
    display: block;
    padding: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  /* Hover */
  .main-nav .nav-list li a:hover {
    background: #0078d7;
    border-radius: 4px;
  }

  /* Hotline */
  .hotline {
    position: fixed;
    bottom: 70px;
    right: 5px;
    padding: 10px 16px;
    border-radius: 30px;
    z-index: 1000;
  }

  .hotline a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }
}

/* ================================
   SERVICE FEATURES - MOBILE
   ================================ */
@media (max-width: 768px) {
  .service-features-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* chia 2 cột */
    gap: 20px;
    padding: 50px;
  }

  .service-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;       /* canh giữa icon + text */
    justify-content: center;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
  }

  .service-feature-item img.feature-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 8px;
  }

  .service-feature-item .feature-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
  }
}

/* ================================
   SINGLE POST HIGHLIGHT - MOBILE
   ================================ */
@media (max-width: 768px) {
  .single-post-highlight {
    max-width: 100%;
    margin: 20px auto;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  }

  .single-post-highlight .single-post {
    display: flex;
    flex-direction: row;     /* ảnh - chữ ngang hàng */
    align-items: center;     /* chữ căn giữa theo chiều cao ảnh */
    gap: 15px;
    text-align: left;
  }

  /* Ảnh */
  .single-post-highlight .single-post img {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 10px;
    object-fit: cover;
    display: block;
  }

  /* Khối chữ */
  .single-post-highlight .post-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* căn giữa dọc */
  }

  .single-post-highlight .post-info h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #222;
  }

  .single-post-highlight .post-info .post-content {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
  }

  .single-post-highlight .post-info .post-content p {
    margin-bottom: 8px;
  }
}

/* Màn hình nhỏ hơn 480px thì ảnh xuống dưới */
@media (max-width: 480px) {
  .single-post-highlight .single-post {
    flex-direction: column;
    text-align: center;
  }

  .single-post-highlight .single-post img {
    max-width: 100%;
    margin-bottom: 12px;
  }

  .single-post-highlight .post-info {
    align-items: center;
    text-align: center;
  }
}
