/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
}



body {
  font-family: 'Poppins', sans-serif !important;
  background: #fff;
  color: #000;
}

/* CONTAINER */
.vietnam-container {
  display: flex;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

/* LEFT SECTION */
.vietnam-left {
  flex: 2;
}
.vietnam-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.vietnam-tabs {
  display: flex;
    margin-bottom: 15px;
    flex-wrap: wrap;
    position: relative;
    margin-top: -65px;
}

input::placeholder, select::placeholder, option, select {
  color: #666;
}
.vietnam-tab {
  padding: 8px 15px;
  border: none;
  background: #424344;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  color: white;
}
.vietnam-tab.active {
  background: #C9533C;
  color: #fff;
}
.vietnam-tab-content {
  padding: 20px;
  border-radius: 6px;
  line-height: 1.6;
  font-size: 16px;
}
.vietnam-tab-content h4{
  font-weight: 700;
  font-size: 18px;
}

.vietnam-tab-content ul {
  padding-left: 30px;
}

/* RIGHT SECTION */
.vietnam-right {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
}
.vietnam-form-title {
  color: #1976D2;
  margin-bottom: 15px;
  font-size: 22px;
  text-transform: capitalize;
}
.vietnam-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.vietnam-form input,
.vietnam-form select,
.vietnam-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}
.vietnam-form textarea {
  resize: none;
  height: 80px;
}
.vietnam-form button {
  background: #C9533C;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}
.vietnam-form button:hover {
  background: #c9543ce0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vietnam-container {
    flex-direction: column;
  }
}
    .departures-slider-container {
      width: 100%;
      margin: 50px auto;
    }

    .departures-title {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 20px;
      padding: 0 20px;
      color: #C9533C;
    }

    /* Slider wrapper */
    .departures-slider-wrapper {
      position: relative;
      overflow: hidden;
    }

    .departures-slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    /* Each Card */
    .departures-card {
      flex: 0 0 100%;
      box-sizing: border-box;
      padding: 15px;
    }

    .departures-card-inner {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
      display: flex;
    }

    .departures-card-inner:hover {
      transform: translateY(-5px);
    }

    .departures-image {
      width: 300px;
    height: 250px;
    object-fit: cover;
    }

    .departures-content {
      padding: 15px;
    }

    .departures-subtitle {
      font-size: 13px;
      color: #666;
      margin-bottom: 8px;
    }

    .departures-days {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .departures-details {
      font-size: 14px;
      color: #444;
      margin-bottom: 12px;
    }

    .departures-btn {
      display: inline-block;
      padding: 8px 18px;
      font-size: 14px;
      border: none;
      border-radius: 25px;
      background: #1845c6;
      color: #fff;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.3s;
    }

    .departures-btn:hover {
      background: #0d2e8c;
    }

    /* Arrows */
    .departures-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 24px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      padding: 8px 12px;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      z-index: 10;
    }

    .departures-arrow.left {
      left: 10px;
    }

    .departures-arrow.right {
      right: 10px;
    }

    /* Dots */
    .departures-dots {
      text-align: center;
      margin-top: 15px;
    }

    .departures-dot {
      display: inline-block;
      width: 30px;
    height: 4px;
      background: #ccc;
      margin: 0 4px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .departures-dot.active {
      background: #C9533C;
    }

    @media(min-width: 768px) {
      .departures-card {
        flex: 0 0 50%;
      }
    }
        .reviews-section {
      width: 95%;
      margin: 50px auto;
      text-align: center;
    }

    .reviews-section h2 {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .reviews-section p {
      font-size: 14px;
      color: #555;
      margin-bottom: 30px;
    }

    /* Slider Container */
/* ✅ Base (Desktop/Laptop) */
.reviews-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 25s linear infinite; /* slower for laptop */
}

.review-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.review-info {
  flex: 1;
}

.review-name {
  font-weight: bold;
  font-size: 14px;
}

.review-date {
  font-size: 12px;
  color: #777;
}

.google-icon {
  width: 18px;
  margin-left: 5px;
}

.review-stars {
  color: #f4c150;
  margin: 8px 0;
  font-size: 16px;
}

.review-text {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}

/* Loop Animation */
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* Duplicate Track for infinite loop */
.reviews-slider-track.duplicate {
  position: absolute;
  top: 0;
  left: 100%;
}

/* ✅ Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .reviews-slider-track {
    animation: scrollReviews 20s linear infinite; /* slightly faster */
    gap: 15px;
  }

  .review-card {
    flex: 0 0 228px;
    padding: 16px;
  }

  .review-name {
    font-size: 13px;
  }

  .review-text {
    font-size: 12px;
  }
}

/* ✅ Mobile (max 767px) */
@media (max-width: 767px) {
  .reviews-slider-track {
    animation: scrollReviews 15s linear infinite; /* faster scroll for narrow screens */
    gap: 10px;
  }

  .review-card {
    flex: 0 0 200px; /* smaller cards */
    padding: 14px;
  }

  .review-avatar {
    width: 32px;
    height: 32px;
  }

  .review-name {
    font-size: 12px;
  }

  .review-date {
    font-size: 11px;
  }

  .review-text {
    font-size: 11px;
    line-height: 1.4;
  }
}


    .footer-section {
      background: #1c1c1c;
      color: #fff;
      padding: 40px 20px 20px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      max-width: 1100px;
      margin: auto;
    }

    /* Footer Logo */
    .footer-logo img {
      max-width: 180px;
      margin-bottom: 20px;
    }

    /* Footer Columns */
    .footer-col h4 {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #fff;
    }

    .footer-col p, 
    .footer-col a {
      font-size: 14px;
      color: #ccc;
      line-height: 1.8;
      text-decoration: none;
      display: block;
    }

    .footer-col a:hover {
      color: #fff;
    }

    /* Social Icons */
    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 10px;
    }

    .footer-social a {
      color: #ccc;
      font-size: 16px;
      transition: color 0.3s ease;
    }

    .footer-social a:hover {
      color: #fff;
    }

    /* Bottom Text */
    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      padding-top: 15px;
      font-size: 13px;
      color: #aaa;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
      }
      .footer-social {
        justify-content: left;
      }
      .footer-logo{
        text-align: center;
      }
    }
        /* Hero Banner */
    .hero-banner {
      height: 700px;
    width: 1200px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 0 auto;
    }

    .banner-section {
  width: 100%;
  background: url('images/Banner.png') no-repeat center center/cover;
}

    /* Header */
/* Header Base */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header-logo img {
  max-width: 150px;
}

/* Desktop Navigation */
.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  position: relative;
}

.header-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #fff;
  transition: 0.3s;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-btn {
  background: #C9533C;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.header-btn:hover {
  background: #c9543ce0;
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: none;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* Responsive Menu (Tablet & Mobile) */
@media (max-width: 991px) {
  .header-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
    display: none;
    gap: 15px;
  }

  .header-nav a {
    color: #fff;
    font-size: 16px;
  }

  .header-nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}


    /* Hero Content */
    .hero-content {
      max-width: 700px;
      margin-left: 30px;
      margin-bottom: 100px;
    }

    .hero-content h1 {
      font-size: 48px;
      font-weight: bold;
      line-height: 1.2;
      color: #eee;
    }

    .hero-content p {
      font-size: 18px;
      margin: 20px 0;
      color: #eee;
    }

    .hero-content .hero-btn {
      background: #C9533C;
      border: none;
      padding: 12px 30px;
      color: #fff;
      font-size: 16px;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.3s;
    }

    .hero-content .hero-btn:hover {
      background: #c9543ce0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      /* .main-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
      } */

      .hero-content {
        margin-left: 20px;
        margin-bottom: 60px;
      }

      .hero-content h1 {
        font-size: 25px;
      }
    }.destinations-section {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
}

.destinations-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #eee;
  text-align: left;
}

/* Slider Container */
.destinations-slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Slider */
.destinations-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Card */
.destinations-card {
  min-width: 250px;
  margin: 0 10px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.destinations-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.destinations-name {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
}

/* Hover description overlay */
.destinations-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #C9533C;
  color: #fff;
  padding: 10px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease-in-out;
  border-radius: 0 0 12px 12px;
}

/* Show description on hover */
.destinations-card:hover .destinations-desc {
  opacity: 1;
  transform: translateY(0);
}

.destinations-card:hover {
  transform: scale(1.05);
}

/* Dots */
.destinations-dots {
  margin-top: 15px;
}

.destinations-dots span {
  display: inline-block;
  width: 30px;
  height: 4px;
  margin: 0 3px;
  background: #ccc;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.destinations-dots span.active {
  background: #C9533C;
}

.section-top {
  position: relative;
  margin-top: -200px; 
}
@media (max-width: 480px) {
  .destinations-card {
    min-width: 95%;
  }
  .departures-image {
    width: 120px;
}
.destinations-dots span {
    width: 5px;
    height: 5px;
}
.destinations-title {
    font-size: 16px;
}
}
@media (max-width: 480px) {
  .vietnam-tabs {
    flex-direction: column; 
    align-items: stretch;   
    margin-top: 05px;       
    margin-bottom: 05px;
  }

  .vietnam-tabs > * {
    width: 100%;          
    margin-bottom: 8px; 
  }
  .reviews-section h2 {
    font-size: 22px;
}
}
.all-section{
  width: 1200px;
  margin: 0 auto;
}
.vietnam-tab-content li{
  padding-top: 5px;
}
/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .all-section {
    width: 90%;   /* shrink to percentage for flexibility */
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .all-section {
    width: 95%;   /* almost full width */
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .all-section {
    width: 100%;  /* take full width */
    padding: 0 15px; /* add safe padding on sides */
  }
}
/* Tablet (up to 1024px) */
@media (max-width: 1024px) {
  .hero-banner {
    width: 95%;
    height: 500px; /* adjust height for tablets */
  }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .hero-banner {
    width: 100%;
    height: 560px; /* adjust height for mobile */
    padding: 0 15px;
  }

  .departures-card-inner {
    flex-direction: column;
  }

  .departures-image {
    width: 100%;
  }

  .vietnam-right {
    padding: 0;
  }

  .departures-title {
    font-size: 26px;
  }

  .vietnam-tab-content {
    padding: 0;
  }
  .departures-image {
        height: 190px;
    object-fit: cover;
}
.section-top {
    position: relative;
    margin-top: -150px;
}
}

p, li, a, select, input {
  color: #444;
}

/*pop up */
/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.popup-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 450px;
  max-width: 95%;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.popup-option {
  border: 1px solid #ddd;
  padding: 15px;
  margin: 10px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.popup-option:hover {
  background: #f9f9f9;
}

/* Callback Form */
.callback-form {
  display: flex;
  flex-direction: column;
}
.form-row {
  display: flex;
  gap: 10px;
}
.callback-form input, .callback-form textarea , .callback-form select {
  margin: 8px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
}
.submit-btn {
  background: #C9533C;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}
.submit-btn:hover {
  background: #c9543ce0;
}

/* ✅ Mobile Responsive Styles */
@media (max-width: 600px) {
  .popup-box {
    width: 90%;
    padding: 15px;
    border-radius: 6px;
  }

  .popup-option {
    font-size: 14px;
    padding: 12px;
  }

  .callback-form input,
  .callback-form textarea,
  .callback-form select {
    font-size: 14px;
    padding: 8px;
  }

  .form-row {
    flex-direction: column; /* stack inputs vertically */
    gap: 0;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px;
  }

  .close-btn {
    font-size: 18px;
  }
}

.travel-planner-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  position: relative;
  gap: 40px;
}

.travel-text-box {
  flex: 1;
  max-width: 500px;
  margin-left: 100px;
}

.travel-subtitle {
  font-size: 14px;
  color: #C9533C;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.travel-title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 500;
}

.travel-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  width: 400px;
box-shadow: 0 4px 10px rgba(201, 83, 60, 0.3);
}

.travel-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

.travel-steps {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.travel-steps li {
  margin: 15px 0;
  font-size: 16px;
  color: #444;
  display: flex;
  align-items: center;
}

.travel-steps li span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #aaa;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 14px;
  color: #555;
}

.travel-cta-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid #C9533C;
  background: white;
  color: black;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.travel-cta-btn:hover {
  background: #c9543ce0;
  color: white;
}

/* -------------------
   RESPONSIVE STYLES
------------------- */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .travel-planner-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .travel-text-box {
    margin-left: 0;
    text-align: center;
    max-width: 90%;
  }

  .travel-title {
    font-size: 28px;
  }

  .travel-card {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .travel-title {
    font-size: 24px;
  }

  .travel-subtitle {
    font-size: 12px;
  }

  .travel-card {
    padding: 20px;
  }

  .travel-card p {
    font-size: 14px;
  }

  .travel-steps li {
    font-size: 14px;
  }

  .travel-steps li span {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .travel-cta-btn {
    font-size: 14px;
    padding: 10px;
  }
}
